diff --git a/.gitignore b/.gitignore
index 466a2e5..10965d1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
+share/quran-json/TheQuran/
*.db
diff --git a/README.md b/README.md
index cfeb78b..bc19833 100644
--- a/README.md
+++ b/README.md
@@ -1,62 +1,49 @@
## About
-This repository contains the contents of the holy book, The Quran - in its original
-Arabic. Translations in English, Farsi, and Portuguese are also included. The contents
-are available in the JSON, and SQL formats.
+quran-json is a dual purpose project where on the one hand it provides a utility
+for downloading the content of The Quran in multiple languages, and on the other hand
+it provides a copy of the content that can be downloaded. In both scenarios, the content
+is provided in the JSON format.
-**Contents**
+## share/quran-json/TheQuran/
-1. [src/json/](#srcjson-directory)
-2. [src/sql/](#srcsql-directory)
-3. [bin/](#bin-directory)
+* [share/quran-json/TheQuran/ar/](share/quran-json/TheQuran/ar/) contains The Quran in its original Arabic.
+* [share/quran-json/TheQuran/en/](share/quran-json/TheQuran/en/) contains an English translation of The Quran.
+* [share/quran-json/TheQuran/fa/](share/quran-json/TheQuran/fa/) contains a Farsi translation of The Quran.
+* [share/quran-json/TheQuran/pt/](share/quran-json/TheQuran/pt/) contains a Portuguese translation of The Quran.
-## src/json/
+### JSON layout
-* [src/json/ar/](src/json/ar/) contains The Quran in its original Arabic.
-* [src/json/en/](src/json/en/) contains an English translation of The Quran.
-* [src/json/fa/](src/json/fa/) contains a Farsi translation of The Quran.
-* [src/json/pt/](src/json/pt/) contains a Portuguese translation of The Quran.
+The
+[share/quran-json/TheQuran](share/quran-json/TheQuran/)
+directory contains multiple sub-directories, where each sub-directory represents
+a locale (eg `en` for English, `ar` for Arabic, and so on). Within each sub-directory,
+there is a JSON file for each surah (also known as a chapter).
-#### JSON schema
+The structure of each JSON file can be described as an array where the first element is
+an object that contains information about a surah, and the rest of the array contains
+the content of the surah. The content is composed of two-element arrays - where the first
+element is the ayah number (also known as a verse number), and the second element is the
+content of the ayah.
-Each JSON file represents a surah (also known as a chapter). The format of the JSON
-files can be described as an array where the first element is an object that contains
-information about a surah, and the rest of the array is made up of two-element arrays.
-The first element is the ayah number (also known as a verse number), and the second
-element is the contents of the ayah. See Surah [Al-Fatihah](src/json/en/1.json) as
-an example.
+See [Surah Al-Fatihah (English)](share/quran-json/TheQuran/en/1.json) for an example.
-## src/sql/
+## bin/quran-json
-* [src/sql/schema.sql](src/sql/schema.sql) defines the schema of the database.
-* [src/sql/seed.sql](src/sql/seed.sql) can be used to populate a SQL database.
-* [src/sql/queries/](src/sql/queries) contains example SQL queries.
+The [bin/quran-json](bin/quran-json) executable is a utility for downloading
+the content of The Quran in multiple languages.
-## bin/
+### Usage
-The [bin/](bin/) directory contains scripts that generate the contents of the
-[src/](src/) directory:
-
-* JSON scripts
- * [bin/json/pull-arabic](bin/json/pull-arabic)
- This script populates [src/json/ar/](src/json/ar/).
- * [bin/json/pull-english](bin/json/pull-english)
- This script populates [src/json/en/](src/json/en/).
- * [bin/json/pull-farsi](bin/json/pull-farsi)
- This script populates [src/json/fa/](src/json/fa/).
- * [bin/json/pull-portuguese](bin/json/pull-portuguese)
- This script populates [src/json/pt/](src/json/pt/).
-
-* SQL scripts
- * [bin/sql/create-sql-seed-file](bin/sql/create-sql-seed-file)
- This script creates [src/sql/seed.sql](src/sql/seed.sql).
+ Usage: quran-json pull [OPTIONS]
+ -l, --locale LOCALE ar, en, pt, or fa (default: en)
## Thanks
First and foremost, Alhamdulillah.
I'd also like to extend thanks to the following websites for providing
-the content that quran-pull downloads:
+the content that quran-json downloads:
* https://searchtruth.com for the original Arabic.
* https://quran.com for the English, Portuguese, and Farsi translations.
diff --git a/bin/quran-pull b/bin/quran-json
old mode 100644
new mode 100755
similarity index 78%
rename from bin/quran-pull
rename to bin/quran-json
index 64fcca3..777f18d
--- a/bin/quran-pull
+++ b/bin/quran-json
@@ -16,8 +16,8 @@ end
# main
def main(argv)
root_dir = File.realpath(File.join(__dir__, ".."))
- lib_dir = File.join(root_dir, "lib", "quran-pull")
- libexec_dir = File.join(root_dir, "libexec", "quran-pull")
+ lib_dir = File.join(root_dir, "lib", "quran-json")
+ libexec_dir = File.join(root_dir, "libexec", "quran-json")
require File.join(lib_dir, "pull")
case ARGV[0]
@@ -29,7 +29,7 @@ def main(argv)
wait spawn(libexec_dir, "searchtruth.com", *argv[1..])
end
else
- warn "Usage: quran-pull pull|help [OPTIONS]"
+ warn "Usage: quran-json pull [OPTIONS]"
end
end
main(ARGV)
diff --git a/lib/quran-json/command.rb b/lib/quran-json/command.rb
new file mode 100644
index 0000000..64f225e
--- /dev/null
+++ b/lib/quran-json/command.rb
@@ -0,0 +1,37 @@
+module Command
+ require "ryo"
+ require "json"
+ require "io/line"
+
+ def root_dir
+ File.realpath File.join(__dir__, "..", "..")
+ end
+
+ def share_dir
+ File.join(root_dir, "share", "quran-json")
+ end
+
+ def data_dir
+ File.join(share_dir, "data")
+ end
+
+ def quran_dir
+ File.join(share_dir, "TheQuran")
+ end
+
+ def line
+ @line ||= IO::Line.new($stdout)
+ end
+
+ def count
+ @count ||= Ryo.from(
+ JSON.parse File.binread(File.join(data_dir, "count.json"))
+ )
+ end
+
+ def surah_info
+ @surah_info ||= Ryo.from(
+ JSON.parse File.binread(File.join(data_dir, "surahinfo.json"))
+ )
+ end
+end
diff --git a/lib/quran-json/pull.rb b/lib/quran-json/pull.rb
new file mode 100644
index 0000000..62584cf
--- /dev/null
+++ b/lib/quran-json/pull.rb
@@ -0,0 +1,89 @@
+class Pull
+ require "ryo"
+ require "json"
+ require "net/http"
+ require "fileutils"
+ require "optparse"
+ require_relative "command"
+ include Command
+ include FileUtils
+
+ attr_reader :options,
+ :source,
+ :http
+
+ def self.cli(argv)
+ op = nil
+ options = Ryo({locale: "en"})
+ OptionParser.new(nil, 26, " " * 2) do |o|
+ o.banner = "Usage: quran-json pull [OPTIONS]"
+ op = o
+ o.on("-l", "--locale LOCALE", "ar, en, pt, or fa (default: en)")
+ end.parse(argv, into: options)
+ options
+ rescue
+ puts op.help
+ exit
+ end
+
+ def initialize(options)
+ @options = options
+ @source = sources[options.locale]
+ @http = Net::HTTP.new(source.http.hostname, 443).tap { _1.use_ssl = true }
+ end
+
+ def pull_surah(surah_no, &b)
+ pull req_path(vars(binding)), &b
+ end
+
+ def pull_ayah(surah_no, ayah_no, &b)
+ pull req_path(vars(binding)), &b
+ end
+
+ def write(surah_no, rows)
+ dir = File.join(quran_dir, options.locale)
+ mkdir_p(dir)
+ rows.unshift(Ryo.table_of(surah_info[surah_no - 1]))
+ File.binwrite File.join(dir, "#{surah_no}.json"), JSON.pretty_generate(rows)
+ end
+
+ def keepalive
+ http.start
+ yield
+ ensure
+ http.finish
+ end
+
+ def exist?(surah_no)
+ File.exist? File.join(quran_dir, options.locale, "#{surah_no}.json")
+ end
+
+ private
+
+ def req_path(vars)
+ format source.http.path, source.http.vars.map { [_1.to_sym, vars[_1.to_sym]] }.to_h
+ end
+
+ def pull(path)
+ res = http.get(path)
+ case res
+ when Net::HTTPOK
+ yield(res)
+ else
+ ##
+ # TODO: Handle error
+ end
+ end
+
+ def vars(binding)
+ binding.local_variables.map do
+ [_1.to_sym, binding.local_variable_get(_1)]
+ end.to_h
+ end
+
+ def sources
+ @sources ||= Ryo.from(
+ JSON.parse File.binread(File.join(data_dir, "sources.json"))
+ )
+ end
+end
diff --git a/libexec/quran-json/quran.com b/libexec/quran-json/quran.com
new file mode 100755
index 0000000..f5a02ca
--- /dev/null
+++ b/libexec/quran-json/quran.com
@@ -0,0 +1,32 @@
+#!/usr/bin/env ruby
+lib_dir = File.realpath File.join(__dir__, "..", "..", "lib", "quran-json")
+require File.join(lib_dir, "pull")
+require "optparse"
+require "nokogiri"
+
+def grep(res)
+ html = Nokogiri::HTML(res.body)
+ el = html.css("div[class^='TranslationText']").last
+ el.text.gsub(/[0-9]/, "")
+end
+
+##
+# main
+def main(argv)
+ cmd = Pull.new(Pull.cli(argv))
+ cmd.keepalive do
+ 1.upto(114) do |surah_no|
+ next if cmd.exist?(surah_no)
+ rows = []
+ 1.upto(cmd.count[surah_no]) do |ayah_no|
+ cmd.pull_ayah(surah_no, ayah_no) do |res|
+ rows.concat([ayah_no, grep(res)])
+ end
+ cmd.line.rewind.print "Surah #{surah_no} [#{ayah_no}/#{cmd.count[surah_no]}]"
+ end
+ cmd.write(surah_no, rows)
+ cmd.line.end
+ end
+ end
+end
+main(ARGV)
diff --git a/libexec/quran-json/searchtruth.com b/libexec/quran-json/searchtruth.com
new file mode 100755
index 0000000..aa5d659
--- /dev/null
+++ b/libexec/quran-json/searchtruth.com
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+lib_dir = File.realpath File.join(__dir__, "..", "..", "lib", "quran-json")
+require File.join(lib_dir, "pull")
+require "optparse"
+require "nokogiri"
+
+def grep(res)
+ html = Nokogiri::HTML(res.body)
+ html.css("table[dir='rtl'] tr td div:last-child").map { _1.text.strip }
+end
+
+##
+# main
+def main(argv)
+ cmd = Pull.new(Pull.cli(argv))
+ cmd.keepalive do
+ 1.upto(114) do |surah_no|
+ next is cmd.exist?(surah_no)
+ rows = []
+ cmd.pull_surah(surah_no) do |res|
+ rows.concat(grep(res).map.with_index(1) { [_2, _1] })
+ end
+ cmd.line.rewind.print "Surah #{surah_no} [#{surah_no}/114]"
+ cmd.write(surah_no, rows)
+ end
+ cmd.line.end
+ end
+end
+main(ARGV)
diff --git a/share/quran-pull/TheQuran/ar/1.json b/share/quran-json/TheQuran/ar/1.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/1.json
rename to share/quran-json/TheQuran/ar/1.json
diff --git a/share/quran-pull/TheQuran/ar/10.json b/share/quran-json/TheQuran/ar/10.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/10.json
rename to share/quran-json/TheQuran/ar/10.json
diff --git a/share/quran-pull/TheQuran/ar/100.json b/share/quran-json/TheQuran/ar/100.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/100.json
rename to share/quran-json/TheQuran/ar/100.json
diff --git a/share/quran-pull/TheQuran/ar/101.json b/share/quran-json/TheQuran/ar/101.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/101.json
rename to share/quran-json/TheQuran/ar/101.json
diff --git a/share/quran-pull/TheQuran/ar/102.json b/share/quran-json/TheQuran/ar/102.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/102.json
rename to share/quran-json/TheQuran/ar/102.json
diff --git a/share/quran-pull/TheQuran/ar/103.json b/share/quran-json/TheQuran/ar/103.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/103.json
rename to share/quran-json/TheQuran/ar/103.json
diff --git a/share/quran-pull/TheQuran/ar/104.json b/share/quran-json/TheQuran/ar/104.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/104.json
rename to share/quran-json/TheQuran/ar/104.json
diff --git a/share/quran-pull/TheQuran/ar/105.json b/share/quran-json/TheQuran/ar/105.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/105.json
rename to share/quran-json/TheQuran/ar/105.json
diff --git a/share/quran-pull/TheQuran/ar/106.json b/share/quran-json/TheQuran/ar/106.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/106.json
rename to share/quran-json/TheQuran/ar/106.json
diff --git a/share/quran-pull/TheQuran/ar/107.json b/share/quran-json/TheQuran/ar/107.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/107.json
rename to share/quran-json/TheQuran/ar/107.json
diff --git a/share/quran-pull/TheQuran/ar/108.json b/share/quran-json/TheQuran/ar/108.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/108.json
rename to share/quran-json/TheQuran/ar/108.json
diff --git a/share/quran-pull/TheQuran/ar/109.json b/share/quran-json/TheQuran/ar/109.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/109.json
rename to share/quran-json/TheQuran/ar/109.json
diff --git a/share/quran-pull/TheQuran/ar/11.json b/share/quran-json/TheQuran/ar/11.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/11.json
rename to share/quran-json/TheQuran/ar/11.json
diff --git a/share/quran-pull/TheQuran/ar/110.json b/share/quran-json/TheQuran/ar/110.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/110.json
rename to share/quran-json/TheQuran/ar/110.json
diff --git a/share/quran-pull/TheQuran/ar/111.json b/share/quran-json/TheQuran/ar/111.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/111.json
rename to share/quran-json/TheQuran/ar/111.json
diff --git a/share/quran-pull/TheQuran/ar/112.json b/share/quran-json/TheQuran/ar/112.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/112.json
rename to share/quran-json/TheQuran/ar/112.json
diff --git a/share/quran-pull/TheQuran/ar/113.json b/share/quran-json/TheQuran/ar/113.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/113.json
rename to share/quran-json/TheQuran/ar/113.json
diff --git a/share/quran-pull/TheQuran/ar/114.json b/share/quran-json/TheQuran/ar/114.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/114.json
rename to share/quran-json/TheQuran/ar/114.json
diff --git a/share/quran-pull/TheQuran/ar/12.json b/share/quran-json/TheQuran/ar/12.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/12.json
rename to share/quran-json/TheQuran/ar/12.json
diff --git a/share/quran-pull/TheQuran/ar/13.json b/share/quran-json/TheQuran/ar/13.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/13.json
rename to share/quran-json/TheQuran/ar/13.json
diff --git a/share/quran-pull/TheQuran/ar/14.json b/share/quran-json/TheQuran/ar/14.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/14.json
rename to share/quran-json/TheQuran/ar/14.json
diff --git a/share/quran-pull/TheQuran/ar/15.json b/share/quran-json/TheQuran/ar/15.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/15.json
rename to share/quran-json/TheQuran/ar/15.json
diff --git a/share/quran-pull/TheQuran/ar/16.json b/share/quran-json/TheQuran/ar/16.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/16.json
rename to share/quran-json/TheQuran/ar/16.json
diff --git a/share/quran-pull/TheQuran/ar/17.json b/share/quran-json/TheQuran/ar/17.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/17.json
rename to share/quran-json/TheQuran/ar/17.json
diff --git a/share/quran-pull/TheQuran/ar/18.json b/share/quran-json/TheQuran/ar/18.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/18.json
rename to share/quran-json/TheQuran/ar/18.json
diff --git a/share/quran-pull/TheQuran/ar/19.json b/share/quran-json/TheQuran/ar/19.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/19.json
rename to share/quran-json/TheQuran/ar/19.json
diff --git a/share/quran-pull/TheQuran/ar/2.json b/share/quran-json/TheQuran/ar/2.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/2.json
rename to share/quran-json/TheQuran/ar/2.json
diff --git a/share/quran-pull/TheQuran/ar/20.json b/share/quran-json/TheQuran/ar/20.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/20.json
rename to share/quran-json/TheQuran/ar/20.json
diff --git a/share/quran-pull/TheQuran/ar/21.json b/share/quran-json/TheQuran/ar/21.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/21.json
rename to share/quran-json/TheQuran/ar/21.json
diff --git a/share/quran-pull/TheQuran/ar/22.json b/share/quran-json/TheQuran/ar/22.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/22.json
rename to share/quran-json/TheQuran/ar/22.json
diff --git a/share/quran-pull/TheQuran/ar/23.json b/share/quran-json/TheQuran/ar/23.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/23.json
rename to share/quran-json/TheQuran/ar/23.json
diff --git a/share/quran-pull/TheQuran/ar/24.json b/share/quran-json/TheQuran/ar/24.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/24.json
rename to share/quran-json/TheQuran/ar/24.json
diff --git a/share/quran-pull/TheQuran/ar/25.json b/share/quran-json/TheQuran/ar/25.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/25.json
rename to share/quran-json/TheQuran/ar/25.json
diff --git a/share/quran-pull/TheQuran/ar/26.json b/share/quran-json/TheQuran/ar/26.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/26.json
rename to share/quran-json/TheQuran/ar/26.json
diff --git a/share/quran-pull/TheQuran/ar/27.json b/share/quran-json/TheQuran/ar/27.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/27.json
rename to share/quran-json/TheQuran/ar/27.json
diff --git a/share/quran-pull/TheQuran/ar/28.json b/share/quran-json/TheQuran/ar/28.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/28.json
rename to share/quran-json/TheQuran/ar/28.json
diff --git a/share/quran-pull/TheQuran/ar/29.json b/share/quran-json/TheQuran/ar/29.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/29.json
rename to share/quran-json/TheQuran/ar/29.json
diff --git a/share/quran-pull/TheQuran/ar/3.json b/share/quran-json/TheQuran/ar/3.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/3.json
rename to share/quran-json/TheQuran/ar/3.json
diff --git a/share/quran-pull/TheQuran/ar/30.json b/share/quran-json/TheQuran/ar/30.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/30.json
rename to share/quran-json/TheQuran/ar/30.json
diff --git a/share/quran-pull/TheQuran/ar/31.json b/share/quran-json/TheQuran/ar/31.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/31.json
rename to share/quran-json/TheQuran/ar/31.json
diff --git a/share/quran-pull/TheQuran/ar/32.json b/share/quran-json/TheQuran/ar/32.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/32.json
rename to share/quran-json/TheQuran/ar/32.json
diff --git a/share/quran-pull/TheQuran/ar/33.json b/share/quran-json/TheQuran/ar/33.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/33.json
rename to share/quran-json/TheQuran/ar/33.json
diff --git a/share/quran-pull/TheQuran/ar/34.json b/share/quran-json/TheQuran/ar/34.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/34.json
rename to share/quran-json/TheQuran/ar/34.json
diff --git a/share/quran-pull/TheQuran/ar/35.json b/share/quran-json/TheQuran/ar/35.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/35.json
rename to share/quran-json/TheQuran/ar/35.json
diff --git a/share/quran-pull/TheQuran/ar/36.json b/share/quran-json/TheQuran/ar/36.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/36.json
rename to share/quran-json/TheQuran/ar/36.json
diff --git a/share/quran-pull/TheQuran/ar/37.json b/share/quran-json/TheQuran/ar/37.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/37.json
rename to share/quran-json/TheQuran/ar/37.json
diff --git a/share/quran-pull/TheQuran/ar/38.json b/share/quran-json/TheQuran/ar/38.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/38.json
rename to share/quran-json/TheQuran/ar/38.json
diff --git a/share/quran-pull/TheQuran/ar/39.json b/share/quran-json/TheQuran/ar/39.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/39.json
rename to share/quran-json/TheQuran/ar/39.json
diff --git a/share/quran-pull/TheQuran/ar/4.json b/share/quran-json/TheQuran/ar/4.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/4.json
rename to share/quran-json/TheQuran/ar/4.json
diff --git a/share/quran-pull/TheQuran/ar/40.json b/share/quran-json/TheQuran/ar/40.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/40.json
rename to share/quran-json/TheQuran/ar/40.json
diff --git a/share/quran-pull/TheQuran/ar/41.json b/share/quran-json/TheQuran/ar/41.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/41.json
rename to share/quran-json/TheQuran/ar/41.json
diff --git a/share/quran-pull/TheQuran/ar/42.json b/share/quran-json/TheQuran/ar/42.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/42.json
rename to share/quran-json/TheQuran/ar/42.json
diff --git a/share/quran-pull/TheQuran/ar/43.json b/share/quran-json/TheQuran/ar/43.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/43.json
rename to share/quran-json/TheQuran/ar/43.json
diff --git a/share/quran-pull/TheQuran/ar/44.json b/share/quran-json/TheQuran/ar/44.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/44.json
rename to share/quran-json/TheQuran/ar/44.json
diff --git a/share/quran-pull/TheQuran/ar/45.json b/share/quran-json/TheQuran/ar/45.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/45.json
rename to share/quran-json/TheQuran/ar/45.json
diff --git a/share/quran-pull/TheQuran/ar/46.json b/share/quran-json/TheQuran/ar/46.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/46.json
rename to share/quran-json/TheQuran/ar/46.json
diff --git a/share/quran-pull/TheQuran/ar/47.json b/share/quran-json/TheQuran/ar/47.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/47.json
rename to share/quran-json/TheQuran/ar/47.json
diff --git a/share/quran-pull/TheQuran/ar/48.json b/share/quran-json/TheQuran/ar/48.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/48.json
rename to share/quran-json/TheQuran/ar/48.json
diff --git a/share/quran-pull/TheQuran/ar/49.json b/share/quran-json/TheQuran/ar/49.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/49.json
rename to share/quran-json/TheQuran/ar/49.json
diff --git a/share/quran-pull/TheQuran/ar/5.json b/share/quran-json/TheQuran/ar/5.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/5.json
rename to share/quran-json/TheQuran/ar/5.json
diff --git a/share/quran-pull/TheQuran/ar/50.json b/share/quran-json/TheQuran/ar/50.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/50.json
rename to share/quran-json/TheQuran/ar/50.json
diff --git a/share/quran-pull/TheQuran/ar/51.json b/share/quran-json/TheQuran/ar/51.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/51.json
rename to share/quran-json/TheQuran/ar/51.json
diff --git a/share/quran-pull/TheQuran/ar/52.json b/share/quran-json/TheQuran/ar/52.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/52.json
rename to share/quran-json/TheQuran/ar/52.json
diff --git a/share/quran-pull/TheQuran/ar/53.json b/share/quran-json/TheQuran/ar/53.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/53.json
rename to share/quran-json/TheQuran/ar/53.json
diff --git a/share/quran-pull/TheQuran/ar/54.json b/share/quran-json/TheQuran/ar/54.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/54.json
rename to share/quran-json/TheQuran/ar/54.json
diff --git a/share/quran-pull/TheQuran/ar/55.json b/share/quran-json/TheQuran/ar/55.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/55.json
rename to share/quran-json/TheQuran/ar/55.json
diff --git a/share/quran-pull/TheQuran/ar/56.json b/share/quran-json/TheQuran/ar/56.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/56.json
rename to share/quran-json/TheQuran/ar/56.json
diff --git a/share/quran-pull/TheQuran/ar/57.json b/share/quran-json/TheQuran/ar/57.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/57.json
rename to share/quran-json/TheQuran/ar/57.json
diff --git a/share/quran-pull/TheQuran/ar/58.json b/share/quran-json/TheQuran/ar/58.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/58.json
rename to share/quran-json/TheQuran/ar/58.json
diff --git a/share/quran-pull/TheQuran/ar/59.json b/share/quran-json/TheQuran/ar/59.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/59.json
rename to share/quran-json/TheQuran/ar/59.json
diff --git a/share/quran-pull/TheQuran/ar/6.json b/share/quran-json/TheQuran/ar/6.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/6.json
rename to share/quran-json/TheQuran/ar/6.json
diff --git a/share/quran-pull/TheQuran/ar/60.json b/share/quran-json/TheQuran/ar/60.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/60.json
rename to share/quran-json/TheQuran/ar/60.json
diff --git a/share/quran-pull/TheQuran/ar/61.json b/share/quran-json/TheQuran/ar/61.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/61.json
rename to share/quran-json/TheQuran/ar/61.json
diff --git a/share/quran-pull/TheQuran/ar/62.json b/share/quran-json/TheQuran/ar/62.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/62.json
rename to share/quran-json/TheQuran/ar/62.json
diff --git a/share/quran-pull/TheQuran/ar/63.json b/share/quran-json/TheQuran/ar/63.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/63.json
rename to share/quran-json/TheQuran/ar/63.json
diff --git a/share/quran-pull/TheQuran/ar/64.json b/share/quran-json/TheQuran/ar/64.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/64.json
rename to share/quran-json/TheQuran/ar/64.json
diff --git a/share/quran-pull/TheQuran/ar/65.json b/share/quran-json/TheQuran/ar/65.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/65.json
rename to share/quran-json/TheQuran/ar/65.json
diff --git a/share/quran-pull/TheQuran/ar/66.json b/share/quran-json/TheQuran/ar/66.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/66.json
rename to share/quran-json/TheQuran/ar/66.json
diff --git a/share/quran-pull/TheQuran/ar/67.json b/share/quran-json/TheQuran/ar/67.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/67.json
rename to share/quran-json/TheQuran/ar/67.json
diff --git a/share/quran-pull/TheQuran/ar/68.json b/share/quran-json/TheQuran/ar/68.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/68.json
rename to share/quran-json/TheQuran/ar/68.json
diff --git a/share/quran-pull/TheQuran/ar/69.json b/share/quran-json/TheQuran/ar/69.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/69.json
rename to share/quran-json/TheQuran/ar/69.json
diff --git a/share/quran-pull/TheQuran/ar/7.json b/share/quran-json/TheQuran/ar/7.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/7.json
rename to share/quran-json/TheQuran/ar/7.json
diff --git a/share/quran-pull/TheQuran/ar/70.json b/share/quran-json/TheQuran/ar/70.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/70.json
rename to share/quran-json/TheQuran/ar/70.json
diff --git a/share/quran-pull/TheQuran/ar/71.json b/share/quran-json/TheQuran/ar/71.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/71.json
rename to share/quran-json/TheQuran/ar/71.json
diff --git a/share/quran-pull/TheQuran/ar/72.json b/share/quran-json/TheQuran/ar/72.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/72.json
rename to share/quran-json/TheQuran/ar/72.json
diff --git a/share/quran-pull/TheQuran/ar/73.json b/share/quran-json/TheQuran/ar/73.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/73.json
rename to share/quran-json/TheQuran/ar/73.json
diff --git a/share/quran-pull/TheQuran/ar/74.json b/share/quran-json/TheQuran/ar/74.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/74.json
rename to share/quran-json/TheQuran/ar/74.json
diff --git a/share/quran-pull/TheQuran/ar/75.json b/share/quran-json/TheQuran/ar/75.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/75.json
rename to share/quran-json/TheQuran/ar/75.json
diff --git a/share/quran-pull/TheQuran/ar/76.json b/share/quran-json/TheQuran/ar/76.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/76.json
rename to share/quran-json/TheQuran/ar/76.json
diff --git a/share/quran-pull/TheQuran/ar/77.json b/share/quran-json/TheQuran/ar/77.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/77.json
rename to share/quran-json/TheQuran/ar/77.json
diff --git a/share/quran-pull/TheQuran/ar/78.json b/share/quran-json/TheQuran/ar/78.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/78.json
rename to share/quran-json/TheQuran/ar/78.json
diff --git a/share/quran-pull/TheQuran/ar/79.json b/share/quran-json/TheQuran/ar/79.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/79.json
rename to share/quran-json/TheQuran/ar/79.json
diff --git a/share/quran-pull/TheQuran/ar/8.json b/share/quran-json/TheQuran/ar/8.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/8.json
rename to share/quran-json/TheQuran/ar/8.json
diff --git a/share/quran-pull/TheQuran/ar/80.json b/share/quran-json/TheQuran/ar/80.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/80.json
rename to share/quran-json/TheQuran/ar/80.json
diff --git a/share/quran-pull/TheQuran/ar/81.json b/share/quran-json/TheQuran/ar/81.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/81.json
rename to share/quran-json/TheQuran/ar/81.json
diff --git a/share/quran-pull/TheQuran/ar/82.json b/share/quran-json/TheQuran/ar/82.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/82.json
rename to share/quran-json/TheQuran/ar/82.json
diff --git a/share/quran-pull/TheQuran/ar/83.json b/share/quran-json/TheQuran/ar/83.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/83.json
rename to share/quran-json/TheQuran/ar/83.json
diff --git a/share/quran-pull/TheQuran/ar/84.json b/share/quran-json/TheQuran/ar/84.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/84.json
rename to share/quran-json/TheQuran/ar/84.json
diff --git a/share/quran-pull/TheQuran/ar/85.json b/share/quran-json/TheQuran/ar/85.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/85.json
rename to share/quran-json/TheQuran/ar/85.json
diff --git a/share/quran-pull/TheQuran/ar/86.json b/share/quran-json/TheQuran/ar/86.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/86.json
rename to share/quran-json/TheQuran/ar/86.json
diff --git a/share/quran-pull/TheQuran/ar/87.json b/share/quran-json/TheQuran/ar/87.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/87.json
rename to share/quran-json/TheQuran/ar/87.json
diff --git a/share/quran-pull/TheQuran/ar/88.json b/share/quran-json/TheQuran/ar/88.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/88.json
rename to share/quran-json/TheQuran/ar/88.json
diff --git a/share/quran-pull/TheQuran/ar/89.json b/share/quran-json/TheQuran/ar/89.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/89.json
rename to share/quran-json/TheQuran/ar/89.json
diff --git a/share/quran-pull/TheQuran/ar/9.json b/share/quran-json/TheQuran/ar/9.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/9.json
rename to share/quran-json/TheQuran/ar/9.json
diff --git a/share/quran-pull/TheQuran/ar/90.json b/share/quran-json/TheQuran/ar/90.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/90.json
rename to share/quran-json/TheQuran/ar/90.json
diff --git a/share/quran-pull/TheQuran/ar/91.json b/share/quran-json/TheQuran/ar/91.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/91.json
rename to share/quran-json/TheQuran/ar/91.json
diff --git a/share/quran-pull/TheQuran/ar/92.json b/share/quran-json/TheQuran/ar/92.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/92.json
rename to share/quran-json/TheQuran/ar/92.json
diff --git a/share/quran-pull/TheQuran/ar/93.json b/share/quran-json/TheQuran/ar/93.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/93.json
rename to share/quran-json/TheQuran/ar/93.json
diff --git a/share/quran-pull/TheQuran/ar/94.json b/share/quran-json/TheQuran/ar/94.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/94.json
rename to share/quran-json/TheQuran/ar/94.json
diff --git a/share/quran-pull/TheQuran/ar/95.json b/share/quran-json/TheQuran/ar/95.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/95.json
rename to share/quran-json/TheQuran/ar/95.json
diff --git a/share/quran-pull/TheQuran/ar/96.json b/share/quran-json/TheQuran/ar/96.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/96.json
rename to share/quran-json/TheQuran/ar/96.json
diff --git a/share/quran-pull/TheQuran/ar/97.json b/share/quran-json/TheQuran/ar/97.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/97.json
rename to share/quran-json/TheQuran/ar/97.json
diff --git a/share/quran-pull/TheQuran/ar/98.json b/share/quran-json/TheQuran/ar/98.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/98.json
rename to share/quran-json/TheQuran/ar/98.json
diff --git a/share/quran-pull/TheQuran/ar/99.json b/share/quran-json/TheQuran/ar/99.json
similarity index 100%
rename from share/quran-pull/TheQuran/ar/99.json
rename to share/quran-json/TheQuran/ar/99.json
diff --git a/share/quran-json/TheQuran/en/10.json b/share/quran-json/TheQuran/en/10.json
new file mode 100644
index 0000000..771c007
--- /dev/null
+++ b/share/quran-json/TheQuran/en/10.json
@@ -0,0 +1,234 @@
+[
+ {
+ "id": "10",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Yunus",
+ "translated_name": "Jonah",
+ "verse_count": 109,
+ "slug": "yunus",
+ "codepoints": [
+ 1610,
+ 1608,
+ 1606,
+ 1587
+ ]
+ },
+ 1,
+ "Alif-Lãm-Ra. These are the verses of the Book, rich in wisdom.",
+ 2,
+ "Is it astonishing to people that We have sent revelation to a man from among themselves, ˹instructing him,˺ “Warn humanity and give good news to the believers that they will have an honourable status with their Lord.”? Yet the disbelievers said, “Indeed, this ˹man˺ is clearly a magician!”",
+ 3,
+ "Surely your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne, conducting every affair. None can intercede except by His permission. That is Allah—your Lord, so worship Him ˹alone˺. Will you not then be mindful?",
+ 4,
+ "To Him is your return all together. Allah’s promise is ˹always˺ true. Indeed, He originates the creation then resurrects it so that He may justly reward those who believe and do good. But those who disbelieve will have a boiling drink and a painful punishment for their disbelief.",
+ 5,
+ "He is the One Who made the sun a radiant source and the moon a reflected light, with precisely ordained phases, so that you may know the number of years and calculation ˹of time˺. Allah did not create all this except for a purpose. He makes the signs clear for people of knowledge.",
+ 6,
+ "Surely in the alternation of the day and the night, and in all that Allah has created in the heavens and the earth, there are truly signs for those mindful ˹of Him˺.",
+ 7,
+ "Indeed, those who do not expect to meet Us, being pleased and content with this worldly life, and who are heedless of Our signs,",
+ 8,
+ "they will have the Fire as a home because of what they have committed.",
+ 9,
+ "Surely those who believe and do good, their Lord will guide them ˹to Paradise˺ through their faith, rivers will flow under their feet in the Gardens of Bliss,",
+ 10,
+ "in which their prayer will be, “Glory be to You, O Allah!” and their greeting will be, “Peace!” and their closing prayer will be, “All praise is for Allah—Lord of all worlds!”",
+ 11,
+ "If Allah were to hasten evil for people as they wish to hasten good, they would have certainly been doomed. But We leave those who do not expect to meet Us to wander blindly in their defiance.",
+ 12,
+ "Whenever someone is touched by hardship, they cry out to Us, whether lying on their side, sitting, or standing. But when We relieve their hardship, they return to their old ways as if they had never cried to Us to remove any hardship! This is how the misdeeds of the transgressors have been made appealing to them.",
+ 13,
+ "We surely destroyed ˹other˺ peoples before you when they did wrong, and their messengers came to them with clear proofs but they would not believe! This is how We reward the wicked people.",
+ 14,
+ "Then We made you their successors in the land to see how you would act.",
+ 15,
+ "When Our clear revelations are recited to them, those who do not expect to meet Us say ˹to the Prophet˺, “Bring us a different Quran or make some changes in it.” Say ˹to them˺, “It is not for me to change it on my own. I only follow what is revealed to me. I fear, if I were to disobey my Lord, the punishment of a tremendous Day.”",
+ 16,
+ "Say, “Had Allah willed, I would not have recited it to you, nor would He have made it known to you. I had lived my whole life among you before this ˹revelation˺. Do you not understand?”",
+ 17,
+ "Who does more wrong than those who fabricate lies against Allah or deny His revelations? Indeed, the wicked will never succeed.",
+ 18,
+ "They worship besides Allah others who can neither harm nor benefit them, and say, “These are our intercessors with Allah.” Ask ˹them, O Prophet˺, “Are you informing Allah of something He does not know in the heavens or the earth? Glorified and Exalted is He above what they associate ˹with Him˺!”",
+ 19,
+ "Humanity was once nothing but a single community ˹of believers˺, but then they differed. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺.",
+ 20,
+ "They ask, “Why has no ˹other˺ sign been sent down to him from his Lord?” Say, ˹O Prophet,˺ “˹The knowledge of˺ the unseen is with Allah alone. So wait! I too am waiting with you.”",
+ 21,
+ "When We give people a taste of mercy after being afflicted with a hardship, they swiftly devise plots against Our revelations! Say, ˹O Prophet,˺ “Allah is swifter in devising ˹punishment˺. Surely Our messenger-angels record whatever you devise.”",
+ 22,
+ "He is the One Who enables you to travel through land and sea. And it so happens that you are on ships, sailing with a favourable wind, to the passengers’ delight. Suddenly, the ships are overcome by a gale wind and those on board are overwhelmed by waves from every side, and they assume they are doomed. They cry out to Allah ˹alone˺ in sincere devotion, “If You save us from this, we will certainly be grateful.”",
+ 23,
+ "But as soon as He rescues them, they transgress in the land unjustly. O humanity! Your transgression is only against your own souls. ˹There is only˺ brief enjoyment in this worldly life, then to Us is your return, and then We will inform you of what you used to do.",
+ 24,
+ "The life of this world is just like rain We send down from the sky, producing a mixture of plants which humans and animals consume. Then just as the earth looks its best, perfectly beautified, and its people think they have full control over it, there comes to it Our command by night or by day, so We mow it down as if it never flourished yesterday! This is how We make the signs clear for people who reflect.",
+ 25,
+ "And Allah invites ˹all˺ to the Home of Peace and guides whoever He wills to the Straight Path.",
+ 26,
+ "Those who do good will have the finest reward and ˹even˺ more. Neither gloom nor disgrace will cover their faces. It is they who will be the residents of Paradise. They will be there forever.",
+ 27,
+ "As for those who commit evil, the reward of an evil deed is its equivalent. Humiliation will cover them—with no one to protect them from Allah—as if their faces were covered with patches of the night’s deep darkness. It is they who will be the residents of the Fire. They will be there forever.",
+ 28,
+ "˹Consider˺ the Day We will gather them all together then say to those who associated others ˹with Allah in worship˺, “Stay in your places—you and your associate-gods.” We will separate them from each other, and their associate-gods will say, “It was not us that you worshipped!",
+ 29,
+ "Allah is sufficient as a Witness between each of us that we were totally unaware of your worship.”",
+ 30,
+ "Then and there every soul will face ˹the consequences of˺ what it had done. They all will be returned to Allah—their True Master. And whatever ˹gods˺ they fabricated will fail them.",
+ 31,
+ "Ask ˹them, O Prophet˺, “Who provides for you from heaven and earth? Who owns ˹your˺ hearing and sight? Who brings forth the living from the dead and the dead from the living? And who conducts every affair?” They will ˹surely˺ say, “Allah.” Say, “Will you not then fear ˹Him˺?",
+ 32,
+ "That is Allah—your True Lord. So what is beyond the truth except falsehood? How can you then be turned away?”",
+ 33,
+ "And so your Lord’s decree has been proven true against the rebellious—that they will never believe.",
+ 34,
+ "Ask ˹them, O Prophet˺, “Can any of your associate-gods originate creation and then resurrect it?” Say, “˹Only˺ Allah originates creation and then resurrects it. How can you then be deluded ˹from the truth˺?”",
+ 35,
+ "Ask ˹them, O Prophet˺, “Can any of your associate-gods guide to the truth?” Say, “˹Only˺ Allah guides to the truth.” Who then is more worthy to be followed: the One Who guides to the truth or those who cannot find the way unless guided? What is the matter with you? How do you judge?",
+ 36,
+ "Most of them follow nothing but ˹inherited˺ assumptions. ˹And˺ surely assumptions can in no way replace the truth. Allah is indeed All-Knowing of what they do.",
+ 37,
+ "It is not ˹possible˺ for this Quran to have been produced by anyone other than Allah. In fact, it is a confirmation of what came before, and an explanation of the Scripture. It is, without a doubt, from the Lord of all worlds.",
+ 38,
+ "Or do they claim, “He made it up!”? Tell them ˹O Prophet˺, “Produce one sûrah like it then, and seek help from whoever you can—other than Allah—if what you say is true!”",
+ 39,
+ "In fact, they ˹hastily˺ rejected the Book without comprehending it and before the fulfilment of its warnings. Similarly, those before them were in denial. See then what was the end of the wrongdoers!",
+ 40,
+ "Some of them will ˹eventually˺ believe in it; others will not. And your Lord knows best the corruptors.",
+ 41,
+ "If they deny you, then say, “My deeds are mine and your deeds are yours. You are free of what I do and I am free of what you do!”",
+ 42,
+ "Some of them listen to what you say, but can you make the deaf hear even though they do not understand?",
+ 43,
+ "And some of them look at you, but can you guide the blind even though they cannot see?",
+ 44,
+ "Indeed, Allah does not wrong people in the least, but it is people who wrong themselves.",
+ 45,
+ "On the Day He will gather them, it will be as if they had not stayed ˹in the world˺ except for an hour of a day, ˹as though they were only˺ getting to know one another. Lost indeed will be those who denied the meeting with Allah, and were not ˹rightly˺ guided!",
+ 46,
+ "Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, to Us is their return and Allah is a Witness over what they do.",
+ 47,
+ "And for every community there is a messenger. After their messenger has come, judgment is passed on them in all fairness, and they are not wronged.",
+ 48,
+ "They ask ˹the believers˺, “When will this threat come to pass if what you say is true?”",
+ 49,
+ "Say, ˹O Prophet,˺ “I have no power to benefit or protect myself, except by the Will of Allah.” For each community there is an appointed term. When their time arrives, they cannot delay it for a moment, nor could they advance it.",
+ 50,
+ "Tell them ˹O Prophet˺, “Imagine if His torment were to overcome you by night or day—do the wicked realize what they are ˹really˺ asking Him to hasten?",
+ 51,
+ "Will you believe in it only after it has overtaken you? Now? But you always wanted to hasten it!”",
+ 52,
+ "Then the wrongdoers will be told, “Taste the torment of eternity! Are you not rewarded except for what you used to commit?”",
+ 53,
+ "They ask you ˹O Prophet˺, “Is this true?” Say, “Yes, by my Lord! Most certainly it is true! And you will have no escape.”",
+ 54,
+ "If every wrongdoer were to possess everything in the world, they would surely ransom themselves with it. They will hide ˹their˺ remorse when they see the torment. And they will be judged in all fairness, and none will be wronged.",
+ 55,
+ "Surely to Allah belongs whatever is in the heavens and the earth. Surely Allah’s promise is ˹always˺ true, but most of them do not know.",
+ 56,
+ "He ˹is the One Who˺ gives life and causes death, and to Him you will ˹all˺ be returned.",
+ 57,
+ "O humanity! Indeed, there has come to you a warning from your Lord, a cure for what is in the hearts, a guide, and a mercy for the believers.",
+ 58,
+ "Say, ˹O Prophet,˺ “In Allah’s grace and mercy let them rejoice. That is far better than whatever ˹wealth˺ they amass.”",
+ 59,
+ "Ask ˹the pagans, O Prophet˺, “Have you seen that which Allah has sent down for you as a provision, of which you have made some lawful and some unlawful?” Say, “Has Allah given you authorization, or are you fabricating lies against Allah?”",
+ 60,
+ "What do those who fabricate lies against Allah expect on Judgment Day? Surely Allah is ever Bountiful to humanity, but most of them are ungrateful.",
+ 61,
+ "There is no activity you may be engaged in ˹O Prophet˺ or portion of the Quran you may be reciting, nor any deed you ˹all˺ may be doing except that We are a Witness over you while doing it. Not ˹even˺ an atom’s weight is hidden from your Lord on earth or in heaven; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record. ",
+ 62,
+ "There will certainly be no fear for the close servants of Allah, nor will they grieve.",
+ 63,
+ "˹They are˺ those who are faithful and are mindful ˹of Him˺.",
+ 64,
+ "For them is good news in this worldly life and the Hereafter. There is no change in the promise of Allah. That is ˹truly˺ the ultimate triumph.",
+ 65,
+ "Do not let their words grieve you ˹O Prophet˺. Surely all honour and power belongs to Allah. He is the All-Hearing, All-Knowing.",
+ 66,
+ "Certainly to Allah ˹alone˺ belong all those in the heavens and all those on the earth. And what do those who associate others with Allah really follow? They follow nothing but assumptions and do nothing but lie.",
+ 67,
+ "He is the One Who has made the night for you to rest in and the day bright. Surely in this are signs for people who listen.",
+ 68,
+ "They say, “Allah has offspring.” Glory be to Him! He is the Self-Sufficient. To Him belongs whatever is in the heavens and whatever is on the earth. You have no proof of this! Do you say about Allah what you do not know?",
+ 69,
+ "Say, ˹O Prophet,˺ “Indeed, those who fabricate lies against Allah will never succeed.”",
+ 70,
+ "˹It is only˺ a brief enjoyment in this world, then to Us is their return, then We will make them taste the severe punishment for their disbelief.",
+ 71,
+ "Relate to them ˹O Prophet˺ the story of Noah when he said to his people, “O my People! If my presence and my reminders to you of Allah’s signs are unbearable to you, then ˹know that˺ I have put my trust in Allah. So devise a plot along with your associate-gods—and you do not have to be secretive about your plot—then carry it out against me without delay!",
+ 72,
+ "And if you turn away, ˹remember˺ I have never demanded a reward from you ˹for delivering the message˺. My reward is only from Allah. And I have been commanded to be one of those who submit ˹to Allah˺.”",
+ 73,
+ "But they still rejected him, so We saved him and those with him in the Ark and made them successors, and drowned those who rejected Our signs. See then what was the end of those who had been warned!",
+ 74,
+ "Then after him We sent ˹other˺ messengers to their ˹own˺ people and they came to them with clear proofs. But they would not believe in what they had rejected before. This is how We seal the hearts of the transgressors.",
+ 75,
+ "Then after these ˹messengers˺ We sent Moses and Aaron to Pharaoh and his chiefs with Our signs. But they behaved arrogantly and were a wicked people.",
+ 76,
+ "When the truth came to them from Us, they said, “This is certainly pure magic!”",
+ 77,
+ "Moses responded, “Is this what you say about the truth when it has come to you? Is this magic? Magicians will never succeed.”",
+ 78,
+ "They argued, “Have you come to turn us away from the faith of our forefathers so that the two of you may become supreme in the land? We will never believe in you!”",
+ 79,
+ "Pharaoh demanded, “Bring me every skilled magician.”",
+ 80,
+ "When the magicians came, Moses said to them, “Cast whatever you wish to cast!”",
+ 81,
+ "When they did, Moses said, “What you have produced is mere magic, Allah will surely make it useless, for Allah certainly does not set right the work of the corruptors.",
+ 82,
+ "And Allah establishes the truth by His Words—even to the dismay of the wicked.”",
+ 83,
+ "But no one believed in Moses except a few youths of his people, while fearing that Pharaoh and their own chiefs might persecute them. And certainly Pharaoh was a tyrant in the land, and he was truly a transgressor.",
+ 84,
+ "Moses said, “O my people! If you do believe in Allah and submit ˹to His Will˺, then put your trust in Him.”",
+ 85,
+ "They replied, “In Allah we trust. Our Lord! Do not subject us to the persecution of the oppressive people,",
+ 86,
+ "and deliver us by Your mercy from the disbelieving people.”",
+ 87,
+ "We revealed to Moses and his brother, “Appoint houses for your people in Egypt. Turn these houses into places of worship, establish prayer, and give good news to the believers!”",
+ 88,
+ "Moses prayed, “Our Lord! You have granted Pharaoh and his chiefs luxuries and riches in this worldly life, ˹which they abused˺ to lead people astray from Your Way! Our Lord, destroy their riches and harden their hearts so that they will not believe until they see the painful punishment.”",
+ 89,
+ "Allah responded ˹to Moses and Aaron˺, “Your prayer is answered! So be steadfast and do not follow the way of those who do not know.”",
+ 90,
+ "We brought the Children of Israel across the sea. Then Pharaoh and his soldiers pursued them unjustly and oppressively. But as Pharaoh was drowning, he cried out, “I believe that there is no god except that in whom the Children of Israel believe, and I am ˹now˺ one of those who submit.”",
+ 91,
+ "˹He was told,˺ “Now ˹you believe˺? But you always disobeyed and were one of the corruptors.",
+ 92,
+ "Today We will preserve your corpse so that you may become an example for those who come after you. And surely most people are heedless of Our examples!”",
+ 93,
+ "Indeed, We settled the Children of Israel in a blessed land, and granted them good, lawful provisions. They did not differ until knowledge came to them. Surely your Lord will judge between them on the Day of Judgment regarding their differences.",
+ 94,
+ "If you ˹O Prophet˺ are in doubt about ˹these stories˺ that We have revealed to you, then ask those who read the Scripture before you. The truth has certainly come to you from your Lord, so do not be one of those who doubt,",
+ 95,
+ "and do not be one of those who deny Allah’s signs or you will be one of the losers. ",
+ 96,
+ "Indeed, those against whom Allah’s decree ˹of torment˺ is justified will not believe—",
+ 97,
+ "even if every sign were to come to them—until they see the painful punishment.",
+ 98,
+ "If only there had been a society which believed ˹before seeing the torment˺ and, therefore, benefited from its belief, like the people of Jonah. When they believed, We lifted from them the torment of disgrace in this world and allowed them enjoyment for a while. ",
+ 99,
+ "Had your Lord so willed ˹O Prophet˺, all ˹people˺ on earth would have certainly believed, every single one of them! Would you then force people to become believers?",
+ 100,
+ "It is not for any soul to believe except by Allah’s leave, and He will bring His wrath upon those who are unmindful.",
+ 101,
+ "Say, ˹O Prophet,˺ “Consider all that is in the heavens and the earth!” Yet neither signs nor warners are of any benefit to those who refuse to believe.",
+ 102,
+ "Are they waiting for ˹anything˺ except the same torments that befell those before them? Say, “Keep waiting then! I too am waiting with you.”",
+ 103,
+ "Then We saved Our messengers and those who believed. For it is Our duty to save the believers.",
+ 104,
+ "Say, ˹O Prophet,˺ “O humanity! If you are in doubt of my faith, then ˹know that˺ I do not worship those ˹idols˺ you worship instead of Allah. But I worship Allah, Who has the power to cause your death. And I have been commanded, ‘Be one of the believers,’",
+ 105,
+ "and, ‘Be steadfast in faith in all uprightness, and do not be one of the polytheists,’",
+ 106,
+ "and ‘Do not invoke, instead of Allah, what can neither benefit nor harm you—for if you do, then you will certainly be one of the wrongdoers,’",
+ 107,
+ "and ‘If Allah touches you with harm, none can undo it except Him. And if He intends good for you, none can withhold His bounty. He grants it to whoever He wills of His servants. And He is the All-Forgiving, Most Merciful.’”",
+ 108,
+ "Say, ˹O Prophet,˺ “O humanity! The truth has surely come to you from your Lord. So whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. And I am not a keeper over you.”",
+ 109,
+ "And follow what is revealed to you, and be patient until Allah passes His judgment. For He is the Best of Judges."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/100.json b/share/quran-json/TheQuran/en/100.json
new file mode 100644
index 0000000..3116ffd
--- /dev/null
+++ b/share/quran-json/TheQuran/en/100.json
@@ -0,0 +1,42 @@
+[
+ {
+ "id": "100",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-'Adiyat",
+ "translated_name": "The Courser",
+ "verse_count": 11,
+ "slug": "al-adiyat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1593,
+ 1575,
+ 1583,
+ 1610,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "’ By the galloping, panting horses,",
+ 2,
+ "striking sparks of fire ˹with their hoofs˺,",
+ 3,
+ "launching raids at dawn,",
+ 4,
+ "stirring up ˹clouds of˺ dust,",
+ 5,
+ "and penetrating into the heart of enemy lines!",
+ 6,
+ "Surely humankind is ungrateful to their Lord—",
+ 7,
+ "and they certainly attest to this—",
+ 8,
+ "and they are truly extreme in their love of ˹worldly˺ gains.",
+ 9,
+ "Do they not know that when the contents of the graves will be spilled out,",
+ 10,
+ "and the secrets of the hearts will be laid bare—",
+ 11,
+ "surely their Lord is All-Aware of them on that Day."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/101.json b/share/quran-json/TheQuran/en/101.json
new file mode 100644
index 0000000..77625a2
--- /dev/null
+++ b/share/quran-json/TheQuran/en/101.json
@@ -0,0 +1,41 @@
+[
+ {
+ "id": "101",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qari'ah",
+ "translated_name": "The Calamity",
+ "verse_count": 11,
+ "slug": "al-qariah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1575,
+ 1585,
+ 1593,
+ 1577
+ ]
+ },
+ 1,
+ "The Striking Disaster!",
+ 2,
+ "What is the Striking Disaster?",
+ 3,
+ "And what will make you realize what the Striking Disaster is?",
+ 4,
+ "˹It is˺ the Day people will be like scattered moths,",
+ 5,
+ "and the mountains will be like carded wool.",
+ 6,
+ "So as for those whose scale is heavy ˹with good deeds˺,",
+ 7,
+ "they will be in a life of bliss.",
+ 8,
+ "And as for those whose scale is light,",
+ 9,
+ "their home will be the abyss.",
+ 10,
+ "And what will make you realize what that is?",
+ 11,
+ "˹It is˺ a scorching Fire."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/102.json b/share/quran-json/TheQuran/en/102.json
new file mode 100644
index 0000000..8e82440
--- /dev/null
+++ b/share/quran-json/TheQuran/en/102.json
@@ -0,0 +1,35 @@
+[
+ {
+ "id": "102",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "At-Takathur",
+ "translated_name": "The Rivalry in world increase",
+ "verse_count": 8,
+ "slug": "at-takathur",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1603,
+ 1575,
+ 1579,
+ 1585
+ ]
+ },
+ 1,
+ "Competition for more ˹gains˺ diverts you ˹from Allah˺,",
+ 2,
+ "until you end up in ˹your˺ graves.",
+ 3,
+ "But no! You will soon come to know.",
+ 4,
+ "Again, no! You will soon come to know.",
+ 5,
+ "Indeed, if you were to know ˹your fate˺ with certainty, ˹you would have acted differently˺.",
+ 6,
+ "˹But˺ you will surely see the Hellfire.",
+ 7,
+ "Again, you will surely see it with the eye of certainty.",
+ 8,
+ "Then, on that Day, you will definitely be questioned about ˹your worldly˺ pleasures."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/103.json b/share/quran-json/TheQuran/en/103.json
new file mode 100644
index 0000000..2292903
--- /dev/null
+++ b/share/quran-json/TheQuran/en/103.json
@@ -0,0 +1,23 @@
+[
+ {
+ "id": "103",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-'Asr",
+ "translated_name": "The Declining Day",
+ "verse_count": 3,
+ "slug": "al-asr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1593,
+ 1589,
+ 1585
+ ]
+ },
+ 1,
+ "By the ˹passage of˺ time!",
+ 2,
+ "Surely humanity is in ˹grave˺ loss,",
+ 3,
+ "except those who have faith, do good, and urge each other to the truth, and urge each other to perseverance."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/104.json b/share/quran-json/TheQuran/en/104.json
new file mode 100644
index 0000000..c8df6eb
--- /dev/null
+++ b/share/quran-json/TheQuran/en/104.json
@@ -0,0 +1,36 @@
+[
+ {
+ "id": "104",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Humazah",
+ "translated_name": "The Traducer",
+ "verse_count": 9,
+ "slug": "al-humazah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1607,
+ 1605,
+ 1586,
+ 1577
+ ]
+ },
+ 1,
+ "Woe to every backbiter, slanderer,",
+ 2,
+ "who amasses wealth ˹greedily˺ and counts it ˹repeatedly˺,",
+ 3,
+ "thinking that their wealth will make them immortal!",
+ 4,
+ "Not at all! Such a person will certainly be tossed into the Crusher.",
+ 5,
+ "And what will make you realize what the Crusher is?",
+ 6,
+ "˹It is˺ Allah’s kindled Fire,",
+ 7,
+ "which rages over the hearts.",
+ 8,
+ "It will be sealed over them,",
+ 9,
+ "˹tightly secured˺ with long braces. "
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/105.json b/share/quran-json/TheQuran/en/105.json
new file mode 100644
index 0000000..a344841
--- /dev/null
+++ b/share/quran-json/TheQuran/en/105.json
@@ -0,0 +1,27 @@
+[
+ {
+ "id": "105",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Fil",
+ "translated_name": "The Elephant",
+ "verse_count": 5,
+ "slug": "al-fil",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1610,
+ 1604
+ ]
+ },
+ 1,
+ "Have you not seen ˹O Prophet˺ how your Lord dealt with the Army of the Elephant?",
+ 2,
+ "Did He not frustrate their scheme?",
+ 3,
+ "For He sent against them flocks of birds,",
+ 4,
+ "that pelted them with stones of baked clay,",
+ 5,
+ "leaving them like chewed up straw. "
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/106.json b/share/quran-json/TheQuran/en/106.json
new file mode 100644
index 0000000..4fad655
--- /dev/null
+++ b/share/quran-json/TheQuran/en/106.json
@@ -0,0 +1,24 @@
+[
+ {
+ "id": "106",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Quraysh",
+ "translated_name": "Quraysh",
+ "verse_count": 4,
+ "slug": "quraysh",
+ "codepoints": [
+ 1602,
+ 1585,
+ 1610,
+ 1588
+ ]
+ },
+ 1,
+ "˹At least˺ for ˹the favour of˺ making Quraysh habitually secure—",
+ 2,
+ "secure in their trading caravan ˹to Yemen˺ in the winter and ˹Syria˺ in the summer—",
+ 3,
+ "let them worship the Lord of this ˹Sacred˺ House,",
+ 4,
+ "Who has fed them against hunger and made them secure against fear. "
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/107.json b/share/quran-json/TheQuran/en/107.json
new file mode 100644
index 0000000..a800f36
--- /dev/null
+++ b/share/quran-json/TheQuran/en/107.json
@@ -0,0 +1,33 @@
+[
+ {
+ "id": "107",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Ma'un",
+ "translated_name": "The Small kindnesses",
+ "verse_count": 7,
+ "slug": "al-maun",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1575,
+ 1593,
+ 1608,
+ 1606
+ ]
+ },
+ 1,
+ "Have you seen the one who denies the ˹final˺ Judgment?",
+ 2,
+ "That is the one who repulses the orphan,",
+ 3,
+ "and does not encourage the feeding of the poor.",
+ 4,
+ "So woe to those ˹hypocrites˺ who pray",
+ 5,
+ "yet are unmindful of their prayers;",
+ 6,
+ "those who ˹only˺ show off,",
+ 7,
+ "and refuse to give ˹even the simplest˺ aid. "
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/108.json b/share/quran-json/TheQuran/en/108.json
new file mode 100644
index 0000000..44ccd1f
--- /dev/null
+++ b/share/quran-json/TheQuran/en/108.json
@@ -0,0 +1,24 @@
+[
+ {
+ "id": "108",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Kawthar",
+ "translated_name": "The Abundance",
+ "verse_count": 3,
+ "slug": "al-kawthar",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1603,
+ 1608,
+ 1579,
+ 1585
+ ]
+ },
+ 1,
+ "Indeed, We have granted you ˹O Prophet˺ abundant goodness.",
+ 2,
+ "So pray and sacrifice to your Lord ˹alone˺.",
+ 3,
+ "Only the one who hates you is truly cut off ˹from any goodness˺."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/109.json b/share/quran-json/TheQuran/en/109.json
new file mode 100644
index 0000000..a5ff083
--- /dev/null
+++ b/share/quran-json/TheQuran/en/109.json
@@ -0,0 +1,32 @@
+[
+ {
+ "id": "109",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Kafirun",
+ "translated_name": "The Disbelievers",
+ "verse_count": 6,
+ "slug": "al-kafirun",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1603,
+ 1575,
+ 1601,
+ 1585,
+ 1608,
+ 1606
+ ]
+ },
+ 1,
+ "Say, ˹O Prophet,˺ “O you disbelievers!",
+ 2,
+ "I do not worship what you worship,",
+ 3,
+ "nor do you worship what I worship.",
+ 4,
+ "I will never worship what you worship,",
+ 5,
+ "nor will you ever worship what I worship.",
+ 6,
+ "You have your way, and I have my Way.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/11.json b/share/quran-json/TheQuran/en/11.json
new file mode 100644
index 0000000..bdfc105
--- /dev/null
+++ b/share/quran-json/TheQuran/en/11.json
@@ -0,0 +1,261 @@
+[
+ {
+ "id": "11",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Hud",
+ "translated_name": "Hud",
+ "verse_count": 123,
+ "slug": "hud",
+ "codepoints": [
+ 1607,
+ 1608,
+ 1583
+ ]
+ },
+ 1,
+ "Alif-Lãm-Ra. ˹This is˺ a Book whose verses are well perfected and then fully explained. ˹It is˺ from the One ˹Who is˺ All-Wise, All-Aware.",
+ 2,
+ "˹Tell them, O Prophet,˺ “Worship none but Allah. Surely I am a warner and deliverer of good news to you from Him.",
+ 3,
+ "And seek your Lord’s forgiveness and turn to Him in repentance. He will grant you a good provision for an appointed term and graciously reward the doers of good. But if you turn away, then I truly fear for you the torment of a formidable Day.",
+ 4,
+ "To Allah is your return. And He is Most Capable of everything.”",
+ 5,
+ "Indeed, they enfold ˹what is in˺ their hearts, ˹trying˺ to hide it from Him! But even when they cover themselves with their clothes, He knows what they conceal and what they reveal. Surely He knows best what is ˹hidden˺ in the heart.",
+ 6,
+ "There is no moving creature on earth whose provision is not guaranteed by Allah. And He knows where it lives and where it is laid to rest. All is ˹written˺ in a perfect Record.",
+ 7,
+ "He is the One Who created the heavens and the earth in six Days—and His Throne was upon the waters—in order to test which of you is best in deeds. And if you ˹O Prophet˺ say, “Surely you will ˹all˺ be raised up after death,” the disbelievers will certainly say, “That is nothing but pure magic!”",
+ 8,
+ "And if We delay their punishment until an appointed time, they will definitely say, “What is holding it back?” Indeed, on the Day it overtakes them, it will not be averted from them, and they will be overwhelmed by what they used to ridicule.",
+ 9,
+ "If We give people a taste of Our mercy then take it away from them, they become utterly desperate, ungrateful.",
+ 10,
+ "But if We give them a taste of prosperity after being touched with adversity, they say, “My ills are gone,” and become totally prideful and boastful,",
+ 11,
+ "except those who patiently endure and do good. It is they who will have forgiveness and a mighty reward.",
+ 12,
+ "Perhaps you ˹O Prophet˺ may wish to give up some of what is revealed to you and may be distressed by it because they say, “If only a treasure had been sent down to him, or an angel had come with him!” You are only a warner, and Allah is the Trustee of All Affairs.",
+ 13,
+ "Or do they say, “He has fabricated this ˹Quran˺!”? Say, ˹O Prophet,˺ “Produce ten fabricated sûrahs like it and seek help from whoever you can—other than Allah—if what you say is true!”",
+ 14,
+ "But if your helpers fail you, then know that it has been revealed with the knowledge of Allah, and that there is no god ˹worthy of worship˺ except Him! Will you ˹not˺ then submit ˹to Allah˺?",
+ 15,
+ "Whoever desires ˹only˺ this worldly life and its luxuries, We will pay them in full for their deeds in this life—nothing will be left out.",
+ 16,
+ "It is they who will have nothing in the Hereafter except the Fire. Their efforts in this life will be fruitless and their deeds will be useless.",
+ 17,
+ "˹Can these people be compared to˺ those ˹believers˺ who stand on clear proof from their Lord, backed by ˹the Quran as˺ a witness from Him, and preceded by the Book of Moses ˹which was revealed˺ as a guide and mercy? It is those ˹believers˺ who have faith in it. But whoever from the ˹disbelieving˺ groups rejects it, the Fire will be their destiny. So do not be in doubt of it. It is certainly the truth from your Lord, but most people do not believe.",
+ 18,
+ "Who does more wrong than those who fabricate lies against Allah? They will be brought before their Lord, and the witnesses will say, “These are the ones who lied against their Lord.” Surely Allah’s condemnation is upon the wrongdoers,",
+ 19,
+ "who hinder ˹others˺ from Allah’s Path, striving to make it ˹appear˺ crooked, and disbelieve in the Hereafter.",
+ 20,
+ "They will never frustrate Allah on earth, and they will have no protector besides Allah. Their punishment will be multiplied, for they failed to hear or see ˹the truth˺.",
+ 21,
+ "It is they who have ruined themselves, and whatever ˹gods˺ they fabricated will fail them.",
+ 22,
+ "Without a doubt, they will be the worst losers in the Hereafter.",
+ 23,
+ "Surely those who believe, do good, and humble themselves before their Lord will be the residents of Paradise. They will be there forever.",
+ 24,
+ "The example of these two parties is that of the blind and the deaf, compared to the seeing and the hearing. Can the two be equal? Will you not then be mindful?",
+ 25,
+ "Surely We sent Noah to his people. ˹He said,˺ “Indeed, I am sent to you with a clear warning",
+ 26,
+ "that you should worship none but Allah. I truly fear for you the torment of a painful Day.”",
+ 27,
+ "The disbelieving chiefs of his people said, “We see you only as a human being like ourselves, and we see that no one follows you except the lowliest among us, who do so ˹hastily˺ without thinking. We do not see anything that makes ˹all of˺ you any better than us. In fact, we think you are liars.”",
+ 28,
+ "He said, “O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Himself, which you fail to see. Should we ˹then˺ force it on you against your will?",
+ 29,
+ "O my people! I do not ask you for a payment for this ˹message˺. My reward is only from Allah. And I will never dismiss the believers, for they will surely meet their Lord. But I can see that you are a people acting ignorantly.",
+ 30,
+ "O my people! Who would protect me from Allah if I were to dismiss them? Will you not then be mindful?",
+ 31,
+ "I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel, nor do I say that Allah will never grant goodness to those you look down upon. Allah knows best what is ˹hidden˺ within them. ˹If I did,˺ then I would truly be one of the wrongdoers.”",
+ 32,
+ "They protested, “O Noah! You have argued with us far too much, so bring upon us what you threaten us with, if what you say is true.”",
+ 33,
+ "He responded, “It is Allah Who can bring it upon you if He wills, and then you will have no escape!",
+ 34,
+ "My advice will not benefit you—no matter how hard I try—if Allah wills ˹for˺ you to stray. He is your Lord, and to Him you will ˹all˺ be returned.”",
+ 35,
+ "Or do they say, “He has fabricated this ˹Quran˺!”? Say, ˹O Prophet,˺ “If I have done so, then I bear the burden of that sin! But I am free from your sinful accusation.”",
+ 36,
+ "And it was revealed to Noah, “None of your people will believe except those who already have. So do not be distressed by what they have been doing.",
+ 37,
+ "And build the Ark under Our ˹watchful˺ Eyes and directions, and do not plead with Me for those who have done wrong, for they will surely be drowned.”",
+ 38,
+ "So he began to build the Ark, and whenever some of the chiefs of his people passed by, they mocked him. He said, “If you laugh at us, we will ˹soon˺ laugh at you similarly.",
+ 39,
+ "You will soon come to know who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺.”",
+ 40,
+ "And when Our command came and the oven burst ˹with water˺, We said ˹to Noah˺, “Take into the Ark a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed—and those who believe.” But none believed with him except for a few.",
+ 41,
+ "And he said, “Board it! In the Name of Allah it will sail and cast anchor. Surely my Lord is All-Forgiving, Most Merciful.”",
+ 42,
+ "And ˹so˺ the Ark sailed with them through waves like mountains. Noah called out to his son, who stood apart, “O my dear son! Come aboard with us and do not be with the disbelievers.”",
+ 43,
+ "He replied, “I will take refuge on a mountain, which will protect me from the water.” Noah cried, “Today no one is protected from Allah’s decree except those to whom He shows mercy!” And the waves came between them, and his son was among the drowned.",
+ 44,
+ "And it was said, “O earth! Swallow up your water. And O sky! Withhold ˹your rain˺.” The floodwater receded and the decree was carried out. The Ark rested on Mount Judi, and it was said, “Away with the wrongdoing people!”",
+ 45,
+ "Noah called out to his Lord, saying, “My Lord! Certainly my son is ˹also˺ of my family, Your promise is surely true, and You are the most just of all judges!”",
+ 46,
+ "Allah replied, “O Noah! He is certainly not of your family—he was entirely of unrighteous conduct. So do not ask Me about what you have no knowledge of! I warn you so you do not fall into ignorance.”",
+ 47,
+ "Noah pleaded, “My Lord, I seek refuge in You from asking You about what I have no knowledge of, and unless You forgive me and have mercy on me, I will be one of the losers.”",
+ 48,
+ "It was said, “O Noah! Disembark with Our peace and blessings on you and some of the descendants of those with you. As for the others, We will allow them ˹a brief˺ enjoyment, then they will be touched with a painful punishment from Us.”",
+ 49,
+ "This is one of the stories of the unseen, which we reveal to you ˹O Prophet˺. Neither you nor your people knew it before this. So be patient! Surely the ultimate outcome belongs ˹only˺ to the righteous.",
+ 50,
+ "And to the people of ’Âd We sent their brother Hûd. He said, “O my people! Worship Allah. You have no god other than Him. You do nothing but fabricate lies ˹against Allah˺.",
+ 51,
+ "O my people! I do not ask you for any reward for this ˹message˺. My reward is only from the One Who created me. Will you not then understand?",
+ 52,
+ "And O my people! Seek your Lord’s forgiveness and turn to Him in repentance. He will shower you with rain in abundance, and add strength to your strength. So do not turn away, persisting in wickedness.”",
+ 53,
+ "They argued, “O Hûd! You have not given us any clear proof, and we will never abandon our gods upon your word, nor will we believe in you.",
+ 54,
+ "All we can say is that some of our gods have possessed you with evil.” He said, “I call Allah to witness, and you too bear witness, that I ˹totally˺ reject whatever you associate",
+ 55,
+ "with Him ˹in worship˺. So let all of you plot against me without delay!",
+ 56,
+ "I have put my trust in Allah—my Lord and your Lord. There is no living creature that is not completely under His control. Surely my Lord’s Way is perfect justice.",
+ 57,
+ "But if you turn away, I have already delivered to you what I have been sent with. My Lord will replace you with others. You are not harming Him in the least. Indeed, my Lord is a ˹vigilant˺ Keeper over all things.”",
+ 58,
+ "When Our command came, We rescued Hûd and those who believed with him by a mercy from Us, saving them from a harsh torment.",
+ 59,
+ "That was ’Âd. They denied the signs of their Lord, disobeyed His messengers, and followed the command of every stubborn tyrant.",
+ 60,
+ "They were followed by a curse in this world, as they will be on the Day of Judgment. Surely ’Âd denied their Lord. So away with ’Âd, the people of Hûd.",
+ 61,
+ "And to the people of Thamûd We sent their brother Ṣâliḥ. He said, “O my people! Worship Allah. You have no god other than Him. He ˹is the One Who˺ produced you from the earth and settled you on it. So seek His forgiveness and turn to Him in repentance. Surely my Lord is Ever Near, All-Responsive ˹to prayers˺.”",
+ 62,
+ "They argued, “O Ṣâliḥ! We truly had high hopes in you before this. How dare you forbid us to worship what our forefathers had worshipped? We are certainly in alarming doubt about what you are inviting us to.”",
+ 63,
+ "He responded, “O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Him. Who could help me against Allah if I were to disobey Him? You would only contribute to my doom.",
+ 64,
+ "And O my people! This she-camel of Allah is a sign for you. So leave her to graze ˹freely˺ on Allah’s earth and do her no harm, or a swift punishment will overtake you!”",
+ 65,
+ "But they killed her, so he warned ˹them˺, “You have ˹only˺ three ˹more˺ days to enjoy life in your homes—this is an unfailing promise!”",
+ 66,
+ "When Our command came, We saved Ṣâliḥ and those who believed with him by a mercy from Us and spared them the disgrace of that Day. Surely your Lord ˹alone˺ is the All-Powerful, Almighty.",
+ 67,
+ "And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,",
+ 68,
+ "as if they had never lived there. Surely Thamûd denied their Lord, so away with Thamûd!",
+ 69,
+ "And surely Our messenger-angels came to Abraham with good news ˹of a son˺. They greeted ˹him with˺, “Peace!” And he replied, “Peace ˹be upon you˺!” Then it was not long before he brought ˹them˺ a ˹fat,˺ roasted calf.",
+ 70,
+ "And when he saw that their hands did not reach for the food, he became suspicious and fearful of them. They reassured ˹him˺, “Do not be afraid! We are ˹angels˺ sent ˹only˺ against the people of Lot.”",
+ 71,
+ "And his wife was standing by, so she laughed, then We gave her good news of ˹the birth of˺ Isaac, and, after him, Jacob.",
+ 72,
+ "She wondered, “Oh, my! How can I have a child in this old age, and my husband here is an old man? This is truly an astonishing thing!”",
+ 73,
+ "They responded, “Are you astonished by Allah’s decree? May Allah’s mercy and blessings be upon you, O people of this house. Indeed, He is Praiseworthy, All-Glorious.”",
+ 74,
+ "Then after the fear had left Abraham, and the good news had reached him, he began to plead with Us for the people of Lot.",
+ 75,
+ "Truly, Abraham was forbearing, tender-hearted, and ever turning ˹to his Lord˺.",
+ 76,
+ "˹The angels said,˺ “O Abraham! Plead no more! Your Lord’s decree has already come, and they will certainly be afflicted with a punishment that cannot be averted!”",
+ 77,
+ "When Our messenger-angels came to Lot, he was distressed and worried by their arrival. He said, “This is a terrible day.”",
+ 78,
+ "And ˹the men of˺ his people—who were used to shameful deeds—came to him rushing. He pleaded, “O my people! Here are my daughters ˹for marriage˺—they are pure for you. So fear Allah, and do not humiliate me by disrespecting my guests. Is there not ˹even˺ a single right-minded man among you?”",
+ 79,
+ "They argued, “You certainly know that we have no need for your daughters. You already know what we desire!”",
+ 80,
+ "He responded, “If only I had the strength ˹to resist you˺ or could rely on a strong supporter.”",
+ 81,
+ "The angels said, “O Lot! We are the messengers of your Lord. They will never reach you. So travel with your family in the dark of night, and do not let any of you look back, except your wife. She will certainly suffer the fate of the others. Their appointed time is the morning. Is the morning not near?”",
+ 82,
+ "When Our command came, We turned the cities upside down and rained down on them clustered stones of baked clay,",
+ 83,
+ "marked by your Lord ˹O Prophet˺. And these stones are not far from the ˹pagan˺ wrongdoers!",
+ 84,
+ "And to the people of Midian We sent their brother Shu’aib. He said, “O my people! Worship Allah. You have no god other than Him. And do not give short measure and weight. I do see you in prosperity now, but I truly fear for you the torment of an overwhelming Day.",
+ 85,
+ "O my people! Give full measure and weigh with justice. Do not defraud people of their property, nor go about spreading corruption in the land.",
+ 86,
+ "What is left ˹as a lawful gain˺ by Allah is far better for you if you are ˹truly˺ believers. And I am not a keeper over you.”",
+ 87,
+ "They asked ˹sarcastically˺, “O Shu’aib! Does your prayer command you that we should abandon what our forefathers worshipped or give up managing our wealth as we please? Indeed, you are such a tolerant, sensible man!”",
+ 88,
+ "He said, “O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a good provision from Him. I do not want to do what I am forbidding you from. I only intend reform to the best of my ability. My success comes only through Allah. In Him I trust and to Him I turn.",
+ 89,
+ "O my people! Do not let your opposition to me lead you to a fate similar to that of the people of Noah, or Hûd, or Ṣâliḥ. And the people of Lot are not far from you.",
+ 90,
+ "So seek your Lord’s forgiveness and turn to Him in repentance. Surely my Lord is Most Merciful, All-Loving.”",
+ 91,
+ "They threatened, “O Shu’aib! We do not comprehend much of what you say, and surely we see you powerless among us. Were it not for your clan, we would have certainly stoned you, for you are nothing to us.”",
+ 92,
+ "He said, “O my people! Do you have more regard for my clan than for Allah, turning your back on Him entirely? Surely my Lord is Fully Aware of what you do.",
+ 93,
+ "O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know who will be visited by a humiliating torment and is a liar! And watch! I too am watching with you!”",
+ 94,
+ "When Our command came, We saved Shu’aib and those who believed with him by a mercy from Us. And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,",
+ 95,
+ "as if they had never lived there. So away with Midian as it was with Thamûd!",
+ 96,
+ "Indeed, We sent Moses with Our signs and compelling proof",
+ 97,
+ "to Pharaoh and his chiefs, but they followed the command of Pharaoh, and Pharaoh’s command was not well guided.",
+ 98,
+ "He will be before his people on the Day of Judgment and will lead them into the Fire. What an evil place to be led into!",
+ 99,
+ "They were followed by a curse in this ˹life˺ and ˹will receive another˺ on the Day of Judgment. What an evil gift to receive!",
+ 100,
+ "These are accounts, We relate to you ˹O Prophet˺, of the ˹destroyed˺ cities. Some are still standing ˹barren˺, while others have been mowed down.",
+ 101,
+ "We did not wrong them, rather they wronged themselves. The gods they invoked beside Allah were of no help at all when the command of your Lord came, and only contributed to their ruin.",
+ 102,
+ "Such is the ˹crushing˺ grip of your Lord when He seizes the societies entrenched in wrongdoing. Indeed, His grip is ˹terribly˺ painful and severe.",
+ 103,
+ "Surely in this is a sign for those who fear the torment of the Hereafter. That is a Day for which humanity will be gathered and a Day ˹that will be˺ witnessed ˹by all˺.",
+ 104,
+ "We only delay it for a fixed term.",
+ 105,
+ "When that Day arrives, no one will dare speak except with His permission. Some of them will be miserable, others joyful.",
+ 106,
+ "As for those bound for misery, they will be in the Fire, where they will be sighing and gasping,",
+ 107,
+ "staying there forever, as long as the heavens and the earth will endure, except what your Lord wills. Surely your Lord does what He intends.",
+ 108,
+ "And as for those destined to joy, they will be in Paradise, staying there forever, as long as the heavens and the earth will endure, except what your Lord wills—a ˹generous˺ giving, without end.",
+ 109,
+ "So do not be in doubt ˹O Prophet˺ about what those ˹pagans˺ worship. They worship nothing except what their forefathers worshipped before ˹them˺. And We will certainly give them their share ˹of punishment˺ in full, without any reduction.",
+ 110,
+ "Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.",
+ 111,
+ "And surely your Lord will fully pay all for their deeds. He is certainly All-Aware of what they do.",
+ 112,
+ "So be steadfast as you are commanded ˹O Prophet˺, along with those who turn ˹in submission to Allah˺ with you. And do not transgress. Surely He is All-Seeing of what you ˹believers˺ do.",
+ 113,
+ "And do not be inclined to the wrongdoers or you will be touched by the Fire. For then you would have no protectors other than Allah, nor would you be helped.",
+ 114,
+ "Establish prayer ˹O Prophet˺ at both ends of the day and in the early part of the night. Surely good deeds wipe out evil deeds. That is a reminder for the mindful.",
+ 115,
+ "And be patient! Certainly Allah does not discount the reward of the good-doers.",
+ 116,
+ "If only there had been among the ˹destroyed˺ peoples before you, ˹O believers,˺ virtuous individuals who forbade corruption in the land—other than the few We had saved ˹from the torment˺. But the wrongdoers ˹only˺ pursued their ˹worldly˺ pleasures, becoming wicked.",
+ 117,
+ "And your Lord ˹O Prophet˺ would never destroy a society unjustly while its people were acting rightly.",
+ 118,
+ "Had your Lord so willed, He would have certainly made humanity one single community ˹of believers˺, but they will always ˹choose to˺ differ—",
+ 119,
+ "except those shown mercy by your Lord—and so He created them ˹to choose freely˺. And so the Word of your Lord will be fulfilled: “I will surely fill up Hell with jinn and humans all together.”",
+ 120,
+ "And We relate to you ˹O Prophet˺ the stories of the messengers to reassure your heart. And there has come to you in this ˹sûrah˺ the truth, a warning ˹to the disbelievers˺, and a reminder to the believers.",
+ 121,
+ "Say to those who disbelieve, “Persist in your ways; we will certainly persist in ours.",
+ 122,
+ "And wait! Surely we ˹too˺ are waiting.”",
+ 123,
+ "To Allah ˹alone˺ belongs the knowledge of what is hidden in the heavens and the earth. And to Him all matters are returned. So worship Him and put your trust in Him. And your Lord is never unaware of what you do."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/110.json b/share/quran-json/TheQuran/en/110.json
new file mode 100644
index 0000000..34c2499
--- /dev/null
+++ b/share/quran-json/TheQuran/en/110.json
@@ -0,0 +1,23 @@
+[
+ {
+ "id": "110",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "An-Nasr",
+ "translated_name": "The Divine Support",
+ "verse_count": 3,
+ "slug": "an-nasr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1589,
+ 1585
+ ]
+ },
+ 1,
+ "When Allah’s ˹ultimate˺ help comes and the victory ˹over Mecca is achieved˺,",
+ 2,
+ "and you ˹O Prophet˺ see the people embracing Allah’s Way in crowds,",
+ 3,
+ "then glorify the praises of your Lord and seek His forgiveness, for certainly He is ever Accepting of Repentance."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/111.json b/share/quran-json/TheQuran/en/111.json
new file mode 100644
index 0000000..656bd75
--- /dev/null
+++ b/share/quran-json/TheQuran/en/111.json
@@ -0,0 +1,27 @@
+[
+ {
+ "id": "111",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Masad",
+ "translated_name": "The Palm Fiber",
+ "verse_count": 5,
+ "slug": "al-masad",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1587,
+ 1583
+ ]
+ },
+ 1,
+ "May the hands of Abu Lahab perish, and he ˹himself˺ perish!",
+ 2,
+ "Neither his wealth nor ˹worldly˺ gains will benefit him.",
+ 3,
+ "He will burn in a flaming Fire,",
+ 4,
+ "and ˹so will˺ his wife, the carrier of ˹thorny˺ kindling,",
+ 5,
+ "around her neck will be a rope of palm-fibre."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/112.json b/share/quran-json/TheQuran/en/112.json
new file mode 100644
index 0000000..f72d52f
--- /dev/null
+++ b/share/quran-json/TheQuran/en/112.json
@@ -0,0 +1,27 @@
+[
+ {
+ "id": "112",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Ikhlas",
+ "translated_name": "The Sincerity",
+ "verse_count": 4,
+ "slug": "al-ikhlas",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1573,
+ 1582,
+ 1604,
+ 1575,
+ 1589
+ ]
+ },
+ 1,
+ "Say, ˹O Prophet,˺ “He is Allah—One ˹and Indivisible˺;",
+ 2,
+ "Allah—the Sustainer ˹needed by all˺.",
+ 3,
+ "He has never had offspring, nor was He born.",
+ 4,
+ "And there is none comparable to Him.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/113.json b/share/quran-json/TheQuran/en/113.json
new file mode 100644
index 0000000..3fd6d6d
--- /dev/null
+++ b/share/quran-json/TheQuran/en/113.json
@@ -0,0 +1,27 @@
+[
+ {
+ "id": "113",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Falaq",
+ "translated_name": "The Daybreak",
+ "verse_count": 5,
+ "slug": "al-falaq",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1604,
+ 1602
+ ]
+ },
+ 1,
+ "Say, ˹O Prophet,˺ “I seek refuge in the Lord of the daybreak",
+ 2,
+ "from the evil of whatever He has created,",
+ 3,
+ "and from the evil of the night when it grows dark,",
+ 4,
+ "and from the evil of those ˹witches casting spells by˺ blowing onto knots,",
+ 5,
+ "and from the evil of an envier when they envy.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/114.json b/share/quran-json/TheQuran/en/114.json
new file mode 100644
index 0000000..0488054
--- /dev/null
+++ b/share/quran-json/TheQuran/en/114.json
@@ -0,0 +1,29 @@
+[
+ {
+ "id": "114",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Nas",
+ "translated_name": "Mankind",
+ "verse_count": 6,
+ "slug": "an-nas",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1575,
+ 1587
+ ]
+ },
+ 1,
+ "Say, ˹O Prophet,˺ “I seek refuge in the Lord of humankind,",
+ 2,
+ "the Master of humankind,",
+ 3,
+ "the God of humankind,",
+ 4,
+ "from the evil of the lurking whisperer—",
+ 5,
+ "who whispers into the hearts of humankind—",
+ 6,
+ "from among jinn and humankind.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/12.json b/share/quran-json/TheQuran/en/12.json
new file mode 100644
index 0000000..b82aaa3
--- /dev/null
+++ b/share/quran-json/TheQuran/en/12.json
@@ -0,0 +1,238 @@
+[
+ {
+ "id": "12",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Yusuf",
+ "translated_name": "Joseph",
+ "verse_count": 111,
+ "slug": "yusuf",
+ "codepoints": [
+ 1610,
+ 1608,
+ 1587,
+ 1601
+ ]
+ },
+ 1,
+ "Alif-Lãm-Ra. These are the verses of the clear Book.",
+ 2,
+ "Indeed, We have sent it down as an Arabic Quran so that you may understand.",
+ 3,
+ "We relate to you ˹O Prophet˺ the best of stories through Our revelation of this Quran, though before this you were totally unaware ˹of them˺.",
+ 4,
+ "˹Remember˺ when Joseph said to his father, “O my dear father! Indeed I dreamt of eleven stars, and the sun, and the moon—I saw them prostrating to me!”",
+ 5,
+ "He replied, “O my dear son! Do not relate your vision to your brothers, or they will devise a plot against you. Surely Satan is a sworn enemy to humankind.",
+ 6,
+ "And so will your Lord choose you ˹O Joseph˺, and teach you the interpretation of dreams, and perfect His favour upon you and the descendants of Jacob—˹just˺ as He once perfected it upon your forefathers, Abraham and Isaac. Surely your Lord is All-Knowing, All-Wise.”",
+ 7,
+ "Indeed, in the story of Joseph and his brothers there are lessons for all who ask.",
+ 8,
+ "˹Remember˺ when they said ˹to one another˺, “Surely Joseph and his brother ˹Benjamin˺ are more beloved to our father than we, even though we are a group of so many. Indeed, our father is clearly mistaken.",
+ 9,
+ "Kill Joseph or cast him out to some ˹distant˺ land so that our father’s attention will be only ours, then after that you may ˹repent and˺ become righteous people!”",
+ 10,
+ "One of them said, “Do not kill Joseph. But if you must do something, throw him into the bottom of a well so perhaps he may be picked up by some travellers.”",
+ 11,
+ "They said, “O our father! Why do you not trust us with Joseph, although we truly wish him well?",
+ 12,
+ "Send him out with us tomorrow so that he may enjoy himself and play. And we will really watch over him.”",
+ 13,
+ "He responded, “It would truly sadden me if you took him away with you, and I fear that a wolf may devour him while you are negligent of him.”",
+ 14,
+ "They said, “If a wolf were to devour him, despite our strong group, then we would certainly be losers!”",
+ 15,
+ "And so, when they took him away and decided to throw him into the bottom of the well, We inspired him: “˹One day˺ you will remind them of this deed of theirs while they are unaware ˹of who you are˺.”",
+ 16,
+ "Then they returned to their father in the evening, weeping.",
+ 17,
+ "They cried, “Our father! We went racing and left Joseph with our belongings, and a wolf devoured him! But you will not believe us, no matter how truthful we are.”",
+ 18,
+ "And they brought his shirt, stained with false blood. He responded, “No! Your souls must have tempted you to do something ˹evil˺. So ˹I can only endure with˺ beautiful patience! It is Allah’s help that I seek to bear your claims.”",
+ 19,
+ "And there came some travellers, and they sent their water-boy who let down his bucket into the well. He cried out, “Oh, what a great find! Here is a boy!” And they took him secretly ˹to be sold˺ as merchandise, but Allah is All-Knowing of what they did.",
+ 20,
+ "They ˹later˺ sold him for a cheap price, just a few silver coins—only wanting to get rid of him. ",
+ 21,
+ "The man from Egypt who bought him said to his wife, “Take good care of him, perhaps he may be useful to us or we may adopt him as a son.” This is how We established Joseph in the land, so that We might teach him the interpretation of dreams. Allah’s Will always prevails, but most people do not know.",
+ 22,
+ "And when he reached maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.",
+ 23,
+ "And the lady, in whose house he lived, tried to seduce him. She locked the doors ˹firmly˺ and said, “Come to me!” He replied, “Allah is my refuge! It is ˹not right to betray˺ my master, who has taken good care of me. Indeed, the wrongdoers never succeed.”",
+ 24,
+ "She advanced towards him, and he would have done likewise, had he not seen a sign from his Lord. This is how We kept evil and indecency away from him, for he was truly one of Our chosen servants.",
+ 25,
+ "They raced for the door and she tore his shirt from the back, only to find her husband at the door. She cried, “What is the penalty for someone who tried to violate your wife, except imprisonment or a painful punishment?”",
+ 26,
+ "Joseph responded, “It was she who tried to seduce me.” And a witness from her own family testified: “If his shirt is torn from the front, then she has told the truth and he is a liar.",
+ 27,
+ "But if it is torn from the back, then she has lied and he is truthful.”",
+ 28,
+ "So when her husband saw that Joseph’s shirt was torn from the back, he said ˹to her˺, “This must be ˹an example˺ of the cunning of you ˹women˺! Indeed, your cunning is so shrewd!",
+ 29,
+ "O Joseph! Forget about this. And you ˹O wife˺! Seek forgiveness for your sin. It certainly has been your fault.”",
+ 30,
+ "Some women of the city gossiped, “The Chief Minister’s wife is trying to seduce her slave-boy. Love for him has plagued her heart. Indeed, we see that she is clearly mistaken.”",
+ 31,
+ "When she heard about their gossip, she invited them and set a banquet for them. She gave each one a knife, then said ˹to Joseph˺, “Come out before them.” When they saw him, they were so stunned ˹by his beauty˺ that they cut their hands, and exclaimed, “Good God! This cannot be human; this must be a noble angel!”",
+ 32,
+ "She said, “This is the one for whose love you criticized me! I did try to seduce him but he ˹firmly˺ refused. And if he does not do what I order him to, he will certainly be imprisoned and ˹fully˺ disgraced.” ",
+ 33,
+ "Joseph prayed, “My Lord! I would rather be in jail than do what they invite me to. And if You do not turn their cunning away from me, I might yield to them and fall into ignorance.”",
+ 34,
+ "So his Lord responded to him, turning their cunning away from him. Surely He is the All-Hearing, All-Knowing.",
+ 35,
+ "And so it occurred to those in charge, despite seeing all the proofs ˹of his innocence˺, that he should be imprisoned for a while. ",
+ 36,
+ "And two other servants went to jail with Joseph. One of them said, “I dreamt I was pressing wine.” The other said, “I dreamt I was carrying ˹some˺ bread on my head, from which birds were eating.” ˹Then both said,˺ “Tell us their interpretation, for we surely see you as one of the good-doers.”",
+ 37,
+ "Joseph replied, “I can even tell you what kind of meal you will be served before you receive it. This ˹knowledge˺ is from what my Lord has taught me. I have shunned the faith of a people who disbelieve in Allah and deny the Hereafter.",
+ 38,
+ "I follow the faith of my fathers: Abraham, Isaac, and Jacob. It is not ˹right˺ for us to associate anything with Allah ˹in worship˺. This is part of Allah’s grace upon us and humanity, but most people are not grateful.",
+ 39,
+ "O my fellow-prisoners! Which is far better: many different lords or Allah—the One, the Supreme?",
+ 40,
+ "Whatever ˹idols˺ you worship instead of Him are mere names which you and your forefathers have made up—a practice Allah has never authorized. It is only Allah Who decides. He has commanded that you worship none but Him. That is the upright faith, but most people do not know.",
+ 41,
+ "“O my fellow-prisoners! ˹The first˺ one of you will serve wine to his master, and the other will be crucified and the birds will eat from his head. The matter about which you inquired has been decided.”",
+ 42,
+ "Then he said to the one he knew would survive, “Mention me in the presence of your master.” But Satan made him forget to mention Joseph to his master, so he remained in prison for several years.",
+ 43,
+ "And ˹one day˺ the King said, “I dreamt of seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry. O chiefs! Tell me the meaning of my dream if you can interpret dreams.”",
+ 44,
+ "They replied, “These are confused visions and we do not know the interpretation of such dreams.”",
+ 45,
+ "˹Finally,˺ the surviving ex-prisoner remembered ˹Joseph˺ after a long time and said, “I will tell you its interpretation, so send me forth ˹to Joseph˺.”",
+ 46,
+ "˹He said,˺ “Joseph, O man of truth! Interpret for us ˹the dream of˺ seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry, so that I may return to the people and let them know.”",
+ 47,
+ "Joseph replied, “You will plant ˹grain˺ for seven consecutive years, leaving in the ear whatever you will harvest, except for the little you will eat.",
+ 48,
+ "Then after that will come seven years of great hardship which will consume whatever you have saved, except the little you will store ˹for seed˺.",
+ 49,
+ "Then after that will come a year in which people will receive abundant rain and they will press ˹oil and wine˺.”",
+ 50,
+ "The King ˹then˺ said, “Bring him to me.” When the messenger came to him, Joseph said, “Go back to your master and ask him about the case of the women who cut their hands. Surely my Lord has ˹full˺ knowledge of their cunning.”",
+ 51,
+ "The King asked ˹the women˺, “What did you get when you tried to seduce Joseph?” They replied, “Allah forbid! We know nothing indecent about him.” Then the Chief Minister’s wife admitted, “Now the truth has come to light. It was I who tried to seduce him, and he is surely truthful.",
+ 52,
+ "From this, Joseph should know that I did not speak dishonestly about him in his absence, for Allah certainly does not guide the scheming of the dishonest.",
+ 53,
+ "And I do not seek to free myself from blame, for indeed the soul is ever inclined to evil, except those shown mercy by my Lord. Surely my Lord is All-Forgiving, Most Merciful.”",
+ 54,
+ "The King said, “Bring him to me. I will employ him exclusively in my service.” And when Joseph spoke to him, the King said, “Today you are highly esteemed and fully trusted by us.”",
+ 55,
+ "Joseph proposed, “Put me in charge of the store-houses of the land, for I am truly reliable and adept.”",
+ 56,
+ "This is how We established Joseph in the land to settle wherever he pleased. We shower Our mercy on whoever We will, and We never discount the reward of the good-doers.",
+ 57,
+ "And the reward of the Hereafter is far better for those who are faithful and are mindful ˹of Allah˺.",
+ 58,
+ "And Joseph’s brothers came and entered his presence. He recognized them but they were unaware of who he really was.",
+ 59,
+ "When he had provided them with their supplies, he demanded, “Bring me your brother on your father’s side. Do you not see that I give full measure and I am the best of hosts?",
+ 60,
+ "But if you do not bring him to me ˹next time˺, I will have no grain for you, nor will you ever come close to me again.”",
+ 61,
+ "They promised, “We will try to convince his father to let him come. We will certainly do ˹our best˺.”",
+ 62,
+ "Joseph ordered his servants to put his brothers’ money back into their saddlebags so that they would find it when they returned to their family and perhaps they would come back.",
+ 63,
+ "When Joseph’s brothers returned to their father, they pleaded, “O our father! We have been denied ˹further˺ supplies. So send our brother with us so that we may receive our measure, and we will definitely watch over him.”",
+ 64,
+ "He responded, “Should I trust you with him as I once trusted you with his brother ˹Joseph˺? But ˹only˺ Allah is the best Protector, and He is the Most Merciful of the merciful.”",
+ 65,
+ "When they opened their bags, they discovered that their money had been returned to them. They argued, “O our father! What more can we ask for? Here is our money, fully returned to us. Now we can buy more food for our family. We will watch over our brother, and obtain an extra camel-load of grain. That load can be easily secured.”",
+ 66,
+ "Jacob insisted, “I will not send him with you until you give me a solemn oath by Allah that you will certainly bring him back to me, unless you are totally overpowered.” Then after they had given him their oaths, he concluded, “Allah is a Witness to what we have said.”",
+ 67,
+ "He then instructed ˹them˺, “O my sons! Do not enter ˹the city˺ all through one gate, but through separate gates. I cannot help you against ˹what is destined by˺ Allah in the least. It is only Allah Who decides. In Him I put my trust. And in Him let the faithful put their trust.”",
+ 68,
+ "Then when they entered as their father had instructed them, this did not help them against ˹the Will of˺ Allah whatsoever. It was just a desire in Jacob’s heart which he satisfied. He was truly blessed with ˹great˺ knowledge because of what We had taught him, but most people have no knowledge.",
+ 69,
+ "When they entered Joseph’s presence, he called his brother ˹Benjamin˺ aside, and confided ˹to him˺, “I am indeed your brother ˹Joseph˺! So do not feel distressed about what they have been doing.”",
+ 70,
+ "When Joseph had provided them with supplies, he slipped the royal cup into his brother’s bag. Then a herald cried, “O people of the caravan! You must be thieves!”",
+ 71,
+ "They asked, turning back, “What have you lost?”",
+ 72,
+ "The herald ˹along with the guards˺ replied, “We have lost the King’s measuring cup. And whoever brings it will be awarded a camel-load ˹of grain˺. I guarantee it.”",
+ 73,
+ "Joseph’s brothers replied, “By Allah! You know well that we did not come to cause trouble in the land, nor are we thieves.”",
+ 74,
+ "Joseph’s men asked, “What should be the price for theft, if you are lying?”",
+ 75,
+ "Joseph’s brothers responded, “The price will be ˹the enslavement of˺ the one in whose bag the cup is found. That is how we punish the wrongdoers.”",
+ 76,
+ "Joseph began searching their bags before that of his brother ˹Benjamin˺, then brought it out of Benjamin’s bag. This is how We inspired Joseph to plan. He could not have taken his brother under the King’s law, but Allah had so willed. We elevate in rank whoever We will. But above those ranking in knowledge is the One All-Knowing.",
+ 77,
+ "˹To distance themselves,˺ Joseph’s brothers argued, “If he has stolen, so did his ˹full˺ brother before.” But Joseph suppressed his outrage—revealing nothing to them—and said ˹to himself˺, “You are in such an evil position, and Allah knows best ˹the truth of˺ what you claim.”",
+ 78,
+ "They appealed, “O Chief Minister! He has a very old father, so take one of us instead. We surely see you as one of the good-doers.”",
+ 79,
+ "Joseph responded, “Allah forbid that we should take other than the one with whom we found our property. Otherwise, we would surely be unjust.”",
+ 80,
+ "When they lost all hope in him, they spoke privately. The eldest of them said, “Do you not know that your father had taken a solemn oath by Allah from you, nor how you failed him regarding Joseph before? So I am not leaving this land until my father allows me to, or Allah decides for me. For He is the Best of Judges.",
+ 81,
+ "Return to your father and say, ‘O our father! Your son committed theft. We testify only to what we know. We could not guard against the unforeseen.",
+ 82,
+ "Ask ˹the people of˺ the land where we were and the caravan we travelled with. We are certainly telling the truth.’”",
+ 83,
+ "He cried, “No! Your souls must have tempted you to do something ˹evil˺. So ˹I am left with nothing but˺ beautiful patience! I trust Allah will return them all to me. Surely He ˹alone˺ is the All-Knowing, All-Wise.”",
+ 84,
+ "He turned away from them, lamenting, “Alas, poor Joseph!” And his eyes turned white out of the grief he suppressed.",
+ 85,
+ "They said, “By Allah! You will not cease to remember Joseph until you lose your health or ˹even˺ your life.”",
+ 86,
+ "He replied, “I complain of my anguish and sorrow only to Allah, and I know from Allah what you do not know.",
+ 87,
+ "O my sons! Go and search ˹diligently˺ for Joseph and his brother. And do not lose hope in the mercy of Allah, for no one loses hope in Allah’s mercy except those with no faith.”",
+ 88,
+ "When they entered Joseph’s presence, they pleaded, “O Chief Minister! We and our family have been touched with hardship, and we have brought only a few worthless coins, but ˹please˺ give us our supplies in full and be charitable to us. Indeed, Allah rewards the charitable.”",
+ 89,
+ "He asked, “Do you remember what you did to Joseph and his brother in your ignorance?”",
+ 90,
+ "They replied ˹in shock˺, “Are you really Joseph?” He said, “I am Joseph, and here is my brother ˹Benjamin˺! Allah has truly been gracious to us. Surely whoever is mindful ˹of Allah˺ and patient, then certainly Allah never discounts the reward of the good-doers.”",
+ 91,
+ "They admitted, “By Allah! Allah has truly preferred you over us, and we have surely been sinful.”",
+ 92,
+ "Joseph said, “There is no blame on you today. May Allah forgive you! He is the Most Merciful of the merciful!",
+ 93,
+ "Go with this shirt of mine and cast it over my father’s face, and he will regain his sight. Then come back to me with your whole family.”",
+ 94,
+ "When the caravan departed ˹from Egypt˺, their father said ˹to those around him˺, “You may think I am senile, but I certainly sense the smell of Joseph.”",
+ 95,
+ "They replied, “By Allah! You are definitely still in your old delusion.”",
+ 96,
+ "But when the bearer of the good news arrived, he cast the shirt over Jacob’s face, so he regained his sight. Jacob then said ˹to his children˺, “Did I not tell you that I truly know from Allah what you do not know?”",
+ 97,
+ "They begged, “O our father! Pray for the forgiveness of our sins. We have certainly been sinful.”",
+ 98,
+ "He said, “I will pray to my Lord for your forgiveness. He ˹alone˺ is indeed the All-Forgiving, Most Merciful.”",
+ 99,
+ "When they entered Joseph’s presence, he received his parents ˹graciously˺ and said, “Enter Egypt, Allah willing, in security.”",
+ 100,
+ "Then he raised his parents to the throne, and they all fell down in prostration to Joseph, who then said, “O my dear father! This is the interpretation of my old dream. My Lord has made it come true. He was truly kind to me when He freed me from prison, and brought you all from the desert after Satan had ignited rivalry between me and my siblings. Indeed my Lord is subtle in fulfilling what He wills. Surely He ˹alone˺ is the All-Knowing, All-Wise.”",
+ 101,
+ "“My Lord! You have surely granted me authority and taught me the interpretation of dreams. ˹O˺ Originator of the heavens and the earth! You are my Guardian in this world and the Hereafter. Allow me to die as one who submits and join me with the righteous.”",
+ 102,
+ "That is from the stories of the unseen which We reveal to you ˹O Prophet˺. You were not present when they ˹all˺ made up their minds, and when they plotted ˹against Joseph˺.",
+ 103,
+ "And most people will not believe—no matter how keen you are—",
+ 104,
+ "even though you are not asking them for a reward for this ˹Quran˺. It is only a reminder to the whole world.",
+ 105,
+ "How many signs in the heavens and the earth do they pass by with indifference!",
+ 106,
+ "And most of them do not believe in Allah without associating others with Him ˹in worship˺.",
+ 107,
+ "Do they feel secure that an overwhelming torment from Allah will not overtake them, or that the Hour will not take them by surprise when they least expect ˹it˺?",
+ 108,
+ "Say, ˹O Prophet,˺ “This is my way. I invite to Allah with insight—I and those who follow me. Glory be to Allah, and I am not one of the polytheists.”",
+ 109,
+ "We only sent before you ˹O Prophet˺ men inspired by Us from among the people of each society. Have the deniers not travelled through the land to see what was the end of those ˹destroyed˺ before them? And surely the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?",
+ 110,
+ "And when the messengers despaired and their people thought the messengers had been denied help, Our help came to them ˹at last˺. We then saved whoever We willed, and Our punishment is never averted from the wicked people.",
+ 111,
+ "In their stories there is truly a lesson for people of reason. This message cannot be a fabrication, rather ˹it is˺ a confirmation of previous revelation, a detailed explanation of all things, a guide, and a mercy for people of faith."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/13.json b/share/quran-json/TheQuran/en/13.json
new file mode 100644
index 0000000..c254671
--- /dev/null
+++ b/share/quran-json/TheQuran/en/13.json
@@ -0,0 +1,103 @@
+[
+ {
+ "id": "13",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Ar-Ra'd",
+ "translated_name": "The Thunder",
+ "verse_count": 43,
+ "slug": "ar-rad",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1585,
+ 1593,
+ 1583
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm-Ra. These are the verses of the Book. What has been revealed to you ˹O Prophet˺ from your Lord is the truth, but most people do not believe.",
+ 2,
+ "It is Allah Who has raised the heavens without pillars—as you can see—then established Himself on the Throne. He has subjected the sun and the moon, each orbiting for an appointed term. He conducts the whole affair. He makes the signs clear so that you may be certain of the meeting with your Lord.",
+ 3,
+ "And He is the One Who spread out the earth and placed firm mountains and rivers upon it, and created fruits of every kind in pairs. He covers the day with night. Surely in this are signs for those who reflect.",
+ 4,
+ "And on the earth there are ˹different˺ neighbouring tracts, gardens of grapevines, ˹various˺ crops, palm trees—some stemming from the same root, others standing alone. They are all irrigated with the same water, yet We make some taste better than others. Surely in this are signs for those who understand.",
+ 5,
+ "˹Now,˺ if anything should amaze you ˹O Prophet˺, then it is their question: “When we are reduced to dust, will we really be raised as a new creation?” It is they who have disbelieved in their Lord. It is they who will have shackles around their necks. And it is they who will be the residents of the Fire. They will be there forever.",
+ 6,
+ "They ask you ˹O Prophet˺ to hasten the torment rather than grace, though there have ˹already˺ been ˹many˺ torments before them. Surely your Lord is full of forgiveness for people, despite their wrongdoing, and your Lord is truly severe in punishment.",
+ 7,
+ "The disbelievers say, “If only a sign could be sent down to him from his Lord.” You ˹O Prophet˺ are only a warner. And every people had a guide.",
+ 8,
+ "Allah knows what every female bears and what increases and decreases in the wombs. And with Him everything is determined with precision.",
+ 9,
+ "˹He is the˺ Knower of the seen and the unseen—the All-Great, Most Exalted.",
+ 10,
+ "It is the same ˹to Him˺ whether any of you speaks secretly or openly, whether one hides in the darkness of night or goes about in broad daylight.",
+ 11,
+ "For each one there are successive angels before and behind, protecting them by Allah’s command. Indeed, Allah would never change a people’s state ˹of favour˺ until they change their own state ˹of faith˺. And if it is Allah’s Will to torment a people, it can never be averted, nor can they find a protector other than Him.",
+ 12,
+ "He is the One Who shows you lightning, inspiring ˹you with˺ hope and fear, and produces heavy clouds.",
+ 13,
+ "The thunder glorifies His praises, as do the angels in awe of Him. He sends thunderbolts, striking with them whoever He wills. Yet they dispute about Allah. And He is tremendous in might.",
+ 14,
+ "Calling upon Him ˹alone˺ is the truth. But those ˹idols˺ the pagans invoke besides Him ˹can˺ never respond to them in any way. ˹It is˺ just like someone who stretches out their hands to water, ˹asking it˺ to reach their mouths, but it can never do so. The calls of the disbelievers are only in vain.",
+ 15,
+ "To Allah ˹alone˺ bow down ˹in submission˺ all those in the heavens and the earth—willingly or unwillingly—as do their shadows, morning and evening.",
+ 16,
+ "Ask ˹them, O Prophet˺, “Who is the Lord of the heavens and the earth?” Say, “Allah!” Ask ˹them˺, “Why ˹then˺ have you taken besides Him lords who cannot even benefit or protect themselves?” Say, “Can the blind and the sighted be equal? Or can darkness and light be equal?” Or have they associated with Allah partners who ˹supposedly˺ produced a creation like His, leaving them confused between the two creations? Say, “Allah is the Creator of all things, and He is the One, the Supreme.”",
+ 17,
+ "He sends down rain from the sky, causing the valleys to flow, each according to its capacity. The currents then carry along rising foam, similar to the slag produced from metal that people melt in the fire for ornaments or tools. This is how Allah compares truth to falsehood. The ˹worthless˺ residue is then cast away, but what benefits people remains on the earth. This is how Allah sets forth parables.",
+ 18,
+ "Those who respond to ˹the call of˺ their Lord will have the finest reward. As for those who do not respond to Him, even if they were to possess everything in the world twice over, they would certainly offer it to ransom themselves. They will face strict judgment, and Hell will be their home. What an evil place to rest!",
+ 19,
+ "Can the one who knows that your Lord’s revelation to you ˹O Prophet˺ is the truth be like the one who is blind? None will be mindful ˹of this˺ except people of reason.",
+ 20,
+ "˹They are˺ those who honour Allah’s covenant, never breaking the pledge;",
+ 21,
+ "and those who maintain whatever ˹ties˺ Allah has ordered to be maintained, stand in awe of their Lord, and fear strict judgment.",
+ 22,
+ "And ˹they are˺ those who endure patiently, seeking their Lord’s pleasure, establish prayer, donate from what We have provided for them—secretly and openly—and respond to evil with good. It is they who will have the ultimate abode:",
+ 23,
+ "the Gardens of Eternity, which they will enter along with the righteous among their parents, spouses, and descendants. And the angels will enter upon them from every gate, ˹saying,˺",
+ 24,
+ "“Peace be upon you for your perseverance. How excellent is the ultimate abode!”",
+ 25,
+ "And those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land—it is they who will be condemned and will have the worst abode. ",
+ 26,
+ "Allah gives abundant or limited provisions to whoever He wills. And the disbelievers become prideful of ˹the pleasures of˺ this worldly life. But the life of this world, compared to the Hereafter, is nothing but a fleeting enjoyment.",
+ 27,
+ "The disbelievers say, “If only a sign could be sent down to him from his Lord.” Say, ˹O Prophet,˺ “Indeed, Allah leaves to stray whoever He wills, and guides to Himself whoever turns to Him—",
+ 28,
+ "those who believe and whose hearts find comfort in the remembrance of Allah. Surely in the remembrance of Allah do hearts find comfort.",
+ 29,
+ "Those who believe and do good, for them will be bliss and an honourable destination.”",
+ 30,
+ "And so We have sent you ˹O Prophet˺ to a community, like ˹We did with˺ earlier communities, so that you may recite to them what We have revealed to you. Yet they deny the Most Compassionate. Say, “He is my Lord! There is no god ˹worthy of worship˺ except Him. In Him I put my trust, and to Him I turn ˹in repentance˺.”",
+ 31,
+ "If there were a recitation that could cause mountains to move, or the earth to split, or the dead to speak, ˹it would have been this Quran˺. But all matters are by Allah’s Will. Have the believers not yet realized that had Allah willed, He could have guided all of humanity? And disasters will continue to afflict the disbelievers or strike close to their homes for their misdeeds, until Allah’s promise comes to pass. Surely Allah never fails in His promise.",
+ 32,
+ "Other messengers had already been ridiculed before you, but I delayed the disbelievers ˹for a while˺ then seized them. And how ˹horrible˺ was My punishment!",
+ 33,
+ "Is ˹there any equal to˺ the Vigilant One Who knows what every soul commits? Yet the pagans have associated others with Allah ˹in worship˺. Say, ˹O Prophet,˺ “Name them! Or do you ˹mean to˺ inform Him of something He does not know on the earth? Or are these ˹gods˺ just empty words?” In fact, the disbelievers’ falsehood has been made so appealing to them that they have been turned away from the Path. And whoever Allah leaves to stray will be left with no guide.",
+ 34,
+ "For them is punishment in this worldly life, but the punishment of the Hereafter is truly far worse. And none can shield them from Allah.",
+ 35,
+ "The description of the Paradise promised to the righteous is that under it rivers flow; eternal is its fruit as well as its shade. That is the ˹ultimate˺ outcome for the righteous. But the outcome for the disbelievers is the Fire!",
+ 36,
+ "˹The believers among˺ those who were given the Scripture rejoice at what has been revealed to you ˹O Prophet˺, while some ˹disbelieving˺ factions deny a portion of it. Say, “I have only been commanded to worship Allah, associating none with Him ˹in worship˺. To Him I invite ˹all˺, and to Him is my return.”",
+ 37,
+ "And so We have revealed it as an authority in Arabic. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or shield you from Allah.",
+ 38,
+ "We have certainly sent messengers before you ˹O Prophet˺ and blessed them with wives and offspring. It was not for any messenger to bring a sign without Allah’s permission. Every destined matter has a ˹set˺ time.",
+ 39,
+ "Allah eliminates and confirms what He wills, and with Him is the Master Record. ",
+ 40,
+ "Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, your duty is only to deliver ˹the message˺. Judgment is for Us.",
+ 41,
+ "Do they not see that We gradually reduce their land from its borders? Allah decides—none can reverse His decision. And He is swift in reckoning.",
+ 42,
+ "Those ˹disbelievers˺ before them ˹secretly˺ planned, but Allah has the ultimate plan. He knows what every soul commits. And the disbelievers will soon know who will have the ultimate outcome.",
+ 43,
+ "The disbelievers say, “You ˹Muḥammad˺ are no messenger.” Say, ˹O Prophet,˺ “Allah is sufficient as a Witness between me and you, as is whoever has knowledge of the Scripture.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/14.json b/share/quran-json/TheQuran/en/14.json
new file mode 100644
index 0000000..7290634
--- /dev/null
+++ b/share/quran-json/TheQuran/en/14.json
@@ -0,0 +1,123 @@
+[
+ {
+ "id": "14",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ibrahim",
+ "translated_name": "Abraham",
+ "verse_count": 52,
+ "slug": "ibrahim",
+ "codepoints": [
+ 1575,
+ 1576,
+ 1585,
+ 1575,
+ 1607,
+ 1610,
+ 1605
+ ]
+ },
+ 1,
+ "Alif-Lãm-Ra. ˹This is˺ a Book which We have revealed to you ˹O Prophet˺ so that you may lead people out of darkness and into light, by the Will of their Lord, to the Path of the Almighty, the Praiseworthy—",
+ 2,
+ "Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And woe to the disbelievers because of a severe torment!",
+ 3,
+ "˹They are˺ the ones who favour the life of this world over the Hereafter and hinder ˹others˺ from the Way of Allah, striving to make it ˹appear˺ crooked. It is they who have gone far astray.",
+ 4,
+ "We have not sent a messenger except in the language of his people to clarify ˹the message˺ for them. Then Allah leaves whoever He wills to stray and guides whoever He wills. And He is the Almighty, All-Wise.",
+ 5,
+ "Indeed, We sent Moses with Our signs, ˹ordering him,˺ “Lead your people out of darkness and into light, and remind them of Allah’s days ˹of favour˺.” Surely in this are signs for whoever is steadfast, grateful.",
+ 6,
+ "˹Consider˺ when Moses said to his people, “Remember Allah’s favour upon you when He rescued you from the people of Pharaoh, who afflicted you with dreadful torment—slaughtering your sons and keeping your women. That was a severe test from your Lord.",
+ 7,
+ "And ˹remember˺ when your Lord proclaimed, ‘If you are grateful, I will certainly give you more. But if you are ungrateful, surely My punishment is severe.’”",
+ 8,
+ "Moses added, “If you along with everyone on earth were to be ungrateful, then ˹know that˺ Allah is indeed Self-Sufficient, Praiseworthy.”",
+ 9,
+ "Have you not ˹already˺ received the stories of those who were before you: the people of Noah, ’Âd, Thamûd, and those after them? Only Allah knows how many they were. Their messengers came to them with clear proofs, but they put their hands over their mouths and said, “We totally reject what you have been sent with, and we are certainly in alarming doubt about what you are inviting us to.”",
+ 10,
+ "Their messengers asked ˹them˺, “Is there any doubt about Allah, the Originator of the heavens and the earth? He is inviting you in order to forgive your sins, and delay your end until your appointed term.” They argued, “You are no more than humans like us! You ˹only˺ wish to turn us away from what our forefathers worshipped. So bring us some compelling proof.”",
+ 11,
+ "Their messengers said to them, “We are ˹indeed˺ only humans like you, but Allah favours whoever He chooses of His servants. It is not for us to bring you any proof without Allah’s permission. And in Allah let the believers put their trust.",
+ 12,
+ "Why should we not put our trust in Allah, when He has truly guided us to ˹the very best of˺ ways? Indeed, we will patiently endure whatever harm you may cause us. And in Allah let the faithful put their trust.”",
+ 13,
+ "The disbelievers then threatened their messengers, “We will certainly expel you from our land, unless you return to our faith.” So their Lord revealed to them, “We will surely destroy the wrongdoers,",
+ 14,
+ "and make you reside in the land after them. This is for whoever is in awe of standing before Me and fears My warning.”",
+ 15,
+ "And both sides called for judgment, so every stubborn tyrant was doomed.",
+ 16,
+ "Awaiting them is Hell, and they will be left to drink oozing pus,",
+ 17,
+ "which they will sip with difficulty, and can hardly swallow. Death will overwhelm them from every side, yet they will not ˹be able to˺ die. Awaiting them still is harsher torment.",
+ 18,
+ "The parable of the deeds of those who disbelieve in their Lord is that of ashes fiercely blown away by wind on a stormy day. They will gain nothing from what they have earned. That is ˹truly˺ the farthest one can stray.",
+ 19,
+ "Have you not seen that Allah created the heavens and the earth for a reason? If He wills, He can eliminate you and produce a new creation.",
+ 20,
+ "And that is not difficult for Allah ˹at all˺.",
+ 21,
+ "They will all appear before Allah, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, “We were your ˹dedicated˺ followers, so will you ˹then˺ protect us from Allah’s torment in any way?” They will reply, “Had Allah guided us, we would have guided you. ˹Now˺ it is all the same for us whether we suffer patiently or impatiently, there is no escape for us.”",
+ 22,
+ "And Satan will say ˹to his followers˺ after the judgment has been passed, “Indeed, Allah has made you a true promise. I too made you a promise, but I failed you. I did not have any authority over you. I only called you, and you responded to me. So do not blame me; blame yourselves. I cannot save you, nor can you save me. Indeed, I denounce your previous association of me with Allah ˹in loyalty˺. Surely the wrongdoers will suffer a painful punishment.”",
+ 23,
+ "Those who believe and do good will be admitted into Gardens, under which rivers flow—to stay there forever by the Will of their Lord—where they will be greeted with “Peace!”",
+ 24,
+ "Do you not see how Allah compares a good word to a good tree? Its root is firm and its branches reach the sky,",
+ 25,
+ "˹always˺ yielding its fruit in every season by the Will of its Lord. This is how Allah sets forth parables for the people, so perhaps they will be mindful.",
+ 26,
+ "And the parable of an evil word is that of an evil tree, uprooted from the earth, having no stability.",
+ 27,
+ "Allah makes the believers steadfast with the firm Word ˹of faith˺ in this worldly life and the Hereafter. And Allah leaves the wrongdoers to stray. For Allah does what He wills.",
+ 28,
+ "Have you not seen those ˹disbelievers˺ who meet Allah’s favours with ingratitude and lead their own people to their doom?",
+ 29,
+ "In Hell they will burn. What an evil place for settlement.",
+ 30,
+ "They set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ “Enjoy yourselves! Surely your destination is the Fire.”",
+ 31,
+ "Tell My believing servants to establish prayer and donate from what We have provided for them—openly and secretly—before the arrival of a Day in which there will be no ransom or friendly connections.",
+ 32,
+ "It is Allah Who created the heavens and the earth and sends down rain from the sky, causing fruits to grow as a provision for you. He has subjected the ships for your service, sailing through the sea by His command, and has subjected the rivers for you.",
+ 33,
+ "He has ˹also˺ subjected for you the sun and the moon, both constantly orbiting, and has subjected the day and night for you.",
+ 34,
+ "And He has granted you all that you asked Him for. If you tried to count Allah’s blessings, you would never be able to number them. Indeed humankind is truly unfair, ˹totally˺ ungrateful. ",
+ 35,
+ "˹Remember˺ when Abraham prayed, “My Lord! Make this city ˹of Mecca˺ secure, and keep me and my children away from the worship of idols.",
+ 36,
+ "My Lord! They have caused many people to go astray. So whoever follows me is with me, and whoever disobeys me—then surely You are ˹still˺ All-Forgiving, Most Merciful.",
+ 37,
+ "Our Lord! I have settled some of my offspring in a barren valley, near Your Sacred House, our Lord, so that they may establish prayer. So make the hearts of ˹believing˺ people incline towards them and provide them with fruits, so perhaps they will be thankful.",
+ 38,
+ "Our Lord! You certainly know what we conceal and what we reveal. Nothing on earth or in heaven is hidden from Allah.",
+ 39,
+ "All praise is for Allah who has blessed me with Ishmael and Isaac in my old age. My Lord is indeed the Hearer of ˹all˺ prayers.",
+ 40,
+ "My Lord! Make me and those ˹believers˺ of my descendants keep up prayer. Our Lord! Accept my prayers.",
+ 41,
+ "Our Lord! Forgive me, my parents, and the believers on the Day when the judgment will come to pass.”",
+ 42,
+ "Do not think ˹O Prophet˺ that Allah is unaware of what the wrongdoers do. He only delays them until a Day when ˹their˺ eyes will stare in horror—",
+ 43,
+ "rushing forth, heads raised, never blinking, hearts void.",
+ 44,
+ "And warn the people of the Day when the punishment will overtake ˹the wicked among˺ them, and the wrongdoers will cry, “Our Lord! Delay us for a little while. We will respond to Your call and follow the messengers!” ˹It will be said,˺ “Did you not swear before that you would never be removed ˹to the next life˺?”",
+ 45,
+ "You passed by the ruins of those ˹destroyed peoples˺ who had wronged themselves. It was made clear to you how We dealt with them, and We gave you ˹many˺ examples.",
+ 46,
+ "They devised every plot, which was fully known to Allah, but their plotting was not enough to ˹even˺ overpower mountains ˹let alone Allah˺.",
+ 47,
+ "So do not think ˹O Prophet˺ that Allah will fail to keep His promise to His messengers. Allah is indeed Almighty, capable of punishment.",
+ 48,
+ "˹Watch for˺ the Day ˹when˺ the earth will be changed into a different earth and the heavens as well, and all will appear before Allah—the One, the Supreme.",
+ 49,
+ "On that Day you will see the wicked bound together in chains,",
+ 50,
+ "with garments of tar, and their faces covered with flames.",
+ 51,
+ "As such, Allah will reward every soul for what it has committed. Surely Allah is swift in reckoning.",
+ 52,
+ "This ˹Quran˺ is a ˹sufficient˺ message for humanity so that they may take it as a warning and know that there is only One God, and so that people of reason may be mindful."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/15.json b/share/quran-json/TheQuran/en/15.json
new file mode 100644
index 0000000..d72f391
--- /dev/null
+++ b/share/quran-json/TheQuran/en/15.json
@@ -0,0 +1,215 @@
+[
+ {
+ "id": "15",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Hijr",
+ "translated_name": "The Rocky Tract",
+ "verse_count": 99,
+ "slug": "al-hijr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1580,
+ 1585
+ ]
+ },
+ 1,
+ "Alif-Lãm-Ra. These are the verses of the Book; the clear Quran.",
+ 2,
+ "˹The day will come when˺ the disbelievers will certainly wish they had submitted ˹to Allah˺.",
+ 3,
+ "˹So˺ let them eat and enjoy themselves and be diverted by ˹false˺ hope, for they will soon know.",
+ 4,
+ "We have never destroyed a society without a destined term.",
+ 5,
+ "No people can advance their doom, nor can they delay it.",
+ 6,
+ "They say, “O you to whom the Reminder is revealed! You must be insane!",
+ 7,
+ "Why do you not bring us the angels, if what you say is true?”",
+ 8,
+ "We do not send the angels down except for a just cause, and then ˹the end of˺ the disbelievers will not be delayed.",
+ 9,
+ "It is certainly We Who have revealed the Reminder, and it is certainly We Who will preserve it.",
+ 10,
+ "Indeed, We sent messengers before you ˹O Prophet˺ among the groups of early peoples,",
+ 11,
+ "but no messenger ever came to them without being mocked.",
+ 12,
+ "This is how We allow disbelief ˹to steep˺ into the hearts of the wicked.",
+ 13,
+ "They would not believe in this ˹Quran˺ despite the ˹many˺ examples of those ˹destroyed˺ before.",
+ 14,
+ "And even if We opened for them a gate to heaven, through which they continued to ascend,",
+ 15,
+ "still they would say, “Our eyes have truly been dazzled! In fact, we must have been bewitched.”",
+ 16,
+ "Indeed, We have placed constellations in the sky, and adorned it for all to see.",
+ 17,
+ "And We protected it from every accursed devil,",
+ 18,
+ "except the one eavesdropping, who is then pursued by a visible flare.",
+ 19,
+ "As for the earth, We spread it out and placed upon it firm mountains, and caused everything to grow there in perfect balance.",
+ 20,
+ "And We made in it means of sustenance for you and others, who you do not provide for.",
+ 21,
+ "There is not any means ˹of sustenance˺ whose reserves We do not hold, only bringing it forth in precise measure.",
+ 22,
+ "We send fertilizing winds, and bring down rain from the sky for you to drink. It is not you who hold its reserves.",
+ 23,
+ "Surely it is We Who give life and cause death. And We are the ˹Eternal˺ Successor.",
+ 24,
+ "We certainly know those who have gone before you and those who will come after ˹you˺.",
+ 25,
+ "Surely your Lord ˹alone˺ will gather them together ˹for judgment˺. He is truly All-Wise, All-Knowing.",
+ 26,
+ "Indeed, We created man from sounding clay moulded from black mud.",
+ 27,
+ "As for the jinn, We created them earlier from smokeless fire.",
+ 28,
+ "˹Remember, O Prophet˺ when your Lord said to the angels, “I am going to create a human being from sounding clay moulded from black mud.",
+ 29,
+ "So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him.”",
+ 30,
+ "So the angels prostrated all together—",
+ 31,
+ "but not Iblîs, who refused to prostrate with the others.",
+ 32,
+ "Allah asked, “O Iblîs! What is the matter with you that you did not join others in prostration?”",
+ 33,
+ "He replied, “It is not for me to prostrate to a human You created from sounding clay moulded from black mud.”",
+ 34,
+ "Allah commanded, “Then get out of Paradise, for you are truly cursed.",
+ 35,
+ "And surely upon you is condemnation until the Day of Judgment.”",
+ 36,
+ "Satan appealed, “My Lord! Then delay my end until the Day of their resurrection.”",
+ 37,
+ "Allah said, “You will be delayed",
+ 38,
+ "until the appointed Day.”",
+ 39,
+ "Satan responded, “My Lord! For allowing me to stray I will surely tempt them on earth and mislead them all together,",
+ 40,
+ "except Your chosen servants among them.”",
+ 41,
+ "Allah said, “This is the Way, binding on Me:",
+ 42,
+ "you will certainly have no authority over My servants, except the deviant who follow you,",
+ 43,
+ "and surely Hell is their destined place, all together.",
+ 44,
+ "It has seven gates, to each a group of them is designated.”",
+ 45,
+ "Indeed, the righteous will be amid Gardens and springs.",
+ 46,
+ "˹It will be said to them,˺ “Enter in peace and security.”",
+ 47,
+ "We will remove whatever bitterness they had in their hearts. In a friendly manner, they will be on thrones, facing one another.",
+ 48,
+ "No fatigue will touch them there, nor will they ever be asked to leave.",
+ 49,
+ "Inform My servants ˹O Prophet˺ that I am truly the All-Forgiving, Most Merciful,",
+ 50,
+ "and that My torment is indeed the most painful.",
+ 51,
+ "And inform them ˹O Prophet˺ about Abraham’s guests",
+ 52,
+ "who entered upon him and greeted ˹him with˺, “Peace!” He ˹later˺ said, “Surely we are afraid of you.”",
+ 53,
+ "They reassured ˹him˺, “Do not be afraid! Surely we give you good news of a knowledgeable son.”",
+ 54,
+ "He wondered, “Do you give me good news despite my old age? What unlikely news!”",
+ 55,
+ "They responded, “We give you good news in all truth, so do not be one of those who despair.”",
+ 56,
+ "He exclaimed, “Who would despair of the mercy of their Lord except the misguided?”",
+ 57,
+ "He ˹then˺ added, “What is your mission, O messenger-angels?”",
+ 58,
+ "They replied, “We have actually been sent to a wicked people.",
+ 59,
+ "As for the family of Lot, we will certainly deliver them all,",
+ 60,
+ "except his wife. We have determined that she will be one of the doomed.”",
+ 61,
+ "So when the messengers came to the family of Lot,",
+ 62,
+ "he said, “You are surely an unfamiliar people!”",
+ 63,
+ "They responded, “We have come to you with that ˹torment˺ which they have doubted.",
+ 64,
+ "We come to you with the truth, and we are certainly truthful.",
+ 65,
+ "So travel with your family in the dark of night, and follow ˹closely˺ behind them. Do not let any of you look back, and go where you are commanded.”",
+ 66,
+ "We revealed to him this decree: “Those ˹sinners˺ will be uprooted in the morning.”",
+ 67,
+ "And there came the men of the city, rejoicing.",
+ 68,
+ "Lot pleaded, “Indeed, these are my guests, so do not embarrass me.",
+ 69,
+ "Fear Allah and do not humiliate me.”",
+ 70,
+ "They responded, “Have we not forbidden you from protecting anyone?”",
+ 71,
+ "He said, “O my people! Here are my daughters ˹so marry them˺ if you wish to do so.”",
+ 72,
+ "By your life ˹O Prophet˺, they certainly wandered blindly, intoxicated ˹by lust˺.",
+ 73,
+ "So the ˹mighty˺ blast overtook them at sunrise.",
+ 74,
+ "And We turned the cities ˹of Sodom and Gomorrah˺ upside down and rained upon them stones of baked clay.",
+ 75,
+ "Surely in this are signs for those who contemplate.",
+ 76,
+ "Their ruins still lie along a known route.",
+ 77,
+ "Surely in this is a sign for those who believe.",
+ 78,
+ "And the residents of the Forest were truly wrongdoers,",
+ 79,
+ "so We inflicted punishment upon them. The ruins of both nations still lie on a well-known road.",
+ 80,
+ "Indeed, the residents of the Stone Valley also denied the messengers.",
+ 81,
+ "We gave them Our signs, but they turned away from them.",
+ 82,
+ "They carved their homes in the mountains, feeling secure.",
+ 83,
+ "But the ˹mighty˺ blast overtook them in the morning,",
+ 84,
+ "and all they achieved was of no help to them.",
+ 85,
+ "We have not created the heavens and the earth and everything in between except for a purpose. And the Hour is certain to come, so forgive graciously.",
+ 86,
+ "Surely your Lord is the Master Creator, All-Knowing.",
+ 87,
+ "We have certainly granted you the seven often-repeated verses and the great Quran.",
+ 88,
+ "Do not let your eyes crave the ˹fleeting˺ pleasures We have provided for some of the disbelievers, nor grieve for them. And be gracious to the believers.",
+ 89,
+ "And say, “I am truly sent with a clear warning”—",
+ 90,
+ "˹a warning˺ similar to what We sent to those who divided ˹the Scriptures˺,",
+ 91,
+ "who ˹now˺ accept parts of the Quran, rejecting others.",
+ 92,
+ "So by your Lord! We will certainly question them all",
+ 93,
+ "about what they used to do.",
+ 94,
+ "So proclaim what you have been commanded, and turn away from the polytheists.",
+ 95,
+ "Surely We will be sufficient for you against the mockers,",
+ 96,
+ "who set up ˹other˺ gods with Allah. They will soon come to know.",
+ 97,
+ "We certainly know that your heart is truly distressed by what they say.",
+ 98,
+ "So glorify the praises of your Lord and be one of those who ˹always˺ pray,",
+ 99,
+ "and worship your Lord until the inevitable comes your way."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/16.json b/share/quran-json/TheQuran/en/16.json
new file mode 100644
index 0000000..885b541
--- /dev/null
+++ b/share/quran-json/TheQuran/en/16.json
@@ -0,0 +1,273 @@
+[
+ {
+ "id": "16",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Nahl",
+ "translated_name": "The Bee",
+ "verse_count": 128,
+ "slug": "an-nahl",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1581,
+ 1604
+ ]
+ },
+ 1,
+ "The command of Allah is at hand, so do not hasten it. Glorified and Exalted is He above what they associate ˹with Him in worship˺!",
+ 2,
+ "He sends down the angels with revelation by His command to whoever He wills of His servants, ˹stating:˺ “Warn ˹humanity˺ that there is no god ˹worthy of worship˺ except Me, so be mindful of Me ˹alone˺.”",
+ 3,
+ "He created the heavens and the earth for a purpose. Exalted is He above what they associate with Him ˹in worship˺!",
+ 4,
+ "He created humans from a sperm-drop, then—behold!—they openly challenge ˹Him˺.",
+ 5,
+ "And He created the cattle for you as a source of warmth, food, and ˹many other˺ benefits.",
+ 6,
+ "They are also pleasing to you when you bring them home and when you take them out to graze.",
+ 7,
+ "And they carry your loads to ˹distant˺ lands which you could not otherwise reach without great hardship. Surely your Lord is Ever Gracious, Most Merciful.",
+ 8,
+ "˹He also created˺ horses, mules, and donkeys for your transportation and adornment. And He creates what you do not know.",
+ 9,
+ "It is upon Allah ˹alone˺ to ˹clearly˺ show the Straight Way. Other ways are deviant. Had He willed, He would have easily imposed guidance upon all of you.",
+ 10,
+ "He is the One Who sends down rain from the sky, from which you drink and by which plants grow for your cattle to graze.",
+ 11,
+ "With it He produces for you ˹various˺ crops, olives, palm trees, grapevines, and every type of fruit. Surely in this is a sign for those who reflect.",
+ 12,
+ "And He has subjected for your benefit the day and the night, the sun and the moon. And the stars have been subjected by His command. Surely in this are signs for those who understand.",
+ 13,
+ "And ˹He subjected˺ for you whatever He has created on earth of varying colours. Surely in this is a sign for those who are mindful.",
+ 14,
+ "And He is the One Who has subjected the sea, so from it you may eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through it, so you may seek His bounty and give thanks ˹to Him˺.",
+ 15,
+ "He has placed into the earth firm mountains, so it does not shake with you, as well as rivers, and pathways so you may find your way.",
+ 16,
+ "Also by landmarks and stars do people find their way.",
+ 17,
+ "Can the One Who creates be equal to those who do not? Will you not then be mindful?",
+ 18,
+ "If you tried to count Allah’s blessings, you would never be able to number them. Surely Allah is All-Forgiving, Most Merciful.",
+ 19,
+ "And Allah knows what you conceal and what you reveal.",
+ 20,
+ "But those ˹idols˺ they invoke besides Allah cannot create anything—they themselves are created.",
+ 21,
+ "They are dead, not alive—not even knowing when their followers will be resurrected.",
+ 22,
+ "Your God is ˹only˺ One God. As for those who do not believe in the Hereafter, their hearts are in denial, and they are too proud.",
+ 23,
+ "Without a doubt, Allah knows what they conceal and what they reveal. He certainly does not like those who are too proud.",
+ 24,
+ "And when it is said to them, “What has your Lord revealed?” They say, “Ancient fables!”",
+ 25,
+ "Let them bear their burdens in full on the Day of Judgment as well as some of the burdens of those they mislead without knowledge. Evil indeed is what they will bear!",
+ 26,
+ "Indeed, those before them had plotted, but Allah struck at the ˹very˺ foundation of their structure, so the roof collapsed on top of them, and the torment came upon them from where they did not expect.",
+ 27,
+ "Then on the Day of Judgment He will humiliate them and say, “Where are My ˹so-called˺ associate-gods for whose sake you used to oppose ˹the believers˺?” Those gifted with knowledge will say, “Surely disgrace and misery today are upon the disbelievers.”",
+ 28,
+ "Those whose souls the angels seize while they wrong themselves will then offer ˹full˺ submission ˹and say falsely,˺ “We did not do any evil.” ˹The angels will say,˺ “No! Surely Allah fully knows what you used to do.",
+ 29,
+ "So enter the gates of Hell, to stay there forever. Indeed, what an evil home for the arrogant!”",
+ 30,
+ "And ˹when˺ it is said to those mindful ˹of Allah˺, “What has your Lord revealed?” They say, “All the best!” For those who do good in this world, there is goodness. But far better is the ˹eternal˺ Home of the Hereafter. How excellent indeed is the home of the righteous:",
+ 31,
+ "the Gardens of Eternity which they will enter, under which rivers flow. In it they will have whatever they desire. This is how Allah rewards the righteous—",
+ 32,
+ "those whose souls the angels take while they are virtuous, saying ˹to them˺, “Peace be upon you! Enter Paradise for what you used to do.”",
+ 33,
+ "Are they only awaiting the coming of the angels or the command of your Lord ˹O Prophet˺? So were those before them. And Allah never wronged them, but it was they who wronged themselves.",
+ 34,
+ "Then the evil ˹consequences˺ of their deeds overtook them, and they were overwhelmed by what they used to ridicule.",
+ 35,
+ "The polytheists argue, “Had Allah willed, neither we nor our forefathers would have worshipped anything other than Him, nor prohibited anything without His command.” So did those before them. Is not the messengers’ duty only to deliver ˹the message˺ clearly?",
+ 36,
+ "We surely sent a messenger to every community, saying, “Worship Allah and shun false gods.” But some of them were guided by Allah, while others were destined to stray. So travel throughout the land and see the fate of the deniers!",
+ 37,
+ "Even though you ˹O Prophet˺ are keen on their guidance, Allah certainly does not guide those He leaves to stray, and they will have no helpers.",
+ 38,
+ "They swear by Allah their most solemn oaths that Allah will never raise the dead to life. Yes ˹He will˺! It is a true promise binding on Him, but most people do not know.",
+ 39,
+ "˹He will do that˺ to make clear to them what they disagreed on, and for the disbelievers to know that they were liars.",
+ 40,
+ "If We ever will something ˹to exist˺, all We say is: “Be!” And it is!",
+ 41,
+ "As for those who emigrated in ˹the cause of˺ Allah after being persecuted, We will surely bless them with a good home in this world. But the reward of the Hereafter is far better, if only they knew.",
+ 42,
+ "˹It is˺ they who have patiently endured, and in their Lord they put their trust.",
+ 43,
+ "We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.",
+ 44,
+ "˹We sent them˺ with clear proofs and divine Books. And We have sent down to you ˹O Prophet˺ the Reminder, so that you may explain to people what has been revealed for them, and perhaps they will reflect.",
+ 45,
+ "Do those who devise evil plots feel secure that Allah will not cause the earth to swallow them? Or that the torment will not come upon them in ways they cannot comprehend?",
+ 46,
+ "Or that He will not seize them while they go about ˹their day˺, for then they will have no escape?",
+ 47,
+ "Or that He will not destroy them gradually? But your Lord is truly Ever Gracious, Most Merciful.",
+ 48,
+ "Have they not considered how the shadows of everything Allah has created incline to the right and the left ˹as the sun moves˺, totally submitting to Allah in all humility?",
+ 49,
+ "And to Allah ˹alone˺ bows down ˹in submission˺ whatever is in the heavens and whatever is on the earth of living creatures, as do the angels—who are not too proud ˹to do so˺.",
+ 50,
+ "They fear their Lord above them, and do whatever they are commanded.",
+ 51,
+ "And Allah has said, “Do not take two gods. There is only One God. So be in awe of Me ˹alone˺.”",
+ 52,
+ "To Him belongs whatever is in the heavens and the earth, and to Him ˹alone˺ is the everlasting devotion. Will you then fear any other than Allah?",
+ 53,
+ "Whatever blessings you have are from Allah. Then whenever hardship touches you, to Him ˹alone˺ you cry ˹for help˺.",
+ 54,
+ "Then as soon as He removes the hardship from you, a group of you associates ˹others˺ with their Lord ˹in worship˺,",
+ 55,
+ "only returning Our favours with ingratitude. So enjoy yourselves, for you will soon know.",
+ 56,
+ "And they ˹even˺ assign to those ˹idols˺—who know nothing—a share of what We have provided for them. By Allah! You will certainly be questioned about whatever ˹lies˺ you used to fabricate ˹against Allah˺.",
+ 57,
+ "And they attribute ˹angels as˺ daughters to Allah—glory be to Him!—the opposite of what they desire for themselves.",
+ 58,
+ "Whenever one of them is given the good news of a baby girl, his face grows gloomy, as he suppresses his rage.",
+ 59,
+ "He hides himself from the people because of the bad news he has received. Should he keep her in disgrace, or bury her ˹alive˺ in the ground? Evil indeed is their judgment!",
+ 60,
+ "To those who disbelieve in the Hereafter belong all evil qualities, whereas to Allah belong the finest attributes. And He is the Almighty, All-Wise.",
+ 61,
+ "If Allah were to punish people ˹immediately˺ for their wrongdoing, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, they cannot delay it for a moment, nor could they advance it.",
+ 62,
+ "They attribute to Allah what they hate ˹for themselves˺, and their tongues utter the lie that they will have the finest reward. Without a doubt, for them is the Fire, where they will be abandoned.",
+ 63,
+ "By Allah! We have surely sent messengers to communities before you ˹O Prophet˺, but Satan made their misdeeds appealing to them. So he is their patron today, and they will suffer a painful punishment.",
+ 64,
+ "We have revealed to you the Book only to clarify for them what they differed about, and as a guide and mercy for those who believe.",
+ 65,
+ "And Allah sends down rain from the sky, giving life to the earth after its death. Surely in this is a sign for those who listen.",
+ 66,
+ "And there is certainly a lesson for you in cattle: We give you to drink of what is in their bellies, from between digested food and blood: pure milk, pleasant to drink.",
+ 67,
+ "And from the fruits of palm trees and grapevines you derive intoxicants as well as wholesome provision. Surely in this is a sign for those who understand.",
+ 68,
+ "And your Lord inspired the bees: “Make ˹your˺ homes in the mountains, the trees, and in what people construct,",
+ 69,
+ "and feed from ˹the flower of˺ any fruit ˹you please˺ and follow the ways your Lord has made easy for you.” From their bellies comes forth liquid of varying colours, in which there is healing for people. Surely in this is a sign for those who reflect.",
+ 70,
+ "Allah has created you, and then causes you to die. And some of you are left to reach the most feeble stage of life so that they may know nothing after having known much. Indeed, Allah is All-Knowing, Most Capable.",
+ 71,
+ "And Allah has favoured some of you over others in provision. But those who have been much favoured would not share their wealth with those ˹bondspeople˺ in their possession, making them their equals. Do they then deny Allah’s favours?",
+ 72,
+ "And Allah has made for you spouses of your own kind, and given you through your spouses children and grandchildren. And He has granted you good, lawful provisions. Are they then faithful to falsehood and ungrateful for Allah’s favours?",
+ 73,
+ "Yet they worship besides Allah those ˹idols˺ who do not afford them any provision from the heavens and the earth, nor do they have the power to.",
+ 74,
+ "So do not set up equals to Allah, for Allah certainly knows and you do not know.",
+ 75,
+ "Allah sets forth a parable: a slave who lacks all means, compared to a ˹free˺ man to whom We granted a good provision, of which he donates ˹freely,˺ openly and secretly. Are they equal? Praise be to Allah. In fact, most of them do not know.",
+ 76,
+ "And Allah sets forth a parable of two men: one of them is dumb, incapable of anything. He is a burden on his master. Wherever he is sent, he brings no good. Can such a person be equal to the one who commands justice and is on the Straight Path?",
+ 77,
+ "To Allah ˹alone˺ belongs ˹the knowledge of˺ the unseen in the heavens and the earth. Bringing about the Hour would only take the blink of an eye, or even less. Surely Allah is Most Capable of everything.",
+ 78,
+ "And Allah brought you out of the wombs of your mothers while you knew nothing, and gave you hearing, sight, and intellect so perhaps you would be thankful.",
+ 79,
+ "Have they not seen the birds glide in the open sky? None holds them up except Allah. Surely in this are signs for those who believe.",
+ 80,
+ "And Allah has made your homes a place to rest, and has given you tents from the hide of animals, light to handle when you travel and when you camp. And out of their wool, fur, and hair He has given you furnishings and goods for a while.",
+ 81,
+ "And Allah has provided you shade out of what He created, and has given you shelter in the mountains. He has also provided you with clothes protecting you from the heat ˹and cold˺, and armour shielding you in battle. This is how He perfects His favour upon you, so perhaps you will ˹fully˺ submit ˹to Him˺.",
+ 82,
+ "But if they turn away, then your duty ˹O Prophet˺ is only to deliver ˹the message˺ clearly.",
+ 83,
+ "They are aware of Allah’s favours, but still deny them. And most of them are ˹truly˺ ungrateful.",
+ 84,
+ "˹Consider, O Prophet,˺ the Day We will call ˹a prophet as˺ a witness from every faith-community. Then the disbelievers will neither be allowed to plead nor appease ˹their Lord˺.",
+ 85,
+ "And when the wrongdoers face the punishment, it will not be lightened for them, nor will they be delayed ˹from it˺.",
+ 86,
+ "And when the polytheists see their associate-gods, they will say, “Our Lord! These are our associate-gods that we used to invoke besides You.” Their gods will throw a rebuttal at them, ˹saying,˺ “You are definitely liars.”",
+ 87,
+ "They will offer ˹full˺ submission to Allah on that Day, and whatever ˹gods˺ they fabricated will fail them.",
+ 88,
+ "For those who disbelieve and hinder ˹others˺ from the Way of Allah, We will add more punishment to their punishment for all the corruption they spread.",
+ 89,
+ "˹Consider, O Prophet,˺ the Day We will call against every faith-community a witness of their own. And We will call you to be a witness against these ˹people of yours˺. We have revealed to you the Book as an explanation of all things, a guide, a mercy, and good news for those who ˹fully˺ submit.",
+ 90,
+ "Indeed, Allah commands justice, grace, as well as courtesy to close relatives. He forbids indecency, wickedness, and aggression. He instructs you so perhaps you will be mindful.",
+ 91,
+ "Honour Allah’s covenant when you make a pledge, and do not break your oaths after confirming them, having made Allah your guarantor. Surely Allah knows all you do.",
+ 92,
+ "Do not be like the woman who ˹foolishly˺ unravels her yarn after it is firmly spun, by taking your oaths as a means of deceiving one another in favour of a stronger group. Surely Allah tests you through this. And on the Day of Judgment He will certainly make your differences clear to you.",
+ 93,
+ "Had Allah willed, He could have easily made you one community ˹of believers˺, but He leaves to stray whoever He wills and guides whoever He wills. And you will certainly be questioned about what you used to do.",
+ 94,
+ "And do not take your oaths as a means of deceiving one another or your feet will slip after they have been firm. Then you will taste the evil ˹consequences˺ of hindering ˹others˺ from the Way of Allah, and you will suffer a tremendous punishment.",
+ 95,
+ "And do not trade Allah’s covenant for a fleeting gain. What is with Allah is certainly far better for you, if only you knew.",
+ 96,
+ "Whatever you have will end, but whatever Allah has is everlasting. And We will certainly reward the steadfast according to the best of their deeds.",
+ 97,
+ "Whoever does good, whether male or female, and is a believer, We will surely bless them with a good life, and We will certainly reward them according to the best of their deeds.",
+ 98,
+ "When you recite the Quran, seek refuge with Allah from Satan, the accursed.",
+ 99,
+ "He certainly has no authority over those who believe and put their trust in their Lord.",
+ 100,
+ "His authority is only over those who take him as a patron and who—under his influence—associate ˹others˺ with Allah ˹in worship˺.",
+ 101,
+ "When We replace a verse with another—and Allah knows best what He reveals—they say, “You ˹Muḥammad˺ are just a fabricator.” In fact, most of them do not know.",
+ 102,
+ "Say, “The holy spirit has brought it down from your Lord with the truth to reassure the believers, and as a guide and good news for those who submit ˹to Allah˺.”",
+ 103,
+ "And We surely know that they say, “No one is teaching him except a human.” But the man they refer to speaks a foreign tongue, whereas this ˹Quran˺ is ˹in˺ eloquent Arabic.",
+ 104,
+ "Surely those who do not believe in Allah’s revelations will never be guided by Allah, and they will suffer a painful punishment.",
+ 105,
+ "No one fabricates lies except those who disbelieve in Allah’s revelations, and it is they who are the ˹true˺ liars.",
+ 106,
+ "Whoever disbelieves in Allah after their belief—not those who are forced while their hearts are firm in faith, but those who embrace disbelief wholeheartedly—they will be condemned by Allah and suffer a tremendous punishment.",
+ 107,
+ "This is because they prefer the life of this world over the Hereafter. Surely Allah never guides those who ˹choose to˺ disbelieve.",
+ 108,
+ "They are the ones whose hearts, ears, and eyes are sealed by Allah, and it is they who are ˹truly˺ heedless.",
+ 109,
+ "Without a doubt, they will be the losers in the Hereafter.",
+ 110,
+ "As for those who emigrated after being compelled ˹to renounce Islam˺, then struggled ˹in Allah’s cause˺, and persevered, your Lord ˹O Prophet˺ is truly All-Forgiving, Most Merciful after all.",
+ 111,
+ "˹Consider˺ the Day ˹when˺ every soul will come pleading for itself, and each will be paid in full for what it did, and none will be wronged.",
+ 112,
+ "And Allah sets forth the example of a society which was safe and at ease, receiving its provision in abundance from all directions. But its people met Allah’s favours with ingratitude, so Allah made them taste the clutches of hunger and fear for their misdeeds.",
+ 113,
+ "A messenger of their own actually did come to them, but they denied him. So the torment overtook them while they persisted in wrongdoing.",
+ 114,
+ "So eat from the good, lawful things which Allah has provided for you, and be grateful for Allah’s favours, if you ˹truly˺ worship Him ˹alone˺.",
+ 115,
+ "He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely Allah is All-Forgiving, Most Merciful.",
+ 116,
+ "Do not falsely declare with your tongues, “This is lawful, and that is unlawful,” ˹only˺ fabricating lies against Allah. Indeed, those who fabricate lies against Allah will never succeed.",
+ 117,
+ "˹It is only˺ a brief enjoyment, then they will suffer a painful punishment.",
+ 118,
+ "To the Jews, We have forbidden what We related to you before. We did not wrong them, but it was they who wronged themselves.",
+ 119,
+ "As for those who commit evil ignorantly ˹or recklessly˺, then repent afterwards and mend their ways, then your Lord is surely All-Forgiving, Most Merciful.",
+ 120,
+ "Indeed, Abraham was a model of excellence: devoted to Allah, ˹perfectly˺ upright—not a polytheist—",
+ 121,
+ "˹utterly˺ grateful for Allah’s favours. ˹So˺ He chose him and guided him to the Straight Path.",
+ 122,
+ "We blessed him with all goodness in this world, and in the Hereafter he will certainly be among the righteous.",
+ 123,
+ "Then We revealed to you ˹O Prophet, saying˺: “Follow the faith of Abraham, the upright, who was not one of the polytheists.”",
+ 124,
+ "˹Honouring˺ the Sabbath was ordained only for those who disputed about Abraham. And surely your Lord will judge between them on the Day of Judgment regarding their disputes.",
+ 125,
+ "Invite ˹all˺ to the Way of your Lord with wisdom and kind advice, and only debate with them in the best manner. Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.",
+ 126,
+ "If you retaliate, then let it be equivalent to what you have suffered. But if you patiently endure, it is certainly best for those who are patient.",
+ 127,
+ "Be patient ˹O Prophet˺, for your patience is only with Allah’s help. Do not grieve over those ˹who disbelieve˺, nor be distressed by their schemes.",
+ 128,
+ "Surely Allah is with those who shun evil and who do good ˹deeds˺."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/17.json b/share/quran-json/TheQuran/en/17.json
new file mode 100644
index 0000000..2429d31
--- /dev/null
+++ b/share/quran-json/TheQuran/en/17.json
@@ -0,0 +1,241 @@
+[
+ {
+ "id": "17",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Isra",
+ "translated_name": "The Night Journey",
+ "verse_count": 111,
+ "slug": "al-isra",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1573,
+ 1587,
+ 1585,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "Glory be to the One Who took His servant ˹Muḥammad˺ by night from the Sacred Mosque to the Farthest Mosque whose surroundings We have blessed, so that We may show him some of Our signs. Indeed, He alone is the All-Hearing, All-Seeing.",
+ 2,
+ "And We gave Moses the Scripture and made it a guide for the Children of Israel, ˹stating:˺ “Do not take besides Me any other Trustee of Affairs,",
+ 3,
+ "˹O˺ descendants of those We carried with Noah ˹in the Ark˺! He was indeed a grateful servant.”",
+ 4,
+ "And We warned the Children of Israel in the Scripture, “You will certainly cause corruption in the land twice, and you will become extremely arrogant.",
+ 5,
+ "When the first of the two warnings would come to pass, We would send against you some of Our servants of great might, who would ravage your homes. This would be a warning fulfilled.",
+ 6,
+ "Then ˹after your repentance˺ We would give you the upper hand over them and aid you with wealth and offspring, causing you to outnumber them.",
+ 7,
+ "If you act rightly, it is for your own good, but if you do wrong, it is to your own loss. “And when the second warning would come to pass, your enemies would ˹be left to˺ totally disgrace you and enter the Temple ˹of Jerusalem˺ as they entered it the first time, and utterly destroy whatever would fall into their hands.",
+ 8,
+ "Perhaps your Lord will have mercy on you ˹if you repent˺, but if you return ˹to sin˺, We will return ˹to punishment˺. And We have made Hell a ˹permanent˺ confinement for the disbelievers.”",
+ 9,
+ "Surely this Quran guides to what is most upright, and gives good news to the believers—who do good—that they will have a mighty reward.",
+ 10,
+ "And ˹it warns˺ those who do not believe in the Hereafter ˹that˺ We have prepared for them a painful punishment.",
+ 11,
+ "And humans ˹swiftly˺ pray for evil as they pray for good. For humankind is ever hasty.",
+ 12,
+ "We made the day and night as two signs. So We made the sign of the night devoid of light, and We made the sign of the day ˹perfectly˺ bright, so that you may seek the bounty of your Lord and know the number of years and calculation ˹of time˺. And We have explained everything in detail.",
+ 13,
+ "We have bound every human’s destiny to their neck. And on the Day of Judgment We will bring forth to each ˹person˺ a record which they will find laid open.",
+ 14,
+ "˹And it will be said,˺ “Read your record. You ˹alone˺ are sufficient this Day to take account of yourself.”",
+ 15,
+ "Whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. No soul burdened with sin will bear the burden of another. And We would never punish ˹a people˺ until We have sent a messenger ˹to warn them˺.",
+ 16,
+ "Whenever We intend to destroy a society, We command its elite ˹to obey Allah˺ but they act rebelliously in it. So the decree ˹of punishment˺ is justified, and We destroy it utterly.",
+ 17,
+ "˹Imagine˺ how many peoples We have destroyed after Noah! And sufficient is your Lord as All-Aware and All-Seeing of the sins of His servants.",
+ 18,
+ "Whoever desires this fleeting world ˹alone˺, We hasten in it whatever We please to whoever We will; then We destine them for Hell, where they will burn, condemned and rejected.",
+ 19,
+ "But whoever desires the Hereafter and strives for it accordingly, and is a ˹true˺ believer, it is they whose striving will be appreciated.",
+ 20,
+ "We provide both the former and the latter from the bounty of your Lord. And the bounty of your Lord can never be withheld.",
+ 21,
+ "See how We have favoured some over others ˹in this life˺, but the Hereafter is certainly far greater in rank and in favour.",
+ 22,
+ "Do not set up any other god with Allah, or you will end up condemned, abandoned.",
+ 23,
+ "For your Lord has decreed that you worship none but Him. And honour your parents. If one or both of them reach old age in your care, never say to them ˹even˺ ‘ugh,’ nor yell at them. Rather, address them respectfully.",
+ 24,
+ "And be humble with them out of mercy, and pray, “My Lord! Be merciful to them as they raised me when I was young.”",
+ 25,
+ "Your Lord knows best what is within yourselves. If you are righteous, He is certainly All-Forgiving to those who ˹constantly˺ turn to Him.",
+ 26,
+ "Give to close relatives their due, as well as the poor and ˹needy˺ travellers. And do not spend wastefully.",
+ 27,
+ "Surely the wasteful are ˹like˺ brothers to the devils. And the Devil is ever ungrateful to his Lord.",
+ 28,
+ "But if you must turn them down ˹because you lack the means to give˺—while hoping to receive your Lord’s bounty—then ˹at least˺ give them a kind word.",
+ 29,
+ "Do not be so tight-fisted, for you will be blameworthy; nor so open-handed, for you will end up in poverty.",
+ 30,
+ "Surely your Lord gives abundant or limited provisions to whoever He wills. He is certainly All-Aware, All-Seeing of His servants.",
+ 31,
+ "Do not kill your children for fear of poverty. We provide for them and for you. Surely killing them is a heinous sin.",
+ 32,
+ "Do not go near adultery. It is truly a shameful deed and an evil way.",
+ 33,
+ "Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. If anyone is killed unjustly, We have given their heirs the authority, but do not let them exceed limits in retaliation, for they are already supported ˹by law˺.",
+ 34,
+ "Do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Honour ˹your˺ pledges, for you will surely be accountable for them.",
+ 35,
+ "Give in full when you measure, and weigh with an even balance. That is fairest and best in the end.",
+ 36,
+ "Do not follow what you have no ˹sure˺ knowledge of. Indeed, all will be called to account for ˹their˺ hearing, sight, and intellect.",
+ 37,
+ "And do not walk on the earth arrogantly. Surely you can neither crack the earth nor stretch to the height of the mountains.",
+ 38,
+ "The violation of any of these ˹commandments˺ is detestable to your Lord.",
+ 39,
+ "This is part of the wisdom which your Lord has revealed to you ˹O Prophet˺. And do not set up any other god with Allah ˹O humanity˺, or you will be cast into Hell, blameworthy, rejected.",
+ 40,
+ "Has your Lord favoured you ˹pagans˺ with sons and taken angels as ˹His˺ daughters? You are truly making an outrageous claim.",
+ 41,
+ "We have surely varied ˹the signs˺ in this Quran so perhaps they may be mindful, but it only drives them farther away.",
+ 42,
+ "Say, ˹O Prophet,˺ “Had there been other gods besides Him—as they claim—then they would have certainly sought a way to ˹challenge˺ the Lord of the Throne.”",
+ 43,
+ "Glorified and Highly Exalted is He above what they claim!",
+ 44,
+ "The seven heavens, the earth, and all those in them glorify Him. There is not a single thing that does not glorify His praises—but you ˹simply˺ cannot comprehend their glorification. He is indeed Most Forbearing, All-Forgiving.",
+ 45,
+ "When you ˹O Prophet˺ recite the Quran, We put a hidden barrier between you and those who do not believe in the Hereafter.",
+ 46,
+ "We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. And when you mention your Lord alone in the Quran, they turn their backs in aversion.",
+ 47,
+ "We know best how they listen to your recitation and what they say privately—when the wrongdoers say, “You would only be following a bewitched man.”",
+ 48,
+ "See how they call you names ˹O Prophet˺! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.",
+ 49,
+ "And they say ˹mockingly˺, “When we are reduced to bones and ashes, will we really be raised as a new creation?”",
+ 50,
+ "Say, ˹O Prophet,˺ “˹Yes, even if˺ you become stones, or iron,",
+ 51,
+ "or whatever you think is harder to bring to life!” Then they will ask ˹you˺, “Who will bring us back ˹to life˺?” Say, “The One Who created you the first time.” They will then shake their heads at you and ask, “When will that be?” Say, “Perhaps it is soon!”",
+ 52,
+ "On the Day He will call you, you will ˹instantly˺ respond by praising Him, thinking you had remained ˹in the world˺ only for a little while.",
+ 53,
+ "Tell My ˹believing˺ servants to say only what is best. Satan certainly seeks to sow discord among them. Satan is indeed a sworn enemy to humankind.",
+ 54,
+ "Your Lord knows you best. He may have mercy on you if He wills, or punish you if He wills. We have not sent you ˹O Prophet˺ as a keeper over them.",
+ 55,
+ "Your Lord knows best all those in the heavens and the earth. And We have surely favoured some prophets above others, and to David We gave the Psalms. ",
+ 56,
+ "Say, ˹O Prophet,˺ “Invoke those you claim ˹to be divine˺ besides Him—they do not have the power to undo harm from you or transfer it ˹to someone else˺.”",
+ 57,
+ "˹Even˺ the closest ˹to Allah˺ of those invoked would be seeking a way to their Lord, hoping for His mercy, and fearing His punishment. Indeed, your Lord’s torment is fearsome.",
+ 58,
+ "There is not a ˹wicked˺ society that We will not destroy or punish with a severe torment before the Day of Judgment. That is written in the Record.",
+ 59,
+ "Nothing keeps Us from sending the ˹demanded˺ signs except that they had ˹already˺ been denied by earlier peoples. And We gave Thamûd the she-camel as a clear sign, but they wrongfully rejected it. We only send the signs as a warning.",
+ 60,
+ "And ˹remember, O Prophet˺ when We told you, “Certainly your Lord encompasses the people.” And We have made what We brought you to see as well as the cursed tree ˹mentioned˺ in the Quran only as a test for the people. We keep warning them, but it only increases them greatly in defiance.",
+ 61,
+ "And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who protested, “Should I prostrate to the one You have created from mud?”",
+ 62,
+ "Adding, “Do you see this one you honoured above me? If you delay my end until the Day of Judgment, I will certainly take hold of his descendants, except for a few.”",
+ 63,
+ "Allah responded, “Be gone! Whoever of them follows you, Hell will surely be the reward for all of you—an ample reward.",
+ 64,
+ "And incite whoever you can of them with your voice, mobilize against them all your cavalry and infantry, manipulate them in their wealth and children, and make them promises.” But Satan promises them nothing but delusion.",
+ 65,
+ "˹Allah added,˺ “You will truly have no authority over My ˹faithful˺ servants.” And sufficient is your Lord as a Guardian.",
+ 66,
+ "It is your Lord Who steers the ships for you through the sea, so that you may seek His bounty. Surely He is ever Merciful to you.",
+ 67,
+ "When you are touched with hardship at sea, you ˹totally˺ forget all ˹the gods˺ you ˹normally˺ invoke, except Him. But when He delivers you ˹safely˺ to shore, you turn away. Humankind is ever ungrateful.",
+ 68,
+ "Do you feel secure that He will not cause the land to swallow you up, or unleash upon you a storm of stones? Then you will find none to protect you.",
+ 69,
+ "Or do you feel secure that He will not send you back to sea once again, and send upon you a violent storm, drowning you for your denial? Then you will find none to avenge you against Us.",
+ 70,
+ "Indeed, We have dignified the children of Adam, carried them on land and sea, granted them good and lawful provisions, and privileged them far above many of Our creatures.",
+ 71,
+ "˹Beware of˺ the Day We will summon every people with their leader. So whoever will be given their record in their right hand will read it ˹happily˺ and will not be wronged ˹even by the width of˺ the thread of a date stone.",
+ 72,
+ "But whoever is blind ˹to the truth˺ in this ˹world˺ will be blind in the Hereafter, and ˹even˺ far more astray from the ˹Right˺ Way.",
+ 73,
+ "They definitely ˹thought they˺ were about to lure you away from what We have revealed to you ˹O Prophet˺, hoping that you would attribute something else to Us falsely—and then they would have certainly taken you as a close friend.",
+ 74,
+ "Had We not made you steadfast, you probably would have inclined to them a little,",
+ 75,
+ "and then We truly would have made you taste double ˹punishment˺ both in this life and after death, and you would have found no helper against Us.",
+ 76,
+ "They were about to intimidate you to drive you out of the land ˹of Mecca˺, but then they would not have survived after you ˹had left˺ except for a little while.",
+ 77,
+ "˹This has been˺ Our way with the messengers We sent before you. And you will never find any change in Our way.",
+ 78,
+ "Observe the prayer from the decline of the sun until the darkness of the night and the dawn prayer, for certainly the dawn prayer is witnessed ˹by angels˺.",
+ 79,
+ "And rise at ˹the last˺ part of the night, offering additional prayers, so your Lord may raise you to a station of praise.",
+ 80,
+ "And say, “My Lord! Grant me an honourable entrance and an honourable exit and give me a supporting authority from Yourself.”",
+ 81,
+ "And declare, “The truth has come and falsehood has vanished. Indeed, falsehood is bound to vanish.”",
+ 82,
+ "We send down the Quran as a healing and mercy for the believers, but it only increases the wrongdoers in loss.",
+ 83,
+ "When We grant people Our favours, they turn away, acting arrogantly. But when touched with evil, they lose all hope.",
+ 84,
+ "Say, ˹O Prophet,˺ “Everyone acts in their own way. But your Lord knows best whose way is rightly guided.”",
+ 85,
+ "They ask you ˹O Prophet˺ about the spirit. Say, “Its nature is known only to my Lord, and you ˹O humanity˺ have been given but little knowledge.”",
+ 86,
+ "If We willed, We could have certainly taken away what We have revealed to you ˹O Prophet˺—then you would find none to guarantee its return from Us—",
+ 87,
+ "had it not been for the mercy of your Lord. Indeed, His favour upon you is immense.",
+ 88,
+ "Say, ˹O Prophet,˺ “If ˹all˺ humans and jinn were to come together to produce the equivalent of this Quran, they could not produce its equal, no matter how they supported each other.”",
+ 89,
+ "And We have truly set forth every ˹kind of˺ lesson for humanity in this Quran, yet most people persist in disbelief.",
+ 90,
+ "They challenge ˹the Prophet˺, “We will never believe in you until you cause a spring to gush forth from the earth for us,",
+ 91,
+ "or until you have a garden of palm trees and vineyards, and cause rivers to flow abundantly in it,",
+ 92,
+ "or cause the sky to fall upon us in pieces, as you have claimed, or bring Allah and the angels before us, face to face,",
+ 93,
+ "or until you have a house of gold, or you ascend into heaven—and even then we will not believe in your ascension until you bring down to us a book that we can read.” Say, “Glory be to my Lord! Am I not only a human messenger?”",
+ 94,
+ "And nothing has prevented people from believing when guidance comes to them except their protest: “Has Allah sent a human as a messenger?”",
+ 95,
+ "Say, ˹O Prophet,˺ “Had there been angels walking the earth, well settled, We would have surely sent down for them an angel from heaven as a messenger.”",
+ 96,
+ "Say, “Sufficient is Allah as a Witness between me and you. He is certainly All-Knowing, All-Seeing of His servants.”",
+ 97,
+ "Whoever Allah guides is truly guided. And whoever He leaves to stray, you will find no guardians for them besides Him. And We will drag them on their faces on the Day of Judgment—deaf, dumb, and blind. Hell will be their home. Whenever it dies down, We will flare it up for them.",
+ 98,
+ "That is their reward for rejecting Our signs and asking ˹mockingly˺, “When we are reduced to bones and ashes, will we really be raised as a new creation?”",
+ 99,
+ "Have they not realized that Allah, Who created the heavens and the earth, can ˹easily˺ re-create them? He has ˹already˺ set for them a time, about which there is no doubt. But the wrongdoers persist in denial.",
+ 100,
+ "Say ˹to them, O Prophet˺, “Even if you were to possess the ˹infinite˺ treasuries of my Lord’s mercy, then you would certainly withhold ˹them˺, fearing they would run out—for humankind is ever stingy!”",
+ 101,
+ "We surely gave Moses nine clear signs. ˹You, O Prophet, can˺ ask the Children of Israel. When Moses came to them, Pharaoh said to him, “I really think that you, O Moses, are bewitched.”",
+ 102,
+ "Moses replied, “You know well that none has sent these ˹signs˺ down except the Lord of the heavens and the earth as insights. And I really think that you, O Pharaoh, are doomed.”",
+ 103,
+ "So Pharaoh wanted to scare the Israelites out of the land ˹of Egypt˺, but We drowned him and all of those with him.",
+ 104,
+ "And We said to the Children of Israel after Pharaoh, “Reside in the land, but when the promise of the Hereafter comes to pass, We will bring you all together.”",
+ 105,
+ "We have sent down the Quran in truth, and with the truth it has come down. We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.",
+ 106,
+ "˹It is˺ a Quran We have revealed in stages so that you may recite it to people at a deliberate pace. And We have sent it down in successive revelations.",
+ 107,
+ "Say, ˹O Prophet,˺ “Believe in this ˹Quran˺, or do not. Indeed, when it is recited to those who were gifted with knowledge before it ˹was revealed˺, they fall upon their faces in prostration,",
+ 108,
+ "and say, ‘Glory be to our Lord! Surely the promise of our Lord has been fulfilled.’",
+ 109,
+ "And they fall down upon their faces weeping, and it increases them in humility.”",
+ 110,
+ "Say, ˹O Prophet,˺ “Call upon Allah or call upon the Most Compassionate—whichever you call, He has the Most Beautiful Names.” Do not recite your prayers too loudly or silently, but seek a way between.",
+ 111,
+ "And say, “All praise is for Allah, Who has never had ˹any˺ offspring; nor does He have a partner in ˹governing˺ the kingdom; nor is He pathetic, needing a protector. And revere Him immensely.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/18.json b/share/quran-json/TheQuran/en/18.json
new file mode 100644
index 0000000..23ddbfa
--- /dev/null
+++ b/share/quran-json/TheQuran/en/18.json
@@ -0,0 +1,237 @@
+[
+ {
+ "id": "18",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Kahf",
+ "translated_name": "The Cave",
+ "verse_count": 110,
+ "slug": "al-kahf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1603,
+ 1607,
+ 1601
+ ]
+ },
+ 1,
+ "All praise is for Allah Who has revealed the Book to His servant, allowing no crookedness in it,",
+ 2,
+ "˹making it˺ perfectly upright, to warn ˹the disbelievers˺ of a severe torment from Him; to give good news to the believers—who do good—that they will have a fine reward,",
+ 3,
+ "in which they will remain forever;",
+ 4,
+ "and to warn those who claim, “Allah has offspring.”",
+ 5,
+ "They have no knowledge of this, nor did their forefathers. What a terrible claim that comes out of their mouths! They say nothing but lies.",
+ 6,
+ "Now, perhaps you ˹O Prophet˺ will grieve yourself to death over their denial, if they ˹continue to˺ disbelieve in this message.",
+ 7,
+ "We have indeed made whatever is on earth as an adornment for it, in order to test which of them is best in deeds.",
+ 8,
+ "And We will certainly reduce whatever is on it to barren ground.",
+ 9,
+ "Have you ˹O Prophet˺ thought that the people of the cave and the plaque were ˹the only˺ wonders of Our signs?",
+ 10,
+ "˹Remember˺ when those youths took refuge in the cave, and said, “Our Lord! Grant us mercy from Yourself and guide us rightly through our ordeal.”",
+ 11,
+ "So We caused them to fall into a dead sleep in the cave for many years,",
+ 12,
+ "then We raised them so We may show which of the two groups would make a better estimation of the length of their stay. ",
+ 13,
+ "We relate to you ˹O Prophet˺ their story in truth. They were youths who truly believed in their Lord, and We increased them in guidance.",
+ 14,
+ "And We strengthened their hearts when they stood up and declared, “Our Lord is the Lord of the heavens and the earth. We will never call upon any god besides Him, or we would truly be uttering an outrageous lie.”",
+ 15,
+ "˹Then they said to one another,˺ “These people of ours have taken gods besides Him. Why do they not produce a clear proof of them? Who then does more wrong than those who fabricate lies against Allah?",
+ 16,
+ "Since you have distanced yourselves from them and what they worship besides Allah, take refuge in the cave. Your Lord will extend His mercy to you and accommodate you in your ordeal.”",
+ 17,
+ "And you would have seen the sun, as it rose, inclining away from their cave to the right, and as it set, declining away from them to the left, while they lay in its open space. That is one of the signs of Allah. Whoever Allah guides is truly guided. But whoever He leaves to stray, you will never find for them a guiding mentor.",
+ 18,
+ "And you would have thought they were awake, though they were asleep. We turned them over, to the right and left, while their dog stretched his forelegs at the entrance. Had you looked at them, you would have certainly fled away from them, filled with horror.",
+ 19,
+ "And so We awakened them so that they might question one another. One of them exclaimed, “How long have you remained ˹asleep˺?” Some replied, “Perhaps a day, or part of a day.” They said ˹to one another˺, “Your Lord knows best how long you have remained. So send one of you with these silver coins of yours to the city, and let him find which food is the purest, and then bring you provisions from it. Let him be ˹exceptionally˺ cautious, and do not let him give you away.",
+ 20,
+ "For, indeed, if they find out about you, they will stone you ˹to death˺, or force you back into their faith, and then you will never succeed.”",
+ 21,
+ "That is how We caused them to be discovered so that their people might know that Allah’s promise ˹of resurrection˺ is true and that there is no doubt about the Hour. When the people disputed with each other about the case of the youth ˹after their death˺, some proposed, “Build a structure around them. Their Lord knows best about them.” Those who prevailed in the matter said, “We will surely build a place of worship over them.”",
+ 22,
+ "Some will say, “They were three, their dog was the fourth,” while others will say, “They were five, their dog was the sixth,” ˹only˺ guessing blindly. And others will say, “They were seven and their dog was the eighth.” Say, ˹O Prophet,˺ “My Lord knows best their ˹exact˺ number. Only a few people know as well.” So do not argue about them except with sure knowledge, nor consult any of those ˹who debate˺ about them.",
+ 23,
+ "And never say of anything, “I will definitely do this tomorrow,”",
+ 24,
+ "without adding, “if Allah so wills!” But if you forget, then remember your Lord, and say, “I trust my Lord will guide me to what is more right than this.”",
+ 25,
+ "They had remained in their cave for three hundred years, adding nine.",
+ 26,
+ "Say, ˹O Prophet,˺ “Allah knows best how long they stayed. With Him ˹alone˺ is ˹the knowledge of˺ the unseen of the heavens and the earth. How perfectly He hears and sees! They have no guardian besides Him, and He shares His command with none.”",
+ 27,
+ "Recite what has been revealed to you from the Book of your Lord. None can change His Words, nor can you find any refuge besides Him.",
+ 28,
+ "And patiently stick with those who call upon their Lord morning and evening, seeking His pleasure. Do not let your eyes look beyond them, desiring the luxuries of this worldly life. And do not obey those whose hearts We have made heedless of Our remembrance, who follow ˹only˺ their desires and whose state is ˹total˺ loss.",
+ 29,
+ "And say, ˹O Prophet,˺ “˹This is˺ the truth from your Lord. Whoever wills let them believe, and whoever wills let them disbelieve.” Surely We have prepared for the wrongdoers a Fire whose walls will ˹completely˺ surround them. When they cry for aid, they will be aided with water like molten metal, which will burn ˹their˺ faces. What a horrible drink! And what a terrible place to rest!",
+ 30,
+ "As for those who believe and do good, We certainly never deny the reward of those who are best in deeds.",
+ 31,
+ "It is they who will have the Gardens of Eternity, with rivers flowing under their feet. There they will be adorned with bracelets of gold, and wear green garments of fine silk and rich brocade, reclining there on ˹canopied˺ couches. What a marvellous reward! And what a fabulous place to rest!",
+ 32,
+ "Give them ˹O Prophet˺ an example of two men. To ˹the disbelieving˺ one We gave two gardens of grapevines, which We surrounded with palm trees and placed ˹various˺ crops in between.",
+ 33,
+ "Each garden yielded ˹all˺ its produce, never falling short. And We caused a river to flow between them.",
+ 34,
+ "And he had other resources ˹as well˺. So he boasted to a ˹poor˺ companion of his, while conversing with him, “I am greater than you in wealth and superior in manpower.”",
+ 35,
+ "And he entered his property, while wronging his soul, saying, “I do not think this will ever perish,",
+ 36,
+ "nor do I think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, I will definitely get a far better outcome than ˹all˺ this.”",
+ 37,
+ "His ˹believing˺ companion replied, while conversing with him, “Do you disbelieve in the One Who created you from dust, then ˹developed you˺ from a sperm-drop, then formed you into a man?",
+ 38,
+ "But as for me: He is Allah, my Lord, and I will never associate anyone with my Lord ˹in worship˺.",
+ 39,
+ "If only you had said, upon entering your property, ‘This is what Allah has willed! There is no power except with Allah!’ Even though you see me inferior to you in wealth and offspring,",
+ 40,
+ "perhaps my Lord will grant me ˹something˺ better than your garden, and send down upon your garden a thunderbolt from the sky, turning it into a barren waste.",
+ 41,
+ "Or its water may sink ˹into the earth˺, and then you will never be able to seek it out.”",
+ 42,
+ "And so all his produce was ˹totally˺ ruined, so he started to wring his hands for all he had spent on it, while it had collapsed on its trellises. He cried, “Alas! I wish I had never associated anyone with my Lord ˹in worship˺!”",
+ 43,
+ "And he had no manpower to help him against Allah, nor could he ˹even˺ help himself.",
+ 44,
+ "At this time, support comes ˹only˺ from Allah—the True ˹Lord˺. He is best in reward and best in outcome.",
+ 45,
+ "And give them a parable of this worldly life. ˹It is˺ like the plants of the earth, thriving when sustained by the rain We send down from the sky. Then they ˹soon˺ turn into chaff scattered by the wind. And Allah is fully capable of ˹doing˺ all things.",
+ 46,
+ "Wealth and children are the adornment of this worldly life, but the everlasting good deeds are far better with your Lord in reward and in hope. ",
+ 47,
+ "˹Beware of˺ the Day We will blow the mountains away, and you will see the earth laid bare. And We will gather all ˹humankind˺, leaving none behind.",
+ 48,
+ "They will be presented before your Lord in rows, ˹and the deniers will be told,˺ “You have surely returned to Us ˹all alone˺ as We created you the first time, although you ˹always˺ claimed that We would never appoint a time for your return.”",
+ 49,
+ "And the record ˹of deeds˺ will be laid ˹open˺, and you will see the wicked in fear of what is ˹written˺ in it. They will cry, “Woe to us! What kind of record is this that does not leave any sin, small or large, unlisted?” They will find whatever they did present ˹before them˺. And your Lord will never wrong anyone.",
+ 50,
+ "And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who was one of the jinn, but he rebelled against the command of his Lord. Would you then take him and his descendants as patrons instead of Me, although they are your enemy? What an evil alternative for the wrongdoers ˹to choose˺!",
+ 51,
+ "I never called them to witness the creation of the heavens and the earth or ˹even˺ their own creation, nor would I take the misleaders as helpers.",
+ 52,
+ "And ˹beware of˺ the Day He will say, “Call upon those you claimed were My associate-gods.” So they will call them, but will receive no response. And We will make them ˹all˺ share in the same doom.",
+ 53,
+ "The wicked will see the Fire and realize that they are bound to fall into it, and will find no way to avoid it.",
+ 54,
+ "We have surely set forth in this Quran every ˹kind of˺ lesson for people, but humankind is the most argumentative of all beings.",
+ 55,
+ "And nothing prevents people from believing when guidance comes to them and from seeking their Lord’s forgiveness except ˹their demand˺ to meet the same fate of earlier deniers or that the torment would confront them face to face.",
+ 56,
+ "We do not send the messengers except as deliverers of good news and warners. But the disbelievers argue in falsehood, ˹hoping˺ to discredit the truth with it, and make a mockery of My revelations and warnings.",
+ 57,
+ "And who does more wrong than those who, when reminded of their Lord’s revelations, turn away from them and forget what their own hands have done? We have certainly cast veils over their hearts—leaving them unable to comprehend this ˹Quran˺—and deafness in their ears. And if you ˹O Prophet˺ invite them to ˹true˺ guidance, they will never be ˹rightly˺ guided.",
+ 58,
+ "Your Lord is the All-Forgiving, Full of Mercy. If He were to seize them ˹immediately˺ for what they commit, He would have certainly hastened their punishment. But they have an appointed time, from which they will find no refuge.",
+ 59,
+ "Those ˹are the˺ societies We destroyed when they persisted in wrong, and We had set a time for their destruction.",
+ 60,
+ "And ˹remember˺ when Moses said to his young assistant, “I will never give up until I reach the junction of the two seas, even if I travel for ages.”",
+ 61,
+ "But when they ˹finally˺ reached the point where the seas met, they forgot their ˹salted˺ fish, and it made its way into the sea, slipping away ˹wondrously˺.",
+ 62,
+ "When they had passed further, he said to his assistant, “Bring us our meal! We have certainly been exhausted by today’s journey.”",
+ 63,
+ "He replied, “Do you remember when we rested by the rock? ˹That is when˺ I forgot the fish. None made me forget to mention this except Satan. And the fish made its way into the sea miraculously.”",
+ 64,
+ "Moses responded, “That is ˹exactly˺ what we were looking for.” So they returned, retracing their footsteps.",
+ 65,
+ "There they found a servant of Ours, to whom We had granted mercy from Us and enlightened with knowledge of Our Own.",
+ 66,
+ "Moses said to him, “May I follow you, provided that you teach me some of the right guidance you have been taught?”",
+ 67,
+ "He said, “You certainly cannot be patient ˹enough˺ with me.",
+ 68,
+ "And how can you be patient with what is beyond your ˹realm of˺ knowledge?”",
+ 69,
+ "Moses assured ˹him˺, “You will find me patient, Allah willing, and I will not disobey any of your orders.”",
+ 70,
+ "He responded, “Then if you follow me, do not question me about anything until I ˹myself˺ clarify it for you.”",
+ 71,
+ "So they set out, but after they had boarded a ship, the man made a hole in it. Moses protested, “Have you done this to drown its people? You have certainly done a terrible thing!”",
+ 72,
+ "He replied, “Did I not say that you cannot have patience with me?”",
+ 73,
+ "Moses pleaded, “Excuse me for forgetting, and do not be hard on me.”",
+ 74,
+ "So they proceeded until they came across a boy, and the man killed him. Moses protested, “Have you killed an innocent soul, who killed no one? You have certainly done a horrible thing.”",
+ 75,
+ "He answered, “Did I not tell you that you cannot have patience with me?”",
+ 76,
+ "Moses replied, “If I ever question you about anything after this, then do not keep me in your company, for by then I would have given you enough of an excuse.”",
+ 77,
+ "So they moved on until they came to the people of a town. They asked them for food, but the people refused to give them hospitality. There they found a wall ready to collapse, so the man set it right. Moses protested, “If you wanted, you could have demanded a fee for this.”",
+ 78,
+ "He replied, “This is the parting of our ways. I will explain to you what you could not bear patiently.",
+ 79,
+ "“As for the ship, it belonged to some poor people, working at sea. So I intended to damage it, for there was a ˹tyrant˺ king ahead of them who seizes every ˹good˺ ship by force.",
+ 80,
+ "“And as for the boy, his parents were ˹true˺ believers, and we feared that he would pressure them into defiance and disbelief.",
+ 81,
+ "So we hoped that their Lord would give them another, more virtuous and caring in his place.",
+ 82,
+ "“And as for the wall, it belonged to two orphan boys in the city, and under the wall was a treasure that belonged to them, and their father had been a righteous man. So your Lord willed that these children should come of age and retrieve their treasure, as a mercy from your Lord. I did not do it ˹all˺ on my own. This is the explanation of what you could not bear patiently.” ",
+ 83,
+ "They ask you ˹O Prophet˺ about Ⱬul-Qarnain. Say, “I will relate to you something of his narrative.”",
+ 84,
+ "Surely We established him in the land, and gave him the means to all things.",
+ 85,
+ "So he travelled a course,",
+ 86,
+ "until he reached the setting ˹point˺ of the sun, which appeared to him to be setting in a spring of murky water, where he found some people. We said, “O Ⱬul-Qarnain! Either punish them or treat them kindly.”",
+ 87,
+ "He responded, “Whoever does wrong will be punished by us, then will be returned to their Lord, Who will punish them with a horrible torment.",
+ 88,
+ "As for those who believe and do good, they will have the finest reward, and we will assign them easy commands.”",
+ 89,
+ "Then he travelled a ˹different˺ course",
+ 90,
+ "until he reached the rising ˹point˺ of the sun. He found it rising on a people for whom We had provided no shelter from it.",
+ 91,
+ "So it was. And We truly had full knowledge of him.",
+ 92,
+ "Then he travelled a ˹third˺ course",
+ 93,
+ "until he reached ˹a pass˺ between two mountains. He found in front of them a people who could hardly understand ˹his˺ language.",
+ 94,
+ "They pleaded, “O Ⱬul-Qarnain! Surely Gog and Magog are spreading corruption throughout the land. Should we pay you tribute, provided that you build a wall between us and them?”",
+ 95,
+ "He responded, “What my Lord has provided for me is far better. But assist me with resources, and I will build a barrier between you and them.",
+ 96,
+ "Bring me blocks of iron!” Then, when he had filled up ˹the gap˺ between the two mountains, he ordered, “Blow!” When the iron became red hot, he said, “Bring me molten copper to pour over it.”",
+ 97,
+ "And so the enemies could neither scale nor tunnel through it.",
+ 98,
+ "He declared, “This is a mercy from my Lord. But when the promise of my Lord comes to pass, He will level it to the ground. And my Lord’s promise is ever true.”",
+ 99,
+ "On that Day, We will let them surge ˹like waves˺ over one another. Later, the Trumpet will be blown, and We will gather all ˹people˺ together.",
+ 100,
+ "On that Day We will display Hell clearly for the disbelievers,",
+ 101,
+ "those who turned a blind eye to My Reminder and could not stand listening ˹to it˺.",
+ 102,
+ "Do the disbelievers think they can ˹simply˺ take My servants as lords instead of Me? We have surely prepared Hell as an accommodation for the disbelievers.",
+ 103,
+ "Say, ˹O Prophet,˺ “Shall we inform you of who will lose the most deeds?",
+ 104,
+ "˹They are˺ those whose efforts are in vain in this worldly life, while they think they are doing good!”",
+ 105,
+ "It is they who reject the signs of their Lord and their meeting with Him, rendering their deeds void, so We will not give their deeds any weight on Judgment Day.",
+ 106,
+ "That is their reward: Hell, for their disbelief and mockery of My signs and messengers.",
+ 107,
+ "Indeed, those who believe and do good will have the Gardens of Paradise as an accommodation,",
+ 108,
+ "where they will be forever, never desiring anywhere else.",
+ 109,
+ "Say, ˹O Prophet,˺ “If the ocean were ink for ˹writing˺ the Words of my Lord, it would certainly run out before the Words of my Lord were finished, even if We refilled it with its equal.” ",
+ 110,
+ "Say, ˹O Prophet,˺ “I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So whoever hopes for the meeting with their Lord, let them do good deeds and associate none in the worship of their Lord.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/19.json b/share/quran-json/TheQuran/en/19.json
new file mode 100644
index 0000000..8f884b9
--- /dev/null
+++ b/share/quran-json/TheQuran/en/19.json
@@ -0,0 +1,212 @@
+[
+ {
+ "id": "19",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Maryam",
+ "translated_name": "Mary",
+ "verse_count": 98,
+ "slug": "maryam",
+ "codepoints": [
+ 1605,
+ 1585,
+ 1610,
+ 1605
+ ]
+ },
+ 1,
+ "Kãf-Ha-Ya-’Aĩn- Ṣãd.",
+ 2,
+ "˹This is˺ a reminder of your Lord’s mercy to His servant Zachariah,",
+ 3,
+ "when he cried out to his Lord privately,",
+ 4,
+ "saying, “My Lord! Surely my bones have become brittle, and grey hair has spread across my head, but I have never been disappointed in my prayer to You, my Lord!",
+ 5,
+ "And I am concerned about ˹the faith of˺ my relatives after me, since my wife is barren. So grant me, by Your grace, an heir,",
+ 6,
+ "who will inherit ˹prophethood˺ from me and the family of Jacob, and make him, O Lord, pleasing ˹to You˺!”",
+ 7,
+ "˹The angels announced,˺ “O Zachariah! Indeed, We give you the good news of ˹the birth of˺ a son, whose name will be John—a name We have not given to anyone before.”",
+ 8,
+ "He wondered, “My Lord! How can I have a son when my wife is barren, and I have become extremely old?”",
+ 9,
+ "An angel replied, “So will it be! Your Lord says, ‘It is easy for Me, just as I created you before, when you were nothing!’”",
+ 10,
+ "Zachariah said, “My Lord! Grant me a sign.” He responded, “Your sign is that you will not ˹be able to˺ speak to people for three nights, despite being healthy.”",
+ 11,
+ "So he came out to his people from the sanctuary, signalling to them to glorify ˹Allah˺ morning and evening.",
+ 12,
+ "˹It was later said,˺ “O John! Hold firmly to the Scriptures.” And We granted him wisdom while ˹he was still˺ a child,",
+ 13,
+ "as well as purity and compassion from Us. And he was God-fearing,",
+ 14,
+ "and kind to his parents. He was neither arrogant nor disobedient.",
+ 15,
+ "Peace be upon him the day he was born, and the day of his death, and the day he will be raised back to life!",
+ 16,
+ "And mention in the Book ˹O Prophet, the story of˺ Mary when she withdrew from her family to a place in the east,",
+ 17,
+ "screening herself off from them. Then We sent to her Our angel, ˹Gabriel,˺ appearing before her as a man, perfectly formed.",
+ 18,
+ "She appealed, “I truly seek refuge in the Most Compassionate from you! ˹So leave me alone˺ if you are God-fearing.”",
+ 19,
+ "He responded, “I am only a messenger from your Lord, ˹sent˺ to bless you with a pure son.”",
+ 20,
+ "She wondered, “How can I have a son when no man has ever touched me, nor am I unchaste?”",
+ 21,
+ "He replied, “So will it be! Your Lord says, ‘It is easy for Me. And so will We make him a sign for humanity and a mercy from Us.’ It is a matter ˹already˺ decreed.”",
+ 22,
+ "So she conceived him and withdrew with him to a remote place.",
+ 23,
+ "Then the pains of labour drove her to the trunk of a palm tree. She cried, “Alas! I wish I had died before this, and was a thing long forgotten!”",
+ 24,
+ "So a voice reassured her from below her, “Do not grieve! Your Lord has provided a stream at your feet.",
+ 25,
+ "And shake the trunk of this palm tree towards you, it will drop fresh, ripe dates upon you.",
+ 26,
+ "So eat and drink, and put your heart at ease. But if you see any of the people, say, ‘I have vowed silence to the Most Compassionate, so I am not talking to anyone today.’”",
+ 27,
+ "Then she returned to her people, carrying him. They said ˹in shock˺, “O Mary! You have certainly done a horrible thing!",
+ 28,
+ "O sister of Aaron! Your father was not an indecent man, nor was your mother unchaste.”",
+ 29,
+ "So she pointed to the baby. They exclaimed, “How can we talk to someone who is an infant in the cradle?”",
+ 30,
+ "˹Jesus˺ declared, “I am truly a servant of Allah. He has destined me to be given the Scripture and to be a prophet.",
+ 31,
+ "He has made me a blessing wherever I go, and bid me to establish prayer and give alms-tax as long as I live,",
+ 32,
+ "and to be kind to my mother. He has not made me arrogant or defiant.",
+ 33,
+ "Peace be upon me the day I was born, the day I die, and the day I will be raised back to life!”",
+ 34,
+ "That is Jesus, son of Mary. ˹And this is˺ a word of truth, about which they dispute.",
+ 35,
+ "It is not for Allah to take a son! Glory be to Him. When He decrees a matter, He simply tells it, “Be!” And it is!",
+ 36,
+ "˹Jesus also declared,˺ “Surely Allah is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path.”",
+ 37,
+ "Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the disbelievers when they face a tremendous Day!",
+ 38,
+ "How clearly will they hear and see on the Day they will come to Us! But today the wrongdoers are clearly astray.",
+ 39,
+ "And warn them ˹O Prophet˺ of the Day of Regret, when all matters will be settled, while they are ˹engrossed˺ in heedlessness and disbelief.",
+ 40,
+ "Indeed, it is We Who will succeed the earth and whoever is on it. And to Us they will ˹all˺ be returned.",
+ 41,
+ "And mention in the Book ˹O Prophet, the story of˺ Abraham. He was surely a man of truth and a prophet.",
+ 42,
+ "˹Remember˺ when he said to his father, “O dear father! Why do you worship what can neither hear nor see, nor benefit you at all?",
+ 43,
+ "O dear father! I have certainly received some knowledge which you have not received, so follow me and I will guide you to the Straight Path.",
+ 44,
+ "O dear father! Do not worship Satan. Surely Satan is ever rebellious against the Most Compassionate.",
+ 45,
+ "O dear father! I truly fear that you will be touched by a torment from the Most Compassionate, and become Satan’s companion ˹in Hell˺.”",
+ 46,
+ "He threatened, “How dare you reject my idols, O Abraham! If you do not desist, I will certainly stone you ˹to death˺. So be gone from me for a long time!”",
+ 47,
+ "Abraham responded, “Peace be upon you! I will pray to my Lord for your forgiveness. He has truly been Most Gracious to me.",
+ 48,
+ "As I distance myself from ˹all of˺ you and from whatever you invoke besides Allah, I will ˹continue to˺ call upon my Lord ˹alone˺, trusting that I will never be disappointed in invoking my Lord.”",
+ 49,
+ "So after he had left them and what they worshipped besides Allah, We granted him Isaac and Jacob, and made each of them a prophet.",
+ 50,
+ "We showered them with Our mercy, and blessed them with honourable mention. ",
+ 51,
+ "And mention in the Book ˹O Prophet, the story of˺ Moses. He was truly a chosen man, and was a messenger and a prophet.",
+ 52,
+ "We called him from the right side of Mount Ṭûr, and drew him near, speaking ˹with him˺ directly.",
+ 53,
+ "And We appointed for him—out of Our grace—his brother, Aaron, as a prophet.",
+ 54,
+ "And mention in the Book ˹O Prophet, the story of˺ Ishmael. He was truly a man of his word, and was a messenger and a prophet.",
+ 55,
+ "He used to urge his people to pray and give alms-tax. And his Lord was well pleased with him.",
+ 56,
+ "And mention in the Book ˹O Prophet, the story of˺ Enoch. He was surely a man of truth and a prophet.",
+ 57,
+ "And We elevated him to an honourable status. ",
+ 58,
+ "Those were ˹some of˺ the prophets who Allah has blessed from among the descendants of Adam, and of those We carried with Noah ˹in the Ark˺, and of the descendants of Abraham and Israel, and of those We ˹rightly˺ guided and chose. Whenever the revelations of the Most Compassionate were recited to them, they fell down, prostrating and weeping.",
+ 59,
+ "But they were succeeded by generations who neglected prayer and followed their lusts and so will soon face the evil consequences.",
+ 60,
+ "As for those who repent, believe, and do good, it is they who will be admitted into Paradise, never being denied any reward.",
+ 61,
+ "˹They will be in˺ the Gardens of Eternity, promised in trust by the Most Compassionate to His servants. Surely His promise will be fulfilled.",
+ 62,
+ "There they will never hear any idle talk—only ˹greetings of˺ peace. And there they will have their provisions morning and evening.",
+ 63,
+ "That is Paradise, which We will grant to whoever is devout among Our servants.",
+ 64,
+ "“We only descend by the command of your Lord. To Him belongs whatever is before us, and whatever is behind us, and everything in between. And your Lord is never forgetful.",
+ 65,
+ "˹He is the˺ Lord of the heavens, and the earth, and everything in between. So worship Him ˹alone˺, and be steadfast in His worship. Do you know of anyone equal to Him ˹in His attributes˺?”",
+ 66,
+ "Yet ˹some˺ people ask ˹mockingly˺, “After I die, will I really be raised to life again?”",
+ 67,
+ "Do ˹such˺ people not remember that We created them before, when they were nothing?",
+ 68,
+ "By your Lord ˹O Prophet˺! We will surely gather them along with the devils, and then set them around Hell on their knees.",
+ 69,
+ "Then We will certainly begin by dragging out of every group the ones most defiant to the Most Compassionate.",
+ 70,
+ "And We truly know best who is most deserving of burning in it.",
+ 71,
+ "There is none of you who will not pass over it. ˹This is˺ a decree your Lord must fulfil.",
+ 72,
+ "Then We will deliver those who were devout, leaving the wrongdoers there on their knees.",
+ 73,
+ "When Our clear revelations are recited to them, the disbelievers ask the believers ˹mockingly˺, “Which of the two of us is better in status and superior in assembly?”",
+ 74,
+ "˹Imagine, O Prophet˺ how many peoples We have destroyed before them, who were far better in luxury and splendour!",
+ 75,
+ "Say, ˹O Prophet,˺ “Whoever is ˹entrenched˺ in misguidance, the Most Compassionate will allow them plenty of time, until—behold!—they face what they are threatened with: either the torment or the Hour. Only then will they realize who is worse in position and inferior in manpower.”",
+ 76,
+ "And Allah increases in guidance those who are ˹rightly˺ guided. And the everlasting good deeds are far better with your Lord in reward and in outcome. ",
+ 77,
+ "Have you seen ˹O Prophet˺ the one who rejects Our revelations yet boasts, “I will definitely be granted ˹plenty of˺ wealth and children ˹if there is an afterlife˺.”?",
+ 78,
+ "Has he looked into the unseen or taken a pledge from the Most Compassionate?",
+ 79,
+ "Not at all! We certainly record whatever he claims and will increase his punishment extensively.",
+ 80,
+ "And We will inherit what he boasts of, and he will come before Us all by himself.",
+ 81,
+ "They have taken other gods, instead of Allah, seeking strength ˹and protection˺ through them.",
+ 82,
+ "But no! Those ˹gods˺ will deny their worship and turn against them.",
+ 83,
+ "Do you ˹O Prophet˺ not see that We have sent the devils against the disbelievers, constantly inciting them?",
+ 84,
+ "So do not be in haste against them, for indeed We are ˹closely˺ counting down their days.",
+ 85,
+ "˹Watch for˺ the Day We will gather the righteous before the Most Compassionate as an honoured delegation,",
+ 86,
+ "and drive the wicked to Hell like a thirsty herd.",
+ 87,
+ "None will have the right to intercede, except those who have taken a covenant from the Most Compassionate. ",
+ 88,
+ "They say, “The Most Compassionate has offspring.”",
+ 89,
+ "You have certainly made an outrageous claim,",
+ 90,
+ "by which the heavens are about to burst, the earth to split apart, and the mountains to crumble to pieces",
+ 91,
+ "in protest of attributing children to the Most Compassionate.",
+ 92,
+ "It does not befit ˹the majesty of˺ the Most Compassionate to have children.",
+ 93,
+ "There is none in the heavens or the earth who will not return to the Most Compassionate in full submission.",
+ 94,
+ "Indeed, He fully knows them and has counted them precisely.",
+ 95,
+ "And each of them will return to Him on the Day of Judgment all alone.",
+ 96,
+ "As for those who believe and do good, the Most Compassionate will ˹certainly˺ bless them with ˹genuine˺ love.",
+ 97,
+ "Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so with it you may give good news to the righteous and warn those who are contentious.",
+ 98,
+ "˹Imagine˺ how many peoples We have destroyed before them! Do you ˹still˺ see any of them, or ˹even˺ hear from them the slightest sound?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/20.json b/share/quran-json/TheQuran/en/20.json
new file mode 100644
index 0000000..e573763
--- /dev/null
+++ b/share/quran-json/TheQuran/en/20.json
@@ -0,0 +1,284 @@
+[
+ {
+ "id": "20",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Taha",
+ "translated_name": "Ta-Ha",
+ "verse_count": 135,
+ "slug": "taha",
+ "codepoints": [
+ 1591,
+ 1607
+ ]
+ },
+ 1,
+ "Ṭâ-Hâ.",
+ 2,
+ "We have not revealed the Quran to you ˹O Prophet˺ to cause you distress,",
+ 3,
+ "but as a reminder to those in awe ˹of Allah˺.",
+ 4,
+ "˹It is˺ a revelation from the One Who created the earth and the high heavens—",
+ 5,
+ "the Most Compassionate, ˹Who is˺ established on the Throne.",
+ 6,
+ "To Him belongs whatever is in the heavens and whatever is on the earth and whatever is in between and whatever is underground.",
+ 7,
+ "Whether you speak openly ˹or not˺, He certainly knows what is secret and what is even more hidden.",
+ 8,
+ "Allah—there is no god ˹worthy of worship˺ except Him. He has the Most Beautiful Names.",
+ 9,
+ "Has the story of Moses reached you ˹O Prophet˺?",
+ 10,
+ "When he saw a fire, he said to his family, “Wait here, ˹for˺ I have spotted a fire. Perhaps I can bring you a torch from it, or find some guidance at the fire.”",
+ 11,
+ "But when he approached it, he was called, “O Moses!",
+ 12,
+ "It is truly I. I am your Lord! So take off your sandals, for you are in the sacred valley of Ṭuwa.",
+ 13,
+ "I have chosen you, so listen to what is revealed:",
+ 14,
+ "‘It is truly I. I am Allah! There is no god ˹worthy of worship˺ except Me. So worship Me ˹alone˺, and establish prayer for My remembrance.",
+ 15,
+ "The Hour is sure to come. My Will is to keep it hidden, so that every soul may be rewarded according to their efforts.",
+ 16,
+ "So do not let those who disbelieve in it and follow their desires distract you from it, or you will be doomed.’”",
+ 17,
+ "˹Allah added,˺ “And what is that in your right hand, O Moses?”",
+ 18,
+ "He replied, “It is my staff! I lean on it, and with it I beat down ˹branches˺ for my sheep, and have other uses for it.”",
+ 19,
+ "Allah said, “Throw it down, O Moses!”",
+ 20,
+ "So he did, then—behold!—it became a serpent, slithering.",
+ 21,
+ "Allah said, “Take it, and have no fear. We will return it to its former state.",
+ 22,
+ "And put your hand under your armpit, it will come out ˹shining˺ white, unblemished, as another sign,",
+ 23,
+ "so that We may show you some of Our greatest signs.",
+ 24,
+ "Go to Pharaoh, for he has truly transgressed ˹all bounds˺.”",
+ 25,
+ "Moses prayed, “My Lord! Uplift my heart for me,",
+ 26,
+ "and make my task easy,",
+ 27,
+ "and remove the impediment from my tongue",
+ 28,
+ "so people may understand my speech,",
+ 29,
+ "and grant me a helper from my family,",
+ 30,
+ "Aaron, my brother.",
+ 31,
+ "Strengthen me through him,",
+ 32,
+ "and let him share my task,",
+ 33,
+ "so that we may glorify You much",
+ 34,
+ "and remember You much,",
+ 35,
+ "for truly You have ˹always˺ been overseeing us.”",
+ 36,
+ "Allah responded, “All that you requested has been granted, O Moses!",
+ 37,
+ "And surely We had shown You favour before,",
+ 38,
+ "when We inspired your mother with this:",
+ 39,
+ "‘Put him into a chest, then put it into the river. The river will wash it ashore, and he will be taken by ˹Pharaoh,˺ an enemy of Mine and his.’ And I blessed you with lovability from Me ˹O Moses˺ so that you would be brought up under My ˹watchful˺ Eye.",
+ 40,
+ "˹Remember˺ when your sister came along and proposed, ‘Shall I direct you to someone who will nurse him?’ So We reunited you with your mother so that her heart would be put at ease, and she would not grieve. ˹Later˺ you killed a man ˹by mistake˺, but We saved you from sorrow, as well as other tests We put you through. Then you stayed for a number of years among the people of Midian. Then you came here as pre-destined, O Moses!",
+ 41,
+ "And I have selected you for My service.",
+ 42,
+ "Go forth, you and your brother, with My signs and never falter in remembering Me.",
+ 43,
+ "Go, both of you, to Pharaoh, for he has truly transgressed ˹all bounds˺.",
+ 44,
+ "Speak to him gently, so perhaps he may be mindful ˹of Me˺ or fearful ˹of My punishment˺.”",
+ 45,
+ "They both pleaded, “Our Lord! We fear that he may be quick to harm us or act tyrannically.”",
+ 46,
+ "Allah reassured ˹them˺, “Have no fear! I am with you, hearing and seeing.",
+ 47,
+ "So go to him and say, ‘Indeed we are both messengers from your Lord, so let the Children of Israel go with us, and do not oppress them. We have come to you with a sign from your Lord. And salvation will be for whoever follows the ˹right˺ guidance.",
+ 48,
+ "It has indeed been revealed to us that the punishment will be upon whoever denies ˹the truth˺ and turns away.’”",
+ 49,
+ "Pharaoh asked, “Who then is the Lord of you two, O Moses?”",
+ 50,
+ "He answered, “Our Lord is the One Who has given everything its ˹distinctive˺ form, then guided ˹it˺.”",
+ 51,
+ "Pharaoh asked, “And what about previous peoples?”",
+ 52,
+ "He replied, “That knowledge is with my Lord in a Record. My Lord neither falters nor forgets ˹anything˺.”",
+ 53,
+ "˹He is the One˺ Who has laid out the earth for ˹all of˺ you, and set in it pathways for you, and sends down rain from the sky, causing various types of plants to grow,",
+ 54,
+ "˹so˺ eat and graze your cattle. Surely in this are signs for people of sound judgment.",
+ 55,
+ "From the earth We created you, and into it We will return you, and from it We will bring you back again.",
+ 56,
+ "And We certainly showed Pharaoh all of Our signs, but he denied them and refused ˹to believe˺.",
+ 57,
+ "He said, “Have you come to drive us out of our land with your magic, O Moses?",
+ 58,
+ "We can surely meet you with similar magic. So set for us an appointment that neither of us will fail to keep, in a central place.”",
+ 59,
+ "Moses said, “Your appointment is on the Day of the Festival, and let the people be gathered mid-morning.”",
+ 60,
+ "Pharaoh then withdrew, orchestrated his scheme, then returned.",
+ 61,
+ "Moses warned the magicians, “Woe to you! Do not fabricate a lie against Allah, or He will wipe you out with a torment. Whoever fabricates ˹lies˺ is bound to fail.”",
+ 62,
+ "So the magicians disputed the matter among themselves, conversing privately.",
+ 63,
+ "They concluded, “These two are only magicians who want to drive you out of your land with their magic, and do away with your most cherished traditions.",
+ 64,
+ "So orchestrate your plan, then come forward in ˹perfect˺ ranks. And whoever prevails today will certainly be successful.”",
+ 65,
+ "They said, “O Moses! Either you cast, or let us be the first to cast.”",
+ 66,
+ "Moses responded, “No, you go first.” And suddenly their ropes and staffs appeared to him—by their magic—to be slithering.",
+ 67,
+ "So Moses concealed fear within himself.",
+ 68,
+ "We reassured ˹him˺, “Do not fear! It is certainly you who will prevail.",
+ 69,
+ "Cast what is in your right hand, and it will swallow up what they have made, for what they have made is no more than a magic trick. And magicians can never succeed wherever they go.”",
+ 70,
+ "So the magicians fell down in prostration, declaring, “We believe in the Lord of Aaron and Moses.”",
+ 71,
+ "Pharaoh threatened, “How dare you believe in him before I give you permission? He must be your master who taught you magic. I will certainly cut off your hands and feet on opposite sides, and crucify you on the trunks of palm trees. You will really see whose punishment is more severe and more lasting.”",
+ 72,
+ "They responded, “By the One Who created us! We will never prefer you over the clear proofs that have come to us. So do whatever you want! Your authority only covers the ˹fleeting˺ life of this world.",
+ 73,
+ "Indeed, we have believed in our Lord so He may forgive our sins and that magic you have forced us to practice. And Allah is far superior ˹in reward˺ and more lasting ˹in punishment˺.”",
+ 74,
+ "Whoever comes to their Lord as an evildoer will certainly have Hell, where they can neither live nor die.",
+ 75,
+ "But whoever comes to Him as a believer, having done good, they will have the highest ranks:",
+ 76,
+ "the Gardens of Eternity, under which rivers flow, where they will stay forever. That is the reward of those who purify themselves.",
+ 77,
+ "And We surely inspired Moses, ˹saying,˺ “Leave with My servants ˹at night˺ and strike a dry passage for them across the sea. Have no fear of being overtaken, nor be concerned ˹of drowning˺.”",
+ 78,
+ "Then Pharaoh pursued them with his soldiers—but how overwhelming were the waters that submerged them!",
+ 79,
+ "And ˹so˺ Pharaoh led his people astray, and did not guide ˹them rightly˺.",
+ 80,
+ "O Children of Israel! We saved you from your enemy, and made an appointment with you on the right side of Mount Ṭûr, and sent down to you manna and quails,",
+ 81,
+ "˹saying,˺ “Eat from the good things We have provided for you, but do not transgress in them, or My wrath will befall you. And whoever My wrath befalls is certainly doomed.",
+ 82,
+ "But I am truly Most Forgiving to whoever repents, believes, and does good, then persists on ˹true˺ guidance.”",
+ 83,
+ "˹Allah asked,˺ “Why have you come with such haste ahead of your people, O Moses?”",
+ 84,
+ "He replied, “They are close on my tracks. And I have hastened to You, my Lord, so You will be pleased.”",
+ 85,
+ "Allah responded, “We have indeed tested your people in your absence, and the Sâmiri has led them astray.”",
+ 86,
+ "So Moses returned to his people, furious and sorrowful. He said, “O my people! Had your Lord not made you a good promise? Has my absence been too long for you? Or have you wished for wrath from your Lord to befall you, so you broke your promise to me?” ",
+ 87,
+ "They argued, “We did not break our promise to you of our own free will, but we were made to carry the burden of the people’s ˹golden˺ jewellery, then we threw it ˹into the fire˺, and so did the Sâmiri.”",
+ 88,
+ "Then he moulded for them an idol of a calf that made a lowing sound. They said, “This is your god and the god of Moses, but Moses forgot ˹where it was˺!”",
+ 89,
+ "Did they not see that it did not respond to them, nor could it protect or benefit them?",
+ 90,
+ "Aaron had already warned them beforehand, “O my people! You are only being tested by this, for indeed your ˹one true˺ Lord is the Most Compassionate. So follow me and obey my orders.”",
+ 91,
+ "They replied, “We will not cease to worship it until Moses returns to us.”",
+ 92,
+ "Moses scolded ˹his brother˺, “O Aaron! What prevented you, when you saw them going astray,",
+ 93,
+ "from following after me? How could you disobey my orders?”",
+ 94,
+ "Aaron pleaded, “O son of my mother! Do not seize me by my beard or ˹the hair of˺ my head. I really feared that you would say, ‘You have caused division among the Children of Israel, and did not observe my word.’”",
+ 95,
+ "Moses then asked, “What did you think you were doing, O Sâmiri?”",
+ 96,
+ "He said, “I saw what they did not see, so I took a handful ˹of dust˺ from the hoof-prints of ˹the horse of˺ the messenger-angel ˹Gabriel˺ then cast it ˹on the moulded calf˺. This is what my lower-self tempted me into.”",
+ 97,
+ "Moses said, “Go away then! And for ˹the rest of your˺ life you will surely be crying, ‘Do not touch ˹me˺!’ Then you will certainly have a fate that you cannot escape. Now look at your god to which you have been devoted: we will burn it up, then scatter it in the sea completely.”",
+ 98,
+ "˹Then Moses addressed his people,˺ “Your only god is Allah, there is no god ˹worthy of worship˺ except Him. He encompasses everything in ˹His˺ knowledge.”",
+ 99,
+ "This is how We relate to you ˹O Prophet˺ some of the stories of the past. And We have certainly granted you a Reminder from Us.",
+ 100,
+ "Whoever turns away from it will surely bear the burden ˹of sin˺ on the Day of Judgment,",
+ 101,
+ "suffering its consequences forever. What an evil burden they will carry on Judgment Day!",
+ 102,
+ "˹Beware of˺ the Day the Trumpet will be blown, and We will gather the wicked on that Day blue-faced ˹from horror and thirst˺.",
+ 103,
+ "They will whisper among themselves, “You stayed no more than ten days ˹on the earth˺.”",
+ 104,
+ "We know best what they will say—the most reasonable of them will say, “You stayed no more than a day.”",
+ 105,
+ "And ˹if˺ they ask you ˹O Prophet˺ about the mountains, ˹then˺ say, “My Lord will wipe them out completely,",
+ 106,
+ "leaving the earth level and bare,",
+ 107,
+ "with neither depressions nor elevations to be seen.”",
+ 108,
+ "On that Day all will follow the caller ˹for assembly˺, ˹and˺ none will dare to deviate. All voices will be hushed before the Most Compassionate. Only whispers will be heard.",
+ 109,
+ "On that Day no intercession will be of any benefit, except by those granted permission by the Most Compassionate and whose words are agreeable to Him.",
+ 110,
+ "He ˹fully˺ knows what is ahead of them and what is behind them, but they cannot encompass Him in ˹their˺ knowledge.",
+ 111,
+ "And all faces will be humbled before the Ever-Living, All-Sustaining. And those burdened with wrongdoing will be in loss.",
+ 112,
+ "But whoever does good and is a believer will have no fear of being wronged or denied ˹their reward˺.",
+ 113,
+ "And so We have sent it down as an Arabic Quran and varied the warnings in it, so perhaps they will shun evil or it may cause them to be mindful.",
+ 114,
+ "Exalted is Allah, the True King! Do not rush to recite ˹a revelation of˺ the Quran ˹O Prophet˺ before it is ˹properly˺ conveyed to you, and pray, “My Lord! Increase me in knowledge.”",
+ 115,
+ "And indeed, We once made a covenant with Adam, but he forgot, and ˹so˺ We did not find determination in him.",
+ 116,
+ "And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who refused ˹arrogantly˺.",
+ 117,
+ "So We cautioned, “O Adam! This is surely an enemy to you and to your wife. So do not let him drive you both out of Paradise, for you ˹O Adam˺ would then suffer ˹hardship˺.",
+ 118,
+ "Here it is guaranteed that you will never go hungry or unclothed,",
+ 119,
+ "nor will you ˹ever˺ suffer from thirst or ˹the sun’s˺ heat.” ",
+ 120,
+ "But Satan whispered to him, saying, “O Adam! Shall I show you the Tree of Immortality and a kingdom that does not fade away?”",
+ 121,
+ "So they both ate from the tree and then their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. So Adam disobeyed his Lord, and ˹so˺ lost his way.",
+ 122,
+ "Then his Lord chose him ˹for His grace˺, accepted his repentance, and guided him ˹rightly˺.",
+ 123,
+ "Allah said, “Descend, both of you, from here together ˹with Satan˺ as enemies to each other. Then when guidance comes to you from Me, whoever follows My guidance will neither go astray ˹in this life˺ nor suffer ˹in the next˺.",
+ 124,
+ "But whoever turns away from My Reminder will certainly have a miserable life, then We will raise them up blind on the Day of Judgment.”",
+ 125,
+ "They will cry, “My Lord! Why have you raised me up blind, although I used to see?”",
+ 126,
+ "Allah will respond, “It is so, just as Our revelations came to you and you neglected them, so Today you are neglected.”",
+ 127,
+ "This is how We reward whoever transgresses and does not believe in the revelations of their Lord. And the punishment of the Hereafter is far more severe and more lasting.",
+ 128,
+ "Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs for people of sound judgment.",
+ 129,
+ "Had it not been for a prior decree from your Lord ˹O Prophet˺ and a term already set, their ˹instant˺ doom would have been inevitable.",
+ 130,
+ "So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset, and glorify Him in the hours of the night and at both ends of the day, so that you may be pleased ˹with the reward˺.",
+ 131,
+ "Do not let your eyes crave what We have allowed some of the disbelievers to enjoy; the ˹fleeting˺ splendour of this worldly life, which We test them with. But your Lord’s provision ˹in the Hereafter˺ is far better and more lasting.",
+ 132,
+ "Bid your people to pray, and be diligent in ˹observing˺ it. We do not ask you to provide. It is We Who provide for you. And the ultimate outcome is ˹only˺ for ˹the people of˺ righteousness.",
+ 133,
+ "They demand, “If only he could bring us a sign from his Lord!” Have they not ˹already˺ received a confirmation of what is in earlier Scriptures?",
+ 134,
+ "Had We destroyed them with a torment before this ˹Prophet came˺, they would have surely argued, “Our Lord! If only You had sent us a messenger, we would have followed Your revelations before being humiliated and put to shame.”",
+ 135,
+ "Say ˹to them, O Prophet˺, “Each ˹of us˺ is waiting, so keep waiting! You will soon know who is on the Straight Path and is ˹rightly˺ guided.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/21.json b/share/quran-json/TheQuran/en/21.json
new file mode 100644
index 0000000..5884b60
--- /dev/null
+++ b/share/quran-json/TheQuran/en/21.json
@@ -0,0 +1,244 @@
+[
+ {
+ "id": "21",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Anbya",
+ "translated_name": "The Prophets",
+ "verse_count": 112,
+ "slug": "al-anbya",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1606,
+ 1576,
+ 1610,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "˹The time of˺ people’s judgment has drawn near, yet they are heedlessly turning away.",
+ 2,
+ "Whatever new reminder comes to them from their Lord, they only listen to it jokingly,",
+ 3,
+ "with their hearts ˹totally˺ distracted. The evildoers would converse secretly, ˹saying,˺ “Is this ˹one˺ not human like yourselves? Would you fall for ˹this˺ witchcraft, even though you can ˹clearly˺ see?”",
+ 4,
+ "The Prophet responded, “My Lord ˹fully˺ knows every word spoken in the heavens and the earth. For He is the All-Hearing, All-Knowing.”",
+ 5,
+ "Yet they say, “This ˹Quran˺ is a set of confused dreams! No, he has fabricated it! No, he must be a poet! So let him bring us a ˹tangible˺ sign like those ˹prophets˺ sent before.”",
+ 6,
+ "Not a ˹single˺ society We destroyed before them ever believed ˹after receiving the signs˺. Will these ˹pagans˺ then believe?",
+ 7,
+ "We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.",
+ 8,
+ "We did not give those messengers ˹supernatural˺ bodies that did not need food, nor were they immortal.",
+ 9,
+ "Then We fulfilled Our promise to them, saving them along with whoever We willed and destroying the transgressors.",
+ 10,
+ "We have surely revealed to you a Book, in which there is glory for you. Will you not then understand?",
+ 11,
+ "˹Imagine˺ how many societies of wrongdoers We have destroyed, raising up other people after them!",
+ 12,
+ "When the wrongdoers sensed ˹the arrival of˺ Our torment, they started to run away from their cities.",
+ 13,
+ "˹They were told,˺ “Do not run away! Return to your luxuries and your homes, so you may be questioned ˹about your fate˺.”",
+ 14,
+ "They cried, “Woe to us! We have surely been wrongdoers.”",
+ 15,
+ "They kept repeating their cry until We mowed them down, ˹leaving them˺ lifeless. ",
+ 16,
+ "We did not create the heavens and the earth and everything in between for sport.",
+ 17,
+ "Had We intended to take ˹some˺ amusement, We could have found it in Our presence, if that had been Our Will.",
+ 18,
+ "In fact, We hurl the truth against falsehood, leaving it crushed, and it quickly vanishes. And woe be to you for what you claim!",
+ 19,
+ "To Him belong all those in the heavens and the earth. And those nearest to Him are not too proud to worship Him, nor do they tire.",
+ 20,
+ "They glorify ˹Him˺ day and night, never wavering.",
+ 21,
+ "Or have they taken gods from the earth, who can raise the dead?",
+ 22,
+ "Had there been other gods besides Allah in the heavens or the earth, both ˹realms˺ would have surely been corrupted. So Glorified is Allah, Lord of the Throne, far above what they claim.",
+ 23,
+ "He cannot be questioned about what He does, but they will ˹all˺ be questioned.",
+ 24,
+ "Or have they taken other gods besides Him? Say, ˹O Prophet,˺ “Show ˹me˺ your proof. Here is ˹the Quran,˺ the Reminder for those with me; along with ˹earlier Scriptures,˺ the Reminder for those before me.” But most of them do not know the truth, so they turn away.",
+ 25,
+ "We never sent a messenger before you ˹O Prophet˺ without revealing to him: “There is no god ˹worthy of worship˺ except Me, so worship Me ˹alone˺.”",
+ 26,
+ "And they say, “The Most Compassionate has offspring!” Glory be to Him! In fact, those ˹angels˺ are only ˹His˺ honoured servants,",
+ 27,
+ "who do not speak until He has spoken, ˹only˺ acting at His command.",
+ 28,
+ "He ˹fully˺ knows what is ahead of them and what is behind them. They do not intercede except for whom He approves, and they tremble in awe of Him.",
+ 29,
+ "Whoever of them were to say, “I am a god besides Him,” they would be rewarded with Hell by Us. This is how We reward the wrongdoers.",
+ 30,
+ "Do the disbelievers not realize that the heavens and earth were ˹once˺ one mass then We split them apart? And We created from water every living thing. Will they not then believe?",
+ 31,
+ "And We have placed firm mountains upon the earth so it does not shake with them, and made in it broad pathways so they may find their way.",
+ 32,
+ "And We have made the sky a well-protected canopy, still they turn away from its signs.",
+ 33,
+ "And He is the One Who created the day and the night, the sun and the moon—each travelling in an orbit.",
+ 34,
+ "We have not granted immortality to any human before you ˹O Prophet˺: so if you die, will they live forever?",
+ 35,
+ "Every soul will taste death. And We test you ˹O humanity˺ with good and evil as a trial, then to Us you will ˹all˺ be returned.",
+ 36,
+ "When the disbelievers see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ “Is this the one who speaks ˹ill˺ of your gods?” while they disbelieve at the mention of the Most Compassionate.",
+ 37,
+ "Humankind is made of haste. I will soon show you My signs, so do not ask Me to hasten them.",
+ 38,
+ "They ask ˹the believers˺, “When will this threat come to pass if what you say is true?”",
+ 39,
+ "If only the disbelievers knew that a time will come when they will not be able to keep the Fire off their faces or backs, nor will they be helped.",
+ 40,
+ "In fact, the Hour will take them by surprise, leaving them stunned. So they will not be able to avert it, nor will it be delayed from them.",
+ 41,
+ "˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.",
+ 42,
+ "Ask ˹them, O Prophet,˺ “Who can defend you by day or by night against the Most Compassionate?” Still they turn away from the remembrance of their Lord.",
+ 43,
+ "Or do they have gods—other than Us—that can protect them? They cannot ˹even˺ protect themselves, nor will they be aided against Us.",
+ 44,
+ "In fact, We have allowed enjoyment for these ˹Meccans˺ and their forefathers for such a long time ˹that they took it for granted˺. Do they not see that We gradually reduce ˹their˺ land from its borders? Is it they who will then prevail?",
+ 45,
+ "Say, ˹O Prophet,˺ “I warn you only by revelation.” But the deaf cannot hear the call when they are warned!",
+ 46,
+ "If they were touched by even a breath of your Lord’s torment, they would certainly cry, “Woe to us! We have really been wrongdoers.”",
+ 47,
+ "We will set up the scales of justice on the Day of Judgment, so no soul will be wronged in the least. And ˹even˺ if a deed is the weight of a mustard seed, We will bring it forth. And sufficient are We as a ˹vigilant˺ Reckoner.",
+ 48,
+ "Indeed, We granted Moses and Aaron the standard ˹to distinguish between right and wrong˺—a light and a reminder for the righteous,",
+ 49,
+ "who are in awe of their Lord without seeing Him, and are fearful of the Hour.",
+ 50,
+ "And this ˹Quran˺ is a blessed reminder which We have revealed. Will you ˹pagans˺ then deny it?",
+ 51,
+ "And indeed, We had granted Abraham sound judgment early on, for We knew him well ˹to be worthy of it˺.",
+ 52,
+ "˹Remember˺ when he questioned his father and his people, “What are these statues to which you are so devoted?”",
+ 53,
+ "They replied, “We found our forefathers worshipping them.”",
+ 54,
+ "He responded, “Indeed, you and your forefathers have been clearly astray.”",
+ 55,
+ "They asked, “Have you come to us with the truth, or is this a joke?”",
+ 56,
+ "He replied, “In fact, your Lord is the Lord of the heavens and the earth, Who created them ˹both˺. And to that I bear witness.”",
+ 57,
+ "˹Then he said to himself,˺ “By Allah! I will surely plot against your idols after you have turned your backs and gone away.”",
+ 58,
+ "So he smashed them into pieces, except the biggest of them, so they might turn to it ˹for answers˺.",
+ 59,
+ "They protested, “Who dared do this to our gods? It must be an evildoer!”",
+ 60,
+ "Some said, “We heard a young man, called Abraham, speaking ˹ill˺ of them.”",
+ 61,
+ "They demanded, “Bring him before the eyes of the people, so that they may witness ˹his trial˺.”",
+ 62,
+ "They asked, “Was it you who did this to our gods, O Abraham?”",
+ 63,
+ "He replied ˹sarcastically˺, “No, this one—the biggest of them—did it! So ask them, if they can talk!”",
+ 64,
+ "So they came back to their senses, saying ˹to one another˺, “You yourselves are truly the wrongdoers!”",
+ 65,
+ "Then they ˹quickly˺ regressed to their ˹original˺ mind-set, ˹arguing,˺ “You already know that those ˹idols˺ cannot talk.”",
+ 66,
+ "He rebuked ˹them˺, “Do you then worship—instead of Allah—what can neither benefit nor harm you in any way?",
+ 67,
+ "Shame on you and whatever you worship instead of Allah! Do you not have any sense?”",
+ 68,
+ "They concluded, “Burn him up to avenge your gods, if you must act.”",
+ 69,
+ "We ordered, “O fire! Be cool and safe for Abraham!”",
+ 70,
+ "They had sought to harm him, but We made them the worst losers.",
+ 71,
+ "Then We delivered him, along with Lot, to the land We had showered with blessings for all people.",
+ 72,
+ "And We blessed him with Isaac ˹as a son˺ and Jacob ˹as a grandson˺, as an additional favour—making all of them righteous.",
+ 73,
+ "We ˹also˺ made them leaders, guiding by Our command, and inspired them to do good deeds, establish prayer, and pay alms-tax. And they were devoted to Our worship.",
+ 74,
+ "And to Lot We gave wisdom and knowledge, and delivered him from the society engrossed in shameful practices. They were certainly an evil, rebellious people.",
+ 75,
+ "And We admitted him into Our mercy, ˹for˺ he was truly one of the righteous.",
+ 76,
+ "And ˹remember˺ when Noah had cried out to Us earlier, so We responded to him and delivered him and his family from the great distress.",
+ 77,
+ "And We made him prevail over those who had rejected Our signs. They were truly an evil people, so We drowned them all.",
+ 78,
+ "And ˹remember˺ when David and Solomon passed judgment regarding the crops ruined ˹at night˺ by someone’s sheep, and We were witness to their judgments.",
+ 79,
+ "We guided ˹young˺ Solomon to a fairer settlement, and granted each of them wisdom and knowledge. We subjected the mountains as well as the birds to hymn ˹Our praises˺ along with David. It is We Who did ˹it all˺.",
+ 80,
+ "We taught him the art of making body armour to protect you in battle. Will you then be grateful?",
+ 81,
+ "And to Solomon We subjected the raging winds, blowing by his command to the land We had showered with blessings. It is We Who know everything.",
+ 82,
+ "And ˹We subjected˺ some jinn that dived for him, and performed other duties. It is We Who kept them in check.",
+ 83,
+ "And ˹remember˺ when Job cried out to his Lord, “I have been touched with adversity, and You are the Most Merciful of the merciful.”",
+ 84,
+ "So We answered his prayer and removed his adversity, and gave him back his family, twice as many, as a mercy from Us and a lesson for the ˹devoted˺ worshippers.",
+ 85,
+ "And ˹remember˺ Ishmael, Enoch, and Ⱬul-Kifl. They were all steadfast.",
+ 86,
+ "We admitted them into Our mercy, for they were truly of the righteous.",
+ 87,
+ "And ˹remember˺ when the Man of the Whale stormed off ˹from his city˺ in a rage, thinking We would not restrain him. Then in the ˹veils of˺ darkness he cried out, “There is no god ˹worthy of worship˺ except You. Glory be to You! I have certainly done wrong.”",
+ 88,
+ "So We answered his prayer and rescued him from anguish. And so do We save the ˹true˺ believers.",
+ 89,
+ "And ˹remember˺ when Zachariah cried out to his Lord, “My Lord! Do not leave me childless, though You are the Best of Successors.”",
+ 90,
+ "So We answered his prayer, granted him John, and made his wife fertile. Indeed, they used to race in doing good, and call upon Us with hope and fear, totally humbling themselves before Us.",
+ 91,
+ "And ˹remember˺ the one who guarded her chastity, so We breathed into her through Our angel, ˹Gabriel,˺ making her and her son a sign for all peoples.",
+ 92,
+ "˹O prophets!˺ Indeed, this religion of yours is ˹only˺ one, and I am your Lord, so worship Me ˹alone˺.",
+ 93,
+ "Yet the people have divided it into sects. But to Us they will all return.",
+ 94,
+ "So whoever does good and is a believer will never be denied ˹the reward for˺ their striving, for We are recording it all.",
+ 95,
+ "It is impossible for a society which We have destroyed to ever rise again,",
+ 96,
+ "until ˹after˺ Gog and Magog have broken loose ˹from the barrier˺, swarming down from every hill,",
+ 97,
+ "ushering in the True Promise. Then—behold!—the disbelievers will stare ˹in horror, crying,˺ “Oh, woe to us! We have truly been heedless of this. In fact, we have been wrongdoers.”",
+ 98,
+ "Certainly you ˹disbelievers˺ and whatever you worship instead of Allah will be the fuel of Hell. You are ˹all˺ bound to enter it.",
+ 99,
+ "Had those idols been ˹true˺ gods, they would not have entered it. And they will be there forever.",
+ 100,
+ "In it they will groan, and will not be able to hear.",
+ 101,
+ "Surely those for whom We have destined the finest reward will be kept far away from Hell,",
+ 102,
+ "not even hearing the slightest hissing from it. And they will delight forever in what their souls desire.",
+ 103,
+ "The Supreme Horror ˹of that Day˺ will not disturb them, and the angels will greet them, ˹saying,˺ “This is your Day, which you have been promised.”",
+ 104,
+ "On that Day We will roll up the heavens like a scroll of writings. Just as We produced the first creation, ˹so˺ shall We reproduce it. That is a promise binding on Us. We truly uphold ˹Our promises˺!",
+ 105,
+ "Surely, following the ˹heavenly˺ Record, We decreed in the Scriptures: “My righteous servants shall inherit the land.”",
+ 106,
+ "Surely this ˹Quran˺ is sufficient ˹as a reminder˺ for those devoted to worship.",
+ 107,
+ "We have sent you ˹O Prophet˺ only as a mercy for the whole world.",
+ 108,
+ "Say, “What has been revealed to me is this: ‘Your God is only One God.’ Will you then submit?”",
+ 109,
+ "If they turn away, then say, “I have warned you all equally. I do not know if what you are threatened with is near or far.",
+ 110,
+ "Allah surely knows what you say openly and whatever you hide.",
+ 111,
+ "I do not know if this ˹delay˺ is possibly a test for you and an enjoyment for a while.”",
+ 112,
+ "˹In the end,˺ the Prophet said, “My Lord! Judge ˹between us˺ in truth. And our Lord is the Most Compassionate, Whose help is sought against what you claim.” "
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/22.json b/share/quran-json/TheQuran/en/22.json
new file mode 100644
index 0000000..c3b6a38
--- /dev/null
+++ b/share/quran-json/TheQuran/en/22.json
@@ -0,0 +1,172 @@
+[
+ {
+ "id": "22",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Hajj",
+ "translated_name": "The Pilgrimage",
+ "verse_count": 78,
+ "slug": "al-hajj",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1580
+ ]
+ },
+ 1,
+ "O humanity! Fear your Lord, for the ˹violent˺ quaking at the Hour is surely a dreadful thing.",
+ 2,
+ "The Day you see it, every nursing mother will abandon what she is nursing, and every pregnant woman will deliver her burden ˹prematurely˺. And you will see people ˹as if they were˺ drunk, though they will not be drunk; but the torment of Allah is ˹terribly˺ severe.",
+ 3,
+ "˹Still˺ there are some who dispute about Allah without knowledge, and follow every rebellious devil.",
+ 4,
+ "It has been decreed for such devils that whoever takes them as a guide will be misguided and led by them into the torment of the Blaze.",
+ 5,
+ "O humanity! If you are in doubt about the Resurrection, then ˹know that˺ We did create you from dust, then from a sperm-drop, then ˹developed you into˺ a clinging clot ˹of blood˺, then a lump of flesh—fully formed or unformed—in order to demonstrate ˹Our power˺ to you. ˹Then˺ We settle whatever ˹embryo˺ We will in the womb for an appointed term, then bring you forth as infants, so that you may reach your prime. Some of you ˹may˺ die ˹young˺, while others are left to reach the most feeble stage of life so that they may know nothing after having known much. And you see the earth lifeless, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell, producing every type of pleasant plant.",
+ 6,
+ "That is because Allah ˹alone˺ is the Truth, He ˹alone˺ gives life to the dead, and He ˹alone˺ is Most Capable of everything.",
+ 7,
+ "And certainly the Hour is coming, there is no doubt about it. And Allah will surely resurrect those in the graves.",
+ 8,
+ "˹Still˺ there are some who dispute about Allah without knowledge, guidance, or an enlightening scripture,",
+ 9,
+ "turning away ˹in pride˺ to lead ˹others˺ astray from Allah’s Way. They will suffer disgrace in this world, and on the Day of Judgment We will make them taste the torment of burning.",
+ 10,
+ "˹They will be told,˺ “This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation.”",
+ 11,
+ "And there are some who worship Allah on the verge ˹of faith˺: if they are blessed with something good, they are content with it; but if they are afflicted with a trial, they relapse ˹into disbelief˺, losing this world and the Hereafter. That is ˹truly˺ the clearest loss.",
+ 12,
+ "They call besides Allah what can neither harm nor benefit them. That is ˹truly˺ the farthest one can stray.",
+ 13,
+ "They invoke those whose worship leads to harm, not benefit. What an evil patron and what an evil associate!",
+ 14,
+ "Indeed, Allah will admit those who believe and do good into Gardens, under which rivers flow. Surely Allah does what He wills.",
+ 15,
+ "Whoever thinks that Allah will not help His Prophet in this world and the Hereafter, let them stretch out a rope to the ceiling and strangle themselves, then let them see if this plan will do away with ˹the cause of˺ their rage. ",
+ 16,
+ "And so We revealed this ˹Quran˺ as clear verses. And Allah certainly guides whoever He wills.",
+ 17,
+ "Indeed, the believers, Jews, Sabians, Christians, Magi, and the polytheists—Allah will judge between them ˹all˺ on Judgment Day. Surely Allah is a Witness over all things.",
+ 18,
+ "Do you not see that to Allah bow down ˹in submission˺ all those in the heavens and all those on the earth, as well as the sun, the moon, the stars, the mountains, the trees, and ˹all˺ living beings, as well as many humans, while many are deserving of punishment. And whoever Allah disgraces, none can honour. Surely Allah does what He wills.",
+ 19,
+ "These are two opposing groups that disagree about their Lord: as for the disbelievers, garments of Fire will be cut out for them and boiling water will be poured over their heads,",
+ 20,
+ "melting whatever is in their bellies, along with their skin.",
+ 21,
+ "And awaiting them are maces of iron.",
+ 22,
+ "Whenever they try to escape from Hell—out of anguish—they will be forced back into it, ˹and will be told,˺ “Taste the torment of burning!”",
+ 23,
+ "˹But˺ Allah will surely admit those who believe and do good into Gardens, under which rivers flow, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk,",
+ 24,
+ "for they have been guided to the best of speech, and they have been guided to the Commendable Path. ",
+ 25,
+ "Indeed, those who persist in disbelief and hinder ˹others˺ from the Way of Allah and from the Sacred Mosque—which We have appointed for all people, residents and visitors alike—along with whoever intends to deviate by doing wrong in it, We will cause them to taste a painful punishment.",
+ 26,
+ "And ˹remember˺ when We assigned to Abraham the site of the House, ˹saying,˺ “Do not associate anything with Me ˹in worship˺ and purify My House for those who circle ˹the Ka’bah˺, stand ˹in prayer˺, and bow and prostrate themselves.",
+ 27,
+ "Call ˹all˺ people to the pilgrimage. They will come to you on foot and on every lean camel from every distant path,",
+ 28,
+ "so they may obtain the benefits ˹in store˺ for them, and pronounce the Name of Allah on appointed days over the sacrificial animals He has provided for them. So eat from their meat and feed the desperately poor.",
+ 29,
+ "Then let them groom themselves, fulfil their vows, and circle the Ancient House.”",
+ 30,
+ "That is so. And whoever honours the rituals of Allah, it is best for them in the sight of their Lord. The ˹meat of˺ cattle has been made lawful for you, except what has ˹already˺ been recited to you. So shun the impurity of idolatry, and shun words of falsehood.",
+ 31,
+ "Be upright ˹in devotion˺ to Allah, associating none with Him ˹in worship˺. For whoever associates ˹others˺ with Allah is like someone who has fallen from the sky and is either snatched away by birds or swept by the wind to a remote place.",
+ 32,
+ "That is so. And whoever honours the symbols of Allah, it is certainly out of the piety of the heart.",
+ 33,
+ "You may benefit from sacrificial animals for an appointed term, then their place of sacrifice is at the Ancient House.",
+ 34,
+ "For every community We appointed a rite of sacrifice so that they may pronounce the Name of Allah over the sacrificial animals He has provided for them. For your God is only One God, so submit yourselves to Him ˹alone˺. And give good news ˹O Prophet˺ to the humble:",
+ 35,
+ "those whose hearts tremble at the remembrance of Allah, who patiently endure whatever may befall them, and who establish prayer and donate from what We have provided for them.",
+ 36,
+ "We have made sacrificial camels ˹and cattle˺ among the symbols of Allah, in which there is ˹much˺ good for you. So pronounce the Name of Allah over them when they are lined up ˹for sacrifice˺. Once they have fallen ˹lifeless˺ on their sides, you may eat from their meat, and feed the needy—those who do not beg, and those who do. In this way We have subjected these ˹animals˺ to you so that you may be grateful.",
+ 37,
+ "Neither their meat nor blood reaches Allah. Rather, it is your piety that reaches Him. This is how He has subjected them to you so that you may proclaim the greatness of Allah for what He has guided you to, and give good news to the good-doers.",
+ 38,
+ "Indeed, Allah defends those who believe. Surely Allah does not like whoever is deceitful, ungrateful.",
+ 39,
+ "Permission ˹to fight back˺ is ˹hereby˺ granted to those being fought, for they have been wronged. And Allah is truly Most Capable of helping them ˹prevail˺.",
+ 40,
+ "˹They are˺ those who have been expelled from their homes for no reason other than proclaiming: “Our Lord is Allah.” Had Allah not repelled ˹the aggression of˺ some people by means of others, destruction would have surely claimed monasteries, churches, synagogues, and mosques in which Allah’s Name is often mentioned. Allah will certainly help those who stand up for Him. Allah is truly All-Powerful, Almighty.",
+ 41,
+ "˹They are˺ those who, if established in the land by Us, would perform prayer, pay alms-tax, encourage what is good, and forbid what is evil. And with Allah rests the outcome of all affairs.",
+ 42,
+ "If they deny you ˹O Prophet˺, so did the people of Noah before them, as well as ˹the tribes of˺ ’Ȃd and Thamûd,",
+ 43,
+ "the people of Abraham, the people of Lot,",
+ 44,
+ "and the residents of Midian. And Moses was denied ˹too˺. But I delayed ˹the fate of˺ the disbelievers ˹until their appointed time˺ then seized them. And how severe was My response!",
+ 45,
+ "Many are the societies We have destroyed for persisting in wrongdoing, leaving them in total ruin. ˹Many are˺ also the abandoned wells and lofty palaces!",
+ 46,
+ "Have they not travelled throughout the land so their hearts may reason, and their ears may listen? Indeed, it is not the eyes that are blind, but it is the hearts in the chests that grow blind.",
+ 47,
+ "They challenge you ˹O Prophet˺ to hasten the torment. And Allah will never fail in His promise. But a day with your Lord is indeed like a thousand years by your counting.",
+ 48,
+ "Many are the societies whose end We delayed while they did wrong, then seized them. And to Me is the final return.",
+ 49,
+ "Say, ˹O Prophet,˺ “O humanity! I am only sent to you with a clear warning.",
+ 50,
+ "So those who believe and do good will have forgiveness and an honourable provision.",
+ 51,
+ "But those who strive to discredit Our revelations, they will be the residents of the Hellfire.”",
+ 52,
+ "Whenever We sent a messenger or a prophet before you ˹O Prophet˺ and he recited ˹Our revelations˺, Satan would influence ˹people’s understanding of˺ his recitation. But ˹eventually˺ Allah would eliminate Satan’s influence. Then Allah would ˹firmly˺ establish His revelations. And Allah is All-Knowing, All-Wise.",
+ 53,
+ "All that so He may make Satan’s influence a trial for those ˹hypocrites˺ whose hearts are sick and those ˹disbelievers˺ whose hearts are hardened. Surely the wrongdoers are totally engrossed in opposition.",
+ 54,
+ "˹This is˺ also so that those gifted with knowledge would know that this ˹revelation˺ is the truth from your Lord, so they have faith in it, and so their hearts would submit humbly to it. And Allah surely guides the believers to the Straight Path.",
+ 55,
+ "Yet the disbelievers will persist in doubt about this ˹revelation˺ until the Hour takes them by surprise, or the torment of a terminating Day comes to them.",
+ 56,
+ "All authority on that Day is for Allah ˹alone˺. He will judge between them. So those who believe and do good will be in the Gardens of Bliss.",
+ 57,
+ "But those who disbelieve and deny Our revelations, it is they who will suffer a humiliating punishment.",
+ 58,
+ "As for those who emigrate in the cause of Allah and then are martyred or die, Allah will indeed grant them a good provision. Surely Allah is the Best Provider.",
+ 59,
+ "He will certainly admit them into a place they will be pleased with. For Allah is truly All-Knowing, Most Forbearing.",
+ 60,
+ "That is so. And whoever retaliates in equivalence to the injury they have received, and then are wronged ˹again˺, Allah will certainly help them. Surely Allah is Ever-Pardoning, All-Forgiving.",
+ 61,
+ "That is because Allah causes the night to merge into the day, and the day into the night. Indeed, Allah is All-Hearing, All-Seeing.",
+ 62,
+ "That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and Allah ˹alone˺ is truly the Most High, All-Great.",
+ 63,
+ "Do you not see that Allah sends down rain from the sky, then the earth becomes green? Surely Allah is Most Subtle, All-Aware.",
+ 64,
+ "To Him belongs whatever is in the heavens and whatever is on the earth. Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.",
+ 65,
+ "Do you not see that Allah has subjected to you whatever is in the earth as well as the ships ˹that˺ sail through the sea by His command? He keeps the sky from falling down on the earth except by His permission. Surely Allah is Ever Gracious and Most Merciful to humanity.",
+ 66,
+ "And He is the One Who gave you life, then will cause you to die, and then will bring you back to life. ˹But˺ surely humankind is ever ungrateful.",
+ 67,
+ "For every community We appointed a code of life to follow. So do not let them dispute with you ˹O Prophet˺ in this matter. And invite ˹all˺ to your Lord, for you are truly on the Right Guidance.",
+ 68,
+ "But if they argue with you, then say, “Allah knows best what you do.”",
+ 69,
+ "Allah will judge between you ˹all˺ on Judgment Day regarding your differences.",
+ 70,
+ "Do you not know that Allah ˹fully˺ knows whatever is in the heavens and the earth? Surely it is all ˹written˺ in a Record. That is certainly easy for Allah.",
+ 71,
+ "Yet they worship besides Allah that for which He has sent down no authority, and of which they have no knowledge. The wrongdoers will have no helper.",
+ 72,
+ "Whenever Our clear revelations are recited to them, you ˹O Prophet˺ recognize rage on the faces of the disbelievers, as if they are going to snap at those who recite Our revelations to them. Say, “Shall I inform you of something far more enraging than that? ˹It is˺ the Fire with which Allah has threatened those who disbelieve. What an evil destination!”",
+ 73,
+ "O humanity! A lesson is set forth, so listen to it ˹carefully˺: those ˹idols˺ you invoke besides Allah can never create ˹so much as˺ a fly, even if they ˹all˺ were to come together for that. And if a fly were to snatch anything away from them, they cannot ˹even˺ retrieve it from the fly. How powerless are those who invoke and those invoked!",
+ 74,
+ "They have not shown Allah the reverence He deserves. Surely Allah is All-Powerful, Almighty.",
+ 75,
+ "Allah selects messengers from both angels and people, for Allah is truly All-Hearing, All-Seeing.",
+ 76,
+ "He knows what is ahead of them and what is behind them. And to Allah ˹all˺ matters will be returned ˹for judgment˺.",
+ 77,
+ "O believers! Bow down, prostrate yourselves, worship your Lord, and do ˹what is˺ good so that you may be successful.",
+ 78,
+ "Strive for ˹the cause of˺ Allah in the way He deserves, for ˹it is˺ He ˹Who˺ has chosen you, and laid upon you no hardship in the religion—the way of your forefather Abraham. ˹It is Allah˺ Who named you ‘the ones who submit’ ˹in the˺ earlier ˹Scriptures˺ and in this ˹Quran˺, so that the Messenger may be a witness over you, and that you may be witnesses over humanity. So establish prayer, pay alms-tax, and hold fast to Allah. He ˹alone˺ is your Guardian. What an excellent Guardian, and what an excellent Helper!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/23.json b/share/quran-json/TheQuran/en/23.json
new file mode 100644
index 0000000..aac47ea
--- /dev/null
+++ b/share/quran-json/TheQuran/en/23.json
@@ -0,0 +1,256 @@
+[
+ {
+ "id": "23",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Mu'minun",
+ "translated_name": "The Believers",
+ "verse_count": 118,
+ "slug": "al-muminun",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1572,
+ 1605,
+ 1606,
+ 1608,
+ 1606
+ ]
+ },
+ 1,
+ "Successful indeed are the believers:",
+ 2,
+ "those who humble themselves in prayer;",
+ 3,
+ "those who avoid idle talk;",
+ 4,
+ "those who pay alms-tax;",
+ 5,
+ "those who guard their chastity",
+ 6,
+ "except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,",
+ 7,
+ "but whoever seeks beyond that are the transgressors;",
+ 8,
+ "˹the believers are also˺ those who are true to their trusts and covenants;",
+ 9,
+ "and those who are ˹properly˺ observant of their prayers.",
+ 10,
+ "These are the ones who will be awarded",
+ 11,
+ "Paradise as their own. They will be there forever.",
+ 12,
+ "And indeed, We created humankind from an extract of clay,",
+ 13,
+ "then placed each ˹human˺ as a sperm-drop in a secure place,",
+ 14,
+ "then We developed the drop into a clinging clot ˹of blood˺, then developed the clot into a lump ˹of flesh˺, then developed the lump into bones, then clothed the bones with flesh, then We brought it into being as a new creation. So Blessed is Allah, the Best of Creators.",
+ 15,
+ "After that you will surely die,",
+ 16,
+ "then on the Day of Judgment you will be resurrected.",
+ 17,
+ "And indeed, We created above you seven levels ˹of heaven˺. We are never unmindful of ˹Our˺ creation.",
+ 18,
+ "We send down rain from the sky in perfect measure, causing it to soak into the earth. And We are surely able to take it away.",
+ 19,
+ "With it We produce for you gardens of palm trees and grapevines, in which there are abundant fruits, and from which you may eat,",
+ 20,
+ "as well as ˹olive˺ trees which grow at Mount Sinai, providing oil and a condiment to eat.",
+ 21,
+ "And there is certainly a lesson for you in cattle, from whose bellies We give you ˹milk˺ to drink, and in them are many other benefits for you, and from them you may eat.",
+ 22,
+ "And you are carried upon ˹some of˺ them and upon ships.",
+ 23,
+ "Indeed, We sent Noah to his people. He declared, “O my people! Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?”",
+ 24,
+ "But the disbelieving chiefs of his people said ˹to the masses˺, “This is only a human like you, who wants to be superior to you. Had Allah willed, He could have easily sent down angels ˹instead˺. We have never heard of this in ˹the history of˺ our forefathers.",
+ 25,
+ "He is simply insane, so bear with him for a while.” ",
+ 26,
+ "Noah prayed, “My Lord! Help me, because they have denied ˹me˺.”",
+ 27,
+ "So We inspired him: “Build the Ark under Our ˹watchful˺ Eyes and directions. Then when Our command comes and the oven bursts ˹with water˺, take on board a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed. And do not plead with Me for those who have done wrong, for they will surely be drowned.”",
+ 28,
+ "Then when you and those with you have settled in the Ark, say, “All praise is for Allah, Who saved us from the wrongdoing people.”",
+ 29,
+ "And pray, “My Lord! Allow me a blessed landing, for You are the best accommodator.”",
+ 30,
+ "Surely in this are lessons. And We ˹always˺ put ˹people˺ to the test.",
+ 31,
+ "Then We raised another generation after them,",
+ 32,
+ "and sent to them a messenger from among themselves, ˹declaring,˺ “Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?”",
+ 33,
+ "But the chiefs of his people—who disbelieved, denied the meeting ˹with Allah˺ in the Hereafter, and were spoiled by the worldly luxuries We had provided for them—said ˹to the masses˺, “This is only a human like you. He eats what you eat, and drinks what you drink.",
+ 34,
+ "And if you ˹ever˺ obey a human like yourselves, then you would certainly be losers.",
+ 35,
+ "Does he promise you that once you are dead and reduced to dust and bones, you will be brought forth ˹alive˺?",
+ 36,
+ "Impossible, simply impossible is what you are promised!",
+ 37,
+ "There is nothing beyond our worldly life. We die, others are born, and none will be resurrected.",
+ 38,
+ "He is no more than a man who has fabricated a lie about Allah, and we will never believe in him.”",
+ 39,
+ "The messenger prayed, “My Lord! Help me, because they have denied ˹me˺.”",
+ 40,
+ "Allah responded, “Soon they will be truly regretful.”",
+ 41,
+ "Then the ˹mighty˺ blast overtook them with justice, and We reduced them to rubble. So away with the wrongdoing people!",
+ 42,
+ "Then We raised other generations after them.",
+ 43,
+ "No people can advance their doom, nor can they delay it.",
+ 44,
+ "Then We sent Our messengers in succession: whenever a messenger came to his people, they denied him. So We destroyed them, one after the other, reducing them to ˹cautionary˺ tales. So away with the people who refuse to believe!",
+ 45,
+ "Then We sent Moses and his brother Aaron with Our signs and compelling proof",
+ 46,
+ "to Pharaoh and his chiefs, but they behaved arrogantly and were a tyrannical people.",
+ 47,
+ "They argued, “Will we believe in two humans, like ourselves, whose people are slaves to us?”",
+ 48,
+ "So they rejected them both, and ˹so˺ were among those destroyed.",
+ 49,
+ "And We certainly gave Moses the Scripture, so perhaps his people would be ˹rightly˺ guided.",
+ 50,
+ "And We made the son of Mary and his mother a sign, and gave them refuge on high ground—a ˹suitable˺ place for rest with flowing water.",
+ 51,
+ "O messengers! Eat from what is good and lawful, and act righteously. Indeed, I fully know what you do.",
+ 52,
+ "Surely this religion of yours is ˹only˺ one, and I am your Lord, so fear Me ˹alone˺.",
+ 53,
+ "Yet the people have divided it into different sects, each rejoicing in what they have.",
+ 54,
+ "So leave them ˹O Prophet˺ in their heedlessness for a while.",
+ 55,
+ "Do they think, since We provide them with wealth and children,",
+ 56,
+ "that We hasten to ˹honour˺ them ˹with˺ all kinds of good? No! They are not aware.",
+ 57,
+ "Surely those who tremble in awe of their Lord,",
+ 58,
+ "and who believe in the revelations of their Lord,",
+ 59,
+ "and who associate none with their Lord,",
+ 60,
+ "and who do whatever ˹good˺ they do with their hearts fearful, ˹knowing˺ that they will return to their Lord—",
+ 61,
+ "it is they who race to do good deeds, always taking the lead.",
+ 62,
+ "We never require of any soul more than what it can afford. And with Us is a record which speaks the truth. None will be wronged.",
+ 63,
+ "But the hearts of those ˹who disbelieve˺ are oblivious to ˹all of˺ this, and they have other ˹evil˺ deeds, opposite to this, in which they are engrossed.",
+ 64,
+ "But as soon as We seize their elite with torment, they start to cry for help.",
+ 65,
+ "˹They will be told,˺ “Do not cry for help today. Surely you will never be saved from Us.",
+ 66,
+ "Indeed, My revelations were recited to you, but you used to back away ˹in disgust˺,",
+ 67,
+ "boasting of the Sacred House, and babbling ˹nonsense about the Quran˺ by night.”",
+ 68,
+ "Is it because they have never contemplated the Word ˹of Allah˺? Or ˹because˺ there has come to them something that did not come to their forefathers?",
+ 69,
+ "Or ˹because˺ they failed to recognize their Messenger, and so they denied him?",
+ 70,
+ "Or ˹because˺ they say, “He is insane?” In fact, he has come to them with the truth, but most of them are resentful of the truth.",
+ 71,
+ "Had the truth followed their desires, the heavens, the earth, and all those in them would have certainly been corrupted. In fact, We have brought them ˹the means to˺ their glory, but they turn away from it.",
+ 72,
+ "Or ˹is it because˺ you ˹O Prophet˺ are asking them for tribute? But the reward of your Lord is best, for He is the Best Provider.",
+ 73,
+ "And surely you are calling them to the Straight Path,",
+ 74,
+ "but those who disbelieve in the Hereafter are certainly deviating from that Path.",
+ 75,
+ "˹Even˺ if We had mercy on them and removed their affliction, they would still persist in their transgression, wandering blindly.",
+ 76,
+ "And We have already seized them with torment, but they never humbled themselves to their Lord, nor did they ˹submissively˺ appeal ˹to Him˺.",
+ 77,
+ "But as soon as We open for them a gate of severe punishment, they will be utterly desperate.",
+ 78,
+ "He is the One Who created for you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.",
+ 79,
+ "And He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered.",
+ 80,
+ "And He is the One Who gives life and causes death, and to Him belongs the alternation of the day and night. Will you not then understand?",
+ 81,
+ "But they ˹just˺ say what their predecessors said.",
+ 82,
+ "They said, “Once we are dead and reduced to dust and bones, will we really be resurrected?",
+ 83,
+ "We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!”",
+ 84,
+ "Ask ˹them, O Prophet˺, “To whom belong the earth and all those on it, if you ˹really˺ know?”",
+ 85,
+ "They will reply, “To Allah!” Say, “Why are you not then mindful?”",
+ 86,
+ "˹And˺ ask ˹them˺, “Who is the Lord of the seven heavens and the Lord of the Mighty Throne?”",
+ 87,
+ "They will reply, “Allah.” Say, “Will you not then fear ˹Him˺?”",
+ 88,
+ "Ask ˹them also,˺ “In Whose Hands is the authority over all things, protecting ˹all˺ while none can protect against Him, if you ˹really˺ know?”",
+ 89,
+ "They will reply, “Allah.” Say, “How are you then so deluded?”",
+ 90,
+ "In fact, We have brought them the truth, and they are certainly liars.",
+ 91,
+ "Allah has never had ˹any˺ offspring, nor is there any god besides Him. Otherwise, each god would have taken away what he created, and they would have tried to dominate one another. Glorified is Allah above what they claim!",
+ 92,
+ "˹He is the˺ Knower of the seen and unseen. Exalted is He above what they associate ˹with Him˺.",
+ 93,
+ "Say, ˹O Prophet,˺ “My Lord! Should You show me what they are threatened with,",
+ 94,
+ "then, my Lord, do not count me among the wrongdoing people.”",
+ 95,
+ "We are indeed able to show you what We have threatened them with.",
+ 96,
+ "Respond to evil with what is best. We know well what they claim.",
+ 97,
+ "And say, “My Lord! I seek refuge in You from the temptations of the devils.",
+ 98,
+ "And I seek refuge in You, my Lord, that they ˹even˺ come near me.”",
+ 99,
+ "When death approaches any of them, they cry, “My Lord! Let me go back,",
+ 100,
+ "so I may do good in what I left behind.” Never! It is only a ˹useless˺ appeal they make. And there is a barrier behind them until the Day they are resurrected. ",
+ 101,
+ "Then, when the Trumpet will be blown, there will be no kinship between them on that Day, nor will they ˹even care to˺ ask about one another. ",
+ 102,
+ "As for those whose scale is heavy ˹with good deeds˺, it is they who will be successful.",
+ 103,
+ "But those whose scale is light, they will have doomed themselves, staying in Hell forever.",
+ 104,
+ "The Fire will burn their faces, leaving them deformed.",
+ 105,
+ "˹It will be said,˺ “Were My revelations not recited to you, but you used to deny them?”",
+ 106,
+ "They will cry, “Our Lord! Our ill-fate took hold of us, so we became a misguided people.",
+ 107,
+ "Our Lord! Take us out of this ˹Fire˺. Then if we ever return ˹to denial˺, we will truly be wrongdoers.”",
+ 108,
+ "Allah will respond, “Be despised in there! Do not ˹ever˺ plead with Me ˹again˺!",
+ 109,
+ "Indeed, there was a group of My servants who used to pray, ‘Our Lord! We have believed, so forgive us and have mercy on us, for You are the best of those who show mercy,’",
+ 110,
+ "but you were ˹so busy˺ making fun of them that it made you forget My remembrance. And you used to laugh at them.",
+ 111,
+ "Today I have indeed rewarded them for their perseverance: they are certainly the triumphant.”",
+ 112,
+ "He will ask ˹them˺, “How many years did you remain on earth?”",
+ 113,
+ "They will reply, “We remained ˹only˺ a day or part of a day. But ask those who kept count.”",
+ 114,
+ "He will say, “You only remained for a little while, if only you knew.",
+ 115,
+ "Did you then think that We had created you without purpose, and that you would never be returned to Us?”",
+ 116,
+ "Exalted is Allah, the True King! There is no god ˹worthy of worship˺ except Him, the Lord of the Honourable Throne.",
+ 117,
+ "Whoever invokes, besides Allah, another god—for which they can have no proof—they will surely find their penalty with their Lord. Indeed, the disbelievers will never succeed.",
+ 118,
+ "Say, ˹O Prophet,˺ “My Lord! Forgive and have mercy, for You are the best of those who show mercy.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/24.json b/share/quran-json/TheQuran/en/24.json
new file mode 100644
index 0000000..0eeec54
--- /dev/null
+++ b/share/quran-json/TheQuran/en/24.json
@@ -0,0 +1,145 @@
+[
+ {
+ "id": "24",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "An-Nur",
+ "translated_name": "The Light",
+ "verse_count": 64,
+ "slug": "an-nur",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1608,
+ 1585
+ ]
+ },
+ 1,
+ "˹This is˺ a sûrah which We have revealed and made ˹its rulings˺ obligatory, and revealed in it clear commandments so that you may be mindful.",
+ 2,
+ "As for female and male fornicators, give each of them one hundred lashes, and do not let pity for them make you lenient in ˹enforcing˺ the law of Allah, if you ˹truly˺ believe in Allah and the Last Day. And let a number of believers witness their punishment.",
+ 3,
+ "A male fornicator would only marry a female fornicator or idolatress. And a female fornicator would only be married to a fornicator or idolater. This is ˹all˺ forbidden to the believers.",
+ 4,
+ "Those who accuse chaste women ˹of adultery˺ and fail to produce four witnesses, give them eighty lashes ˹each˺. And do not ever accept any testimony from them—for they are indeed the rebellious—",
+ 5,
+ "except those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.",
+ 6,
+ "And those who accuse their wives ˹of adultery˺ but have no witness except themselves, the accuser must testify, swearing four times by Allah that he is telling the truth,",
+ 7,
+ "and a fifth oath that Allah may condemn him if he is lying.",
+ 8,
+ "For her to be spared the punishment, she must swear four times by Allah that he is telling a lie,",
+ 9,
+ "and a fifth oath that Allah may be displeased with her if he is telling the truth.",
+ 10,
+ "˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Accepting of Repentance, All-Wise.",
+ 11,
+ "Indeed, those who came up with that ˹outrageous˺ slander are a group of you. Do not think this is bad for you. Rather, it is good for you. They will be punished, each according to their share of the sin. As for their mastermind, he will suffer a tremendous punishment.",
+ 12,
+ "If only the believing men and women had thought well of one another, when you heard this ˹rumour˺, and said, “This is clearly ˹an outrageous˺ slander!”",
+ 13,
+ "Why did they not produce four witnesses? Now, since they have failed to produce witnesses, they are ˹truly˺ liars in the sight of Allah.",
+ 14,
+ "Had it not been for Allah’s grace and mercy upon you in this world and the Hereafter, you would have certainly been touched with a tremendous punishment for what you plunged into—",
+ 15,
+ "when you passed it from one tongue to the other, and said with your mouths what you had no knowledge of, taking it lightly while it is ˹extremely˺ serious in the sight of Allah.",
+ 16,
+ "If only you had said upon hearing it, “How can we speak about such a thing! Glory be to You ˹O Lord˺! This is a heinous slander!”",
+ 17,
+ "Allah forbids you from ever doing something like this again, if you are ˹true˺ believers.",
+ 18,
+ "And Allah makes ˹His˺ commandments clear to you, for Allah is All-Knowing, All-Wise.",
+ 19,
+ "Indeed, those who love to see indecency spread among the believers will suffer a painful punishment in this life and the Hereafter. Allah knows and you do not know.",
+ 20,
+ "˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Ever Gracious, Most Merciful.",
+ 21,
+ "O believers! Do not follow the footsteps of Satan. Whoever follows Satan’s footsteps, then ˹let them know that˺ he surely bids ˹all to˺ immorality and wickedness. Had it not been for Allah’s grace and mercy upon you, none of you would have ever been purified. But Allah purifies whoever He wills. And Allah is All-Hearing, All-Knowing.",
+ 22,
+ "Do not let the people of virtue and affluence among you swear to suspend donations to their relatives, the needy, and the emigrants in the cause of Allah. Let them pardon and forgive. Do you not love to be forgiven by Allah? And Allah is All-Forgiving, Most Merciful. ",
+ 23,
+ "Surely those who accuse chaste, unsuspecting, believing women are cursed in this life and the Hereafter. And they will suffer a tremendous punishment",
+ 24,
+ "on the Day their tongues, hands, and feet will testify against them for what they used to do.",
+ 25,
+ "On that Day, Allah will give them their just penalty in full, and they will ˹come to˺ know that Allah ˹alone˺ is the Ultimate Truth.",
+ 26,
+ "Wicked women are for wicked men, and wicked men are for wicked women. And virtuous women are for virtuous men, and virtuous men are for virtuous women. The virtuous are innocent of what the wicked say. They will have forgiveness and an honourable provision. ",
+ 27,
+ "O believers! Do not enter any house other than your own until you have asked for permission and greeted its occupants. This is best for you, so perhaps you will be mindful.",
+ 28,
+ "If you find no one at home, do not enter it until you have been given permission. And if you are asked to leave, then leave. That is purer for you. And Allah has ˹perfect˺ knowledge of what you do.",
+ 29,
+ "There is no blame on you if you enter public places where there is something of benefit for you. And Allah knows what you reveal and what you conceal.",
+ 30,
+ "˹O Prophet!˺ Tell the believing men to lower their gaze and guard their chastity. That is purer for them. Surely Allah is All-Aware of what they do.",
+ 31,
+ "And tell the believing women to lower their gaze and guard their chastity, and not to reveal their adornments except what normally appears. Let them draw their veils over their chests, and not reveal their ˹hidden˺ adornments except to their husbands, their fathers, their fathers-in-law, their sons, their stepsons, their brothers, their brothers’ sons or sisters’ sons, their fellow women, those ˹bondwomen˺ in their possession, male attendants with no desire, or children who are still unaware of women’s nakedness. Let them not stomp their feet, drawing attention to their hidden adornments. Turn to Allah in repentance all together, O believers, so that you may be successful.",
+ 32,
+ "Marry off the ˹free˺ singles among you, as well as the righteous of your bondmen and bondwomen. If they are poor, Allah will enrich them out of His bounty. For Allah is All-Bountiful, All-Knowing.",
+ 33,
+ "And let those who do not have the means to marry keep themselves chaste until Allah enriches them out of His bounty. And if any of those ˹bondspeople˺ in your possession desires a deed of emancipation, make it possible for them, if you find goodness in them. And give them some of Allah’s wealth which He has granted you. Do not force your ˹slave˺ girls into prostitution for your own worldly gains while they wish to remain chaste. And if someone coerces them, then after such a coercion Allah is certainly All-Forgiving, Most Merciful ˹to them˺.",
+ 34,
+ "Indeed, We have sent down to you clear revelations, along with examples of those who had gone before you, and a lesson to the God-fearing.",
+ 35,
+ "Allah is the Light of the heavens and the earth. His light is like a niche in which there is a lamp, the lamp is in a crystal, the crystal is like a shining star, lit from ˹the oil of˺ a blessed olive tree, ˹located˺ neither to the east nor the west, whose oil would almost glow, even without being touched by fire. Light upon light! Allah guides whoever He wills to His light. And Allah sets forth parables for humanity. For Allah has ˹perfect˺ knowledge of all things.",
+ 36,
+ "˹That light shines˺ through houses ˹of worship˺ which Allah has ordered to be raised, and where His Name is mentioned. He is glorified there morning and evening",
+ 37,
+ "by men who are not distracted—either by buying or selling—from Allah’s remembrance, or performing prayer, or paying alms-tax. They fear a Day when hearts and eyes will tremble,",
+ 38,
+ "˹hoping˺ that Allah may reward them according to the best of their deeds, and increase them out of His grace. And Allah provides for whoever He wills without limit.",
+ 39,
+ "As for the disbelievers, their deeds are like a mirage in a desert, which the thirsty perceive as water, but when they approach it, they find it to be nothing. Instead, they find Allah there ˹in the Hereafter, ready˺ to settle their account. And Allah is swift in reckoning.",
+ 40,
+ "Or ˹their deeds are˺ like the darkness in a deep sea, covered by waves upon waves, topped by ˹dark˺ clouds. Darkness upon darkness! If one stretches out their hand, they can hardly see it. And whoever Allah does not bless with light will have no light!",
+ 41,
+ "Do you not see that Allah is glorified by all those in the heavens and the earth, even the birds as they soar? Each ˹instinctively˺ knows their manner of prayer and glorification. And Allah has ˹perfect˺ knowledge of all they do.",
+ 42,
+ "To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And to Allah is the final return.",
+ 43,
+ "Do you not see that Allah gently drives the clouds, then joins them together, piling them up into masses, from which you see raindrops come forth? And He sends down from the sky mountains ˹of clouds˺ loaded with hail, pouring it on whoever He wills and averting it from whoever He wills. The flash of the clouds’ lightning nearly takes away eyesight.",
+ 44,
+ "Allah alternates the day and night. Surely in this is a lesson for people of insight.",
+ 45,
+ "And Allah has created from water every living creature. Some of them crawl on their bellies, some walk on two legs, and some walk on four. Allah creates whatever He wills. Surely Allah is Most Capable of everything.",
+ 46,
+ "We have indeed sent down revelations clarifying ˹the truth˺. But Allah ˹only˺ guides whoever He wills to the Straight Path.",
+ 47,
+ "And the hypocrites say, “We believe in Allah and the Messenger, and we obey.” Then a group of them turns away soon after that. These are not ˹true˺ believers.",
+ 48,
+ "And as soon as they are called to Allah and His Messenger so he may judge between them, a group of them turns away.",
+ 49,
+ "But if the truth is in their favour, they come to him, fully submitting.",
+ 50,
+ "Is there a sickness in their hearts? Or are they in doubt? Or do they fear that Allah and His Messenger will be unjust to them? In fact, it is they who are the ˹true˺ wrongdoers.",
+ 51,
+ "The only response of the ˹true˺ believers, when they are called to Allah and His Messenger so he may judge between them, is to say, “We hear and obey.” It is they who will ˹truly˺ succeed.",
+ 52,
+ "For whoever obeys Allah and His Messenger, and fears Allah and is mindful of Him, then it is they who will ˹truly˺ triumph.",
+ 53,
+ "They swear by Allah their most solemn oaths that if you ˹O Prophet˺ were to command them, they would certainly march forth ˹in Allah’s cause˺. Say, “˹You˺ do not ˹have to˺ swear; your obedience is well known!” Surely Allah is All-Aware of what you do.”",
+ 54,
+ "Say, “Obey Allah and obey the Messenger. But if you turn away, then he is only responsible for his duty and you are responsible for yours. And if you obey him, you will be ˹rightly˺ guided. The Messenger’s duty is only to deliver ˹the message˺ clearly.”",
+ 55,
+ "Allah has promised those of you who believe and do good that He will certainly make them successors in the land, as He did with those before them; and will surely establish for them their faith which He has chosen for them; and will indeed change their fear into security—˹provided that˺ they worship Me, associating nothing with Me. But whoever disbelieves after this ˹promise˺, it is they who will be the rebellious.",
+ 56,
+ "Moreover, establish prayer, pay alms-tax, and obey the Messenger, so you may be shown mercy.",
+ 57,
+ "Do not think ˹O Prophet˺ that the disbelievers can escape in the land. The Fire will be their home. Indeed, what an evil destination!",
+ 58,
+ "O believers! Let those ˹bondspeople˺ in your possession and those of you who are still under age ask for your permission ˹to come in˺ at three times: before dawn prayer, when you take off your ˹outer˺ clothes at noon, and after the late evening prayer. ˹These are˺ three times of privacy for you. Other than these times, there is no blame on you or them to move freely, attending to one another. This is how Allah makes the revelations clear to you, for Allah is All-Knowing, All-Wise.",
+ 59,
+ "And when your children reach the age of puberty, let them seek permission ˹to come in˺, as their seniors do. This is how Allah makes His revelations clear to you, for Allah is All-Knowing, All-Wise.",
+ 60,
+ "As for elderly women past the age of marriage, there is no blame on them if they take off their ˹outer˺ garments, without revealing their adornments. But it is better for them if they avoid this ˹altogether˺. And Allah is All-Hearing, All-Knowing.",
+ 61,
+ "There is no restriction on the blind, or the disabled, or the sick. Nor on yourselves if you eat from your homes, or the homes of your fathers, or your mothers, or your brothers, or your sisters, or your paternal uncles, or your paternal aunts, or your maternal uncles, or your maternal aunts, or from the homes in your trust, or ˹the homes of˺ your friends. There is no blame on you eating together or separately. However, when you enter houses, greet one another with a greeting ˹of peace˺ from Allah, blessed and good. This is how Allah makes His revelations clear to you, so perhaps you will understand.",
+ 62,
+ "The ˹true˺ believers are only those who believe in Allah and His Messenger, and when they are with him on a public matter, they do not leave without his permission. Indeed, those who ask your permission ˹O Prophet˺ are the ones who ˹truly˺ believe in Allah and His Messenger. So when they ask your permission for a private matter, grant permission to whoever you wish and ask Allah’s forgiveness for them. Surely Allah is All-Forgiving, Most Merciful.",
+ 63,
+ "Do not treat the Messenger’s summons to you ˹as lightly˺ as your summons to one another. Allah certainly knows those of you who slip away, hiding behind others. So let those who disobey his orders beware, for an affliction may befall them, or a painful torment may overtake them.",
+ 64,
+ "Surely to Allah belongs whatever is in the heavens and the earth. He knows well what you stand for. And ˹on˺ the Day all will be returned to Him, He will inform them of what they did. For Allah has ˹perfect˺ knowledge of all things."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/25.json b/share/quran-json/TheQuran/en/25.json
new file mode 100644
index 0000000..0c269e5
--- /dev/null
+++ b/share/quran-json/TheQuran/en/25.json
@@ -0,0 +1,173 @@
+[
+ {
+ "id": "25",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Furqan",
+ "translated_name": "The Criterion",
+ "verse_count": 77,
+ "slug": "al-furqan",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1585,
+ 1602,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Blessed is the One Who sent down the Standard to His servant, so that he may be a warner to the whole world.",
+ 2,
+ "˹Allah is˺ the One to Whom belongs the kingdom of the heavens and the earth, Who has never had ˹any˺ offspring, nor does He have a partner in ˹governing˺ the kingdom. He has created everything, ordaining it precisely.",
+ 3,
+ "Yet they have taken besides Him gods who cannot create anything but are themselves created. Nor can they protect or benefit themselves. Nor can they control life, death, or resurrection.",
+ 4,
+ "The disbelievers say, “This ˹Quran˺ is nothing but a fabrication which he made up with the help of others.” Their claim is totally unjustified and untrue!",
+ 5,
+ "And they say, “˹These revelations are only˺ ancient fables which he has had written down, and they are rehearsed to him morning and evening.”",
+ 6,
+ "Say, ˹O Prophet,˺ “This ˹Quran˺ has been revealed by the One Who knows the secrets of the heavens and the earth. Surely He is All-Forgiving, Most Merciful.” ",
+ 7,
+ "And they say ˹mockingly˺, “What kind of messenger is this who eats food and goes about in market-places ˹for a living˺? If only an angel had been sent down with him to be his co-warner,",
+ 8,
+ "or a treasure had been cast down to him, or he had had a garden from which he may eat!” And the wrongdoers say ˹to the believers˺, “You are only following a bewitched man.”",
+ 9,
+ "See ˹O Prophet˺ how they call you names! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.",
+ 10,
+ "Blessed is the One Who—if He wills—can give you far better than ˹all˺ that: gardens under which rivers flow, and palaces as well.",
+ 11,
+ "In fact, they deny the Hour. And for the deniers of the Hour, We have prepared a blazing Fire.",
+ 12,
+ "Once it sees them from a distance, they will hear it fuming and growling.",
+ 13,
+ "And when they are tossed into a narrow place inside ˹Hell˺, chained together, then and there they will cry out for ˹instant˺ destruction.",
+ 14,
+ "˹They will be told,˺ “Do not cry only once for destruction, but cry many times over!”",
+ 15,
+ "Say, ˹O Prophet,˺ “Is this better or the Garden of Eternity which the righteous have been promised, as a reward and ˹an ultimate˺ destination?",
+ 16,
+ "There they will have whatever they wish for, forever. That is a promise ˹to be sought after˺, binding on your Lord.”",
+ 17,
+ "˹Watch for˺ the Day He will gather them along with what they used to worship besides Allah, and ask ˹the objects of worship˺, “Was it you who misled these servants of Mine, or did they stray from the Way ˹on their own˺?”",
+ 18,
+ "They will say, “Glory be to You! It was not right for ˹others like˺ us to take any lords besides You, but You allowed enjoyment for them and their forefathers ˹for so long˺ that they forgot ˹Your˺ remembrance and became a doomed people.”",
+ 19,
+ "˹The doomed will be told˺, “Your gods have clearly denied your claims. So now you can neither ward off ˹the punishment˺ nor get any help.” And whoever of you does wrong, We will make them taste a horrible punishment.",
+ 20,
+ "We never sent any messenger before you ˹O Prophet˺, who did not eat food and go about in market-places. We have made some of you a trial for others. Will you ˹not then˺ be patient? And your Lord is All-Seeing.",
+ 21,
+ "Those who do not expect to meet Us say, “If only the angels were sent down to us, or we could see our Lord!” They have certainly been carried away by their arrogance and have entirely exceeded all limits.",
+ 22,
+ "˹But˺ on the Day they will see the angels, there will be no good news for the wicked, who will cry, “Keep away! Away ˹from us˺!”",
+ 23,
+ "Then We will turn to whatever ˹good˺ deeds they did, reducing them to scattered dust.",
+ 24,
+ "˹But˺ on that Day the residents of Paradise will have the best settlement and the finest place to rest.",
+ 25,
+ "˹Watch for˺ the Day the heavens will burst with clouds, and the angels will be sent down in successive ranks.",
+ 26,
+ "True authority on that Day will belong ˹only˺ to the Most Compassionate. And it will be a hard day for the disbelievers.",
+ 27,
+ "And ˹beware of˺ the Day the wrongdoer will bite his nails ˹in regret˺ and say, “Oh! I wish I had followed the Way along with the Messenger!",
+ 28,
+ "Woe to me! I wish I had never taken so-and-so as a close friend.",
+ 29,
+ "It was he who truly made me stray from the Reminder after it had reached me.” And Satan has always betrayed humanity.",
+ 30,
+ "The Messenger has cried, “O my Lord! My people have indeed received this Quran with neglect.”",
+ 31,
+ "Similarly, We made enemies for every prophet from among the wicked, but sufficient is your Lord as a Guide and Helper.",
+ 32,
+ "The disbelievers say, “If only the Quran had been sent down to him all at once!” ˹We have sent it˺ as such ˹in stages˺ so We may reassure your heart with it. And We have revealed it at a deliberate pace.",
+ 33,
+ "Whenever they bring you an argument, We come to you with the right refutation and the best explanation.",
+ 34,
+ "Those who will be dragged into Hell on their faces will be in the worst place, and are ˹now˺ farthest from the ˹Right˺ Way.",
+ 35,
+ "We certainly gave Moses the Book and appointed his brother Aaron as his helper.",
+ 36,
+ "We had ordered ˹them˺, “Go to the people who would deny Our signs.” Then We annihilated the deniers entirely.",
+ 37,
+ "And when the people of Noah rejected the messengers, We drowned them, making them an example to humanity. And We have prepared a painful punishment for the wrongdoers.",
+ 38,
+ "Also ˹We destroyed˺ ’Ȃd, Thamûd, and the people of the Water-pit, as well as many peoples in between.",
+ 39,
+ "For each We set forth ˹various˺ lessons, and We ultimately destroyed each.",
+ 40,
+ "They have certainly passed by the city ˹of Sodom˺, which had been showered with a dreadful rain ˹of stones˺. Have they not seen its ruins? But they do not expect to be resurrected.",
+ 41,
+ "When they see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ “Is this the one that Allah has sent as a messenger?",
+ 42,
+ "He would have almost tricked us away from our gods, had we not been so devoted to them.” ˹But˺ soon they will know, when they face the punishment, who is far astray from the ˹Right˺ Way.",
+ 43,
+ "Have you seen ˹O Prophet˺ the one who has taken their own desires as their god? Will you then be a keeper over them?",
+ 44,
+ "Or do you think that most of them listen or understand? They are only like cattle—no, more than that, they are astray from the ˹Right˺ Way! ",
+ 45,
+ "Have you not seen how your Lord extends the shade—He could have simply made it ˹remain˺ still if He so willed—then We make the sun its guide,",
+ 46,
+ "causing the shade to retreat gradually? ",
+ 47,
+ "He is the One Who has made the night for you as a cover, and ˹made˺ sleep for resting, and the day for rising.",
+ 48,
+ "And He is the One Who sends the winds ushering in His mercy, and We send down pure rain from the sky,",
+ 49,
+ "giving life to a lifeless land, and providing water for countless animals and humans of Our Own creation.",
+ 50,
+ "We certainly disperse it among them so they may be mindful, but most people persist in ungratefulness.",
+ 51,
+ "Had We willed, We could have easily sent a warner to every society.",
+ 52,
+ "So do not yield to the disbelievers, but strive diligently against them with this ˹Quran˺.",
+ 53,
+ "And He is the One Who merges the two bodies of water: one fresh and palatable and the other salty and bitter, placing between them a barrier they cannot cross. ",
+ 54,
+ "And He is the One Who creates human beings from a ˹humble˺ liquid, then establishes for them bonds of kinship and marriage. For your Lord is Most Capable.",
+ 55,
+ "Yet they worship besides Allah what can neither benefit nor harm them. And the disbeliever always collaborates against their Lord.",
+ 56,
+ "And We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.",
+ 57,
+ "Say, “I do not ask you for any reward for this ˹message˺, but whoever wishes, let them pursue the Way to their Lord.”",
+ 58,
+ "Put your trust in the Ever-Living, Who never dies, and glorify His praises. Sufficient is He as All-Aware of the sins of His servants.",
+ 59,
+ "˹He is˺ the One Who created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. ˹He is˺ the Most Compassionate! Ask ˹none other than˺ the All-Knowledgeable about Himself.",
+ 60,
+ "When it is said to them, “Prostrate to the Most Compassionate,” they ask ˹in disgust˺, “What is ‘the Most Compassionate’? Will we prostrate to whatever you order us to?” And it only drives them farther away.",
+ 61,
+ "Blessed is the One Who has placed constellations in the sky, as well as a ˹radiant˺ lamp and a luminous moon.",
+ 62,
+ "And He is the One Who causes the day and the night to alternate, ˹as a sign˺ for whoever desires to be mindful or to be grateful.",
+ 63,
+ "The ˹true˺ servants of the Most Compassionate are those who walk on the earth humbly, and when the foolish address them ˹improperly˺, they only respond with peace.",
+ 64,
+ "˹They are˺ those who spend ˹a good portion of˺ the night, prostrating themselves and standing before their Lord.",
+ 65,
+ "˹They are˺ those who pray, “Our Lord! Keep the punishment of Hell away from us, for its punishment is indeed unrelenting.",
+ 66,
+ "It is certainly an evil place to settle and reside.”",
+ 67,
+ "˹They are˺ those who spend neither wastefully nor stingily, but moderately in between.",
+ 68,
+ "˹They are˺ those who do not invoke any other god besides Allah, nor take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right, nor commit fornication. And whoever does ˹any of˺ this will face the penalty.",
+ 69,
+ "Their punishment will be multiplied on the Day of Judgment, and they will remain in it forever, in disgrace.",
+ 70,
+ "As for those who repent, believe, and do good deeds, they are the ones whose evil deeds Allah will change into good deeds. For Allah is All-Forgiving, Most Merciful.",
+ 71,
+ "And whoever repents and does good has truly turned to Allah properly.",
+ 72,
+ "˹They are˺ those who do not bear false witness, and when they come across falsehood, they pass ˹it˺ by with dignity.",
+ 73,
+ "˹They are˺ those who, when reminded of the revelation of their Lord, do not turn a blind eye or a deaf ear to it.",
+ 74,
+ "˹They are˺ those who pray, “Our Lord! Bless us with ˹pious˺ spouses and offspring who will be the joy of our hearts, and make us models for the righteous.”",
+ 75,
+ "It is they who will be rewarded with ˹elevated˺ mansions ˹in Paradise˺ for their perseverance, and will be received with salutations and ˹greetings of˺ peace,",
+ 76,
+ "staying there forever. What an excellent place to settle and reside!",
+ 77,
+ "Say, ˹O Prophet,˺ “You ˹all˺ would not ˹even˺ matter to my Lord were it not for your faith ˹in Him˺. But now you ˹disbelievers˺ have denied ˹the truth˺, so the torment is bound to come.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/26.json b/share/quran-json/TheQuran/en/26.json
new file mode 100644
index 0000000..b5f02ba
--- /dev/null
+++ b/share/quran-json/TheQuran/en/26.json
@@ -0,0 +1,473 @@
+[
+ {
+ "id": "26",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ash-Shu'ara",
+ "translated_name": "The Poets",
+ "verse_count": 227,
+ "slug": "ash-shuara",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1588,
+ 1593,
+ 1585,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "Ṭâ-Sĩn-Mĩm.",
+ 2,
+ "These are the verses of the clear Book.",
+ 3,
+ "Perhaps you ˹O Prophet˺ will grieve yourself to death over their disbelief.",
+ 4,
+ "If We willed, We could send down upon them a ˹compelling˺ sign from the heavens, leaving their necks bent in ˹utter˺ submission to it.",
+ 5,
+ "Whatever new reminder comes to them from the Most Compassionate, they always turn away from it.",
+ 6,
+ "They have certainly denied ˹the truth˺, so they will soon face the consequences of their ridicule.",
+ 7,
+ "Have they failed to look at the earth, ˹to see˺ how many types of fine plants We have caused to grow in it?",
+ 8,
+ "Surely in this is a sign. Yet most of them would not believe.",
+ 9,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 10,
+ "˹Remember˺ when your Lord called out to Moses, “Go to the wrongdoing people—",
+ 11,
+ "the people of Pharaoh. Will they not fear ˹Allah˺?”",
+ 12,
+ "He replied, “My Lord! I fear that they will reject me.",
+ 13,
+ "And ˹so˺ my heart will be broken and my tongue will be tied. So send Aaron along ˹as a messenger˺.",
+ 14,
+ "Also, they have a charge against me, so I fear they may kill me.”",
+ 15,
+ "Allah responded, “Certainly not! So go, both of you, with Our signs. We will be with you, listening.",
+ 16,
+ "Go to Pharaoh and say, ‘We are messengers from the Lord of all worlds,",
+ 17,
+ "˹commanded to say:˺ ‘Let the Children of Israel go with us.’’”",
+ 18,
+ "Pharaoh protested, “Did we not raise you among us as a child, and you stayed several years of your life in our care?",
+ 19,
+ "Then you did what you did, being ˹utterly˺ ungrateful!”",
+ 20,
+ "Moses replied, “I did it then, lacking guidance.",
+ 21,
+ "So I fled from you when I feared you. Then my Lord granted me wisdom and made me one of the messengers.",
+ 22,
+ "How can that be a ‘favour,’ of which you remind me, when ˹it was only because˺ you ˹have˺ enslaved the Children of Israel?”",
+ 23,
+ "Pharaoh asked, “And what is ‘the Lord of all worlds’?”",
+ 24,
+ "Moses replied, “˹He is˺ the Lord of the heavens and the earth and everything in between, if only you had sure faith.”",
+ 25,
+ "Pharaoh said to those around him, “Did you hear ˹what he said˺?”",
+ 26,
+ "Moses added, “˹He is˺ your Lord and the Lord of your forefathers.”",
+ 27,
+ "Pharaoh said ˹mockingly˺, “Your messenger, who has been sent to you, must be insane.”",
+ 28,
+ "Moses responded: “˹He is˺ the Lord of the east and west, and everything in between, if only you had any sense.”",
+ 29,
+ "Pharaoh threatened, “If you take any other god besides me, I will certainly have you imprisoned.”",
+ 30,
+ "Moses responded, “Even if I bring you a clear proof?”",
+ 31,
+ "Pharaoh demanded, “Bring it then, if what you say is true.”",
+ 32,
+ "So he threw down his staff and—behold!—it became a real snake.",
+ 33,
+ "Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.",
+ 34,
+ "Pharaoh said to the chiefs around him, “He is indeed a skilled magician,",
+ 35,
+ "who seeks to drive you from your land by his magic. So what do you propose?”",
+ 36,
+ "They replied, “Let him and his brother wait and dispatch mobilizers to all cities",
+ 37,
+ "to bring you every skilled magician.”",
+ 38,
+ "So the magicians were assembled at the set time on the appointed day.",
+ 39,
+ "And the people were asked, “Will you join the gathering,",
+ 40,
+ "so that we may follow the magicians if they prevail?”",
+ 41,
+ "When the magicians came, they asked Pharaoh, “Shall we have a ˹suitable˺ reward if we prevail?”",
+ 42,
+ "He replied, “Yes, and you will then certainly be among those closest to me.”",
+ 43,
+ "Moses said to them, “Cast whatever you wish to cast.”",
+ 44,
+ "So they cast down their ropes and staffs, saying, “By Pharaoh’s might, it is we who will surely prevail.”",
+ 45,
+ "Then Moses threw down his staff, and—behold!—it devoured the objects of their illusion!",
+ 46,
+ "So the magicians fell down, prostrating.",
+ 47,
+ "They declared, “We ˹now˺ believe in the Lord of all worlds—",
+ 48,
+ "the Lord of Moses and Aaron.”",
+ 49,
+ "Pharaoh threatened, “How dare you believe in him before I give you permission? He must be your master who taught you magic, but soon you will see. I will certainly cut off your hands and feet on opposite sides, then crucify you all.”",
+ 50,
+ "They responded, “˹That would be˺ no harm! Surely to our Lord we will ˹all˺ return.",
+ 51,
+ "We really hope that our Lord will forgive our sins, as we are the first to believe.”",
+ 52,
+ "And We inspired Moses, ˹saying,˺ “Leave with My servants at night, for you will surely be pursued.”",
+ 53,
+ "Then Pharaoh sent mobilizers to all cities,",
+ 54,
+ "˹and said,˺ “These ˹outcasts˺ are just a handful of people,",
+ 55,
+ "who have really enraged us,",
+ 56,
+ "but we are all on the alert.”",
+ 57,
+ "So We lured the tyrants out of ˹their˺ gardens, springs,",
+ 58,
+ "treasures, and splendid residences.",
+ 59,
+ "So it was. And We awarded it ˹all˺ to the Children of Israel.",
+ 60,
+ "And so they pursued them at sunrise.",
+ 61,
+ "When the two groups came face to face, the companions of Moses cried out, “We are overtaken for sure.”",
+ 62,
+ "Moses reassured ˹them˺, “Absolutely not! My Lord is certainly with me—He will guide me.”",
+ 63,
+ "So We inspired Moses: “Strike the sea with your staff,” and the sea was split, each part was like a huge mountain.",
+ 64,
+ "We drew the pursuers to that place,",
+ 65,
+ "and delivered Moses and those with him all together.",
+ 66,
+ "Then We drowned the others.",
+ 67,
+ "Surely in this is a sign. Yet most of them would not believe.",
+ 68,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 69,
+ "Relate to them ˹O Prophet˺ the story of Abraham,",
+ 70,
+ "when he questioned his father and his people, “What is that you worship ˹besides Allah˺?”",
+ 71,
+ "They replied, “We worship idols, to which we are fully devoted.”",
+ 72,
+ "Abraham asked, “Can they hear you when you call upon them?",
+ 73,
+ "Or can they benefit or harm you?”",
+ 74,
+ "They replied, “No! But we found our forefathers doing the same.”",
+ 75,
+ "Abraham responded, “Have you ˹really˺ considered what you have been worshipping—",
+ 76,
+ "you and your ancestors?",
+ 77,
+ "They are ˹all˺ enemies to me, except the Lord of all worlds.",
+ 78,
+ "˹He is˺ the One Who created me, and He ˹alone˺ guides me.",
+ 79,
+ "˹He is˺ the One Who provides me with food and drink.",
+ 80,
+ "And He ˹alone˺ heals me when I am sick.",
+ 81,
+ "And He ˹is the One Who˺ will cause me to die, and then bring me back to life.",
+ 82,
+ "And He is ˹the One˺ Who, I hope, will forgive my flaws on Judgment Day.”",
+ 83,
+ "“My Lord! Grant me wisdom, and join me with the righteous.",
+ 84,
+ "Bless me with honourable mention among later generations.",
+ 85,
+ "Make me one of those awarded the Garden of Bliss.",
+ 86,
+ "Forgive my father, for he is certainly one of the misguided.",
+ 87,
+ "And do not disgrace me on the Day all will be resurrected—",
+ 88,
+ "the Day when neither wealth nor children will be of any benefit.",
+ 89,
+ "Only those who come before Allah with a pure heart ˹will be saved˺.” ",
+ 90,
+ "˹On that Day˺ Paradise will be brought near to the God-fearing,",
+ 91,
+ "and the Hellfire will be displayed to the deviant.",
+ 92,
+ "And it will be said to them, “Where are those you used to worship",
+ 93,
+ "besides Allah? Can they help you or even help themselves?”",
+ 94,
+ "Then the idols will be hurled headlong into Hell, along with the deviant",
+ 95,
+ "and the soldiers of Iblîs, all together.",
+ 96,
+ "There the deviant will cry while disputing with their idols,",
+ 97,
+ "“By Allah! We were clearly mistaken,",
+ 98,
+ "when we made you equal to the Lord of all worlds.",
+ 99,
+ "And none led us astray other than the wicked.",
+ 100,
+ "Now we have none to intercede for us,",
+ 101,
+ "nor a close friend.",
+ 102,
+ "If only we could have a second chance, then we would be believers.”",
+ 103,
+ "Surely in this is a sign. Yet most of them would not believe.",
+ 104,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 105,
+ "The people of Noah rejected the messengers",
+ 106,
+ "when their brother Noah said to them, “Will you not fear ˹Allah˺?",
+ 107,
+ "I am truly a trustworthy messenger to you.",
+ 108,
+ "So fear Allah, and obey me.",
+ 109,
+ "I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.",
+ 110,
+ "So fear Allah, and obey me.”",
+ 111,
+ "They argued, “How can we believe in you, when you are followed ˹only˺ by the lowest of the low?”",
+ 112,
+ "He responded, “And what knowledge do I have of what they do?",
+ 113,
+ "Their judgment is with my Lord, if you had any sense!",
+ 114,
+ "I am not going to expel the believers.",
+ 115,
+ "I am only sent with a clear warning.”",
+ 116,
+ "They threatened, “If you do not desist, O Noah, you will surely be stoned ˹to death˺.”",
+ 117,
+ "Noah prayed, “My Lord! My people have truly rejected me.",
+ 118,
+ "So judge between me and them decisively, and save me and the believers with me.”",
+ 119,
+ "So We saved him and those with him in the fully loaded Ark.",
+ 120,
+ "Then afterwards We drowned the rest.",
+ 121,
+ "Surely in this is a sign. Yet most of them would not believe.",
+ 122,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 123,
+ "The people of ’Âd rejected the messengers",
+ 124,
+ "when their brother Hûd said to them, “Will you not fear ˹Allah˺?",
+ 125,
+ "I am truly a trustworthy messenger to you.",
+ 126,
+ "So fear Allah, and obey me.",
+ 127,
+ "I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.",
+ 128,
+ "˹Why˺ do you build a landmark on every high place in vanity,",
+ 129,
+ "and construct castles, as if you are going to live forever,",
+ 130,
+ "and act so viciously when you attack ˹others˺?",
+ 131,
+ "So fear Allah, and obey me.",
+ 132,
+ "Fear the One Who has provided you with ˹the good˺ things you know:",
+ 133,
+ "He provided you with cattle, and children,",
+ 134,
+ "and gardens, and springs.",
+ 135,
+ "I truly fear for you the torment of a tremendous day.”",
+ 136,
+ "They responded, “It is all the same to us whether you warn ˹us˺ or not.",
+ 137,
+ "This is simply the tradition of our predecessors.",
+ 138,
+ "And we will never be punished.”",
+ 139,
+ "So they rejected him, and ˹so˺ We destroyed them. Surely in this is a sign. Yet most of them would not believe.",
+ 140,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 141,
+ "The people of Thamûd rejected the messengers",
+ 142,
+ "when their brother Ṣâliḥ said to them, “Will you not fear ˹Allah˺?",
+ 143,
+ "I am truly a trustworthy messenger to you.",
+ 144,
+ "So fear Allah, and obey me.",
+ 145,
+ "I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.",
+ 146,
+ "Do you think you will be ˹forever˺ left secure in what you have here:",
+ 147,
+ "amid gardens and springs,",
+ 148,
+ "and ˹various˺ crops, and palm trees ˹loaded˺ with tender fruit;",
+ 149,
+ "to carve homes in the mountains with great skill?",
+ 150,
+ "So fear Allah, and obey me.",
+ 151,
+ "And do not follow the command of the transgressors,",
+ 152,
+ "who spread corruption throughout the land, never setting things right.”",
+ 153,
+ "They replied, “You are simply bewitched!",
+ 154,
+ "You are only a human being like us, so bring forth a sign if what you say is true.”",
+ 155,
+ "Ṣâliḥ said, “Here is a camel. She will have her turn to drink as you have yours, each on an appointed day.",
+ 156,
+ "And do not ever touch her with harm, or you will be overtaken by the torment of a tremendous day.”",
+ 157,
+ "But they killed her, becoming regretful.",
+ 158,
+ "So the punishment overtook them. Surely in this is a sign. Yet most of them would not believe.",
+ 159,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 160,
+ "The people of Lot rejected the messengers",
+ 161,
+ "when their brother Lot said to them, “Will you not fear ˹Allah˺?",
+ 162,
+ "I am truly a trustworthy messenger to you.",
+ 163,
+ "So fear Allah, and obey me.",
+ 164,
+ "I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.",
+ 165,
+ "Why do you ˹men˺ lust after fellow men,",
+ 166,
+ "leaving the wives that your Lord has created for you? In fact, you are a transgressing people.”",
+ 167,
+ "They threatened, “If you do not desist, O Lot, you will surely be expelled.”",
+ 168,
+ "Lot responded, “I am truly one of those who despise your ˹shameful˺ practice.",
+ 169,
+ "My Lord! Save me and my family from ˹the consequences of˺ what they do.”",
+ 170,
+ "So We saved him and all of his family,",
+ 171,
+ "except an old woman, who was one of the doomed.",
+ 172,
+ "Then We utterly destroyed the rest,",
+ 173,
+ "pouring upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!",
+ 174,
+ "Surely in this is a sign. Yet most of them would not believe.",
+ 175,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 176,
+ "The residents of the Forest rejected the messengers",
+ 177,
+ "when Shu’aib said to them, “Will you not fear ˹Allah˺?",
+ 178,
+ "I am truly a trustworthy messenger to you.",
+ 179,
+ "So fear Allah, and obey me.",
+ 180,
+ "I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.",
+ 181,
+ "Give full measure, and cause no loss ˹to others˺.",
+ 182,
+ "Weigh with an even balance,",
+ 183,
+ "and do not defraud people of their property. Nor go about spreading corruption in the land.",
+ 184,
+ "And fear the One Who created you and ˹all˺ earlier peoples.”",
+ 185,
+ "They replied, “You are simply bewitched!",
+ 186,
+ "Also, you are only a human being like us, and we think you are indeed a liar.",
+ 187,
+ "So cause ˹deadly˺ pieces of the sky to fall upon us, if what you say is true.”",
+ 188,
+ "Shu’aib responded, “My Lord knows best whatever you do.”",
+ 189,
+ "So they rejected him, and ˹so˺ were overtaken by the torment of the day of the ˹deadly˺ cloud. That was really a torment of a tremendous day.",
+ 190,
+ "Surely in this is a sign. Yet most of them would not believe.",
+ 191,
+ "And your Lord is certainly the Almighty, Most Merciful.",
+ 192,
+ "This is certainly a revelation from the Lord of all worlds,",
+ 193,
+ "which the trustworthy spirit ˹Gabriel˺ brought down",
+ 194,
+ "into your heart ˹O Prophet˺—so that you may be one of the warners—",
+ 195,
+ "in a clear Arabic tongue.",
+ 196,
+ "And it has indeed been ˹foretold˺ in the Scriptures of those before.",
+ 197,
+ "Was it not sufficient proof for the deniers that it has been recognized by the knowledgeable among the Children of Israel?",
+ 198,
+ "Had We revealed it to a non-Arab,",
+ 199,
+ "who would then recite it to the deniers ˹in fluent Arabic˺, still they would not have believed in it!",
+ 200,
+ "This is how We allow denial ˹to steep˺ into the hearts of the wicked.",
+ 201,
+ "They will not believe in it until they see the painful punishment,",
+ 202,
+ "which will take them by surprise when they least expect ˹it˺.",
+ 203,
+ "Then they will cry, “Can we be allowed more time?”",
+ 204,
+ "Do they ˹really˺ seek to hasten Our torment?",
+ 205,
+ "Imagine ˹O Prophet˺ if We allowed them enjoyment for years,",
+ 206,
+ "then there came to them what they had been threatened with:",
+ 207,
+ "would that enjoyment be of any benefit to them ˹at all˺?",
+ 208,
+ "We have never destroyed a society without warners",
+ 209,
+ "to remind ˹them˺, for We would never wrong ˹anyone˺.",
+ 210,
+ "It was not the devils who brought this ˹Quran˺ down:",
+ 211,
+ "it is not for them ˹to do so˺, nor can they,",
+ 212,
+ "for they are strictly barred from ˹even˺ overhearing ˹it˺.",
+ 213,
+ "So do not ever call upon any other god besides Allah, or you will be one of the punished.",
+ 214,
+ "And warn ˹all, starting with˺ your closest relatives,",
+ 215,
+ "and be gracious to the believers who follow you.",
+ 216,
+ "But if they disobey you, say, “I am certainly free of what you do.”",
+ 217,
+ "Put your trust in the Almighty, Most Merciful,",
+ 218,
+ "Who sees you when you rise ˹for prayer at night˺,",
+ 219,
+ "as well as your movements ˹in prayer˺ along with ˹fellow˺ worshippers.",
+ 220,
+ "He ˹alone˺ is indeed the All-Hearing, All-Knowing.",
+ 221,
+ "Shall I inform you of whom the devils ˹actually˺ descend upon?",
+ 222,
+ "They descend upon every sinful liar,",
+ 223,
+ "who gives an ˹attentive˺ ear ˹to half-truths˺, mostly passing on sheer lies. ",
+ 224,
+ "As for poets, they are followed ˹merely˺ by deviants.",
+ 225,
+ "Do you not see how they rant in every field,",
+ 226,
+ "only saying what they never do?",
+ 227,
+ "Except those who believe, do good, remember Allah often, and ˹poetically˺ avenge ˹the believers˺ after being wrongfully slandered. The wrongdoers will come to know what ˹evil˺ end they will meet."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/27.json b/share/quran-json/TheQuran/en/27.json
new file mode 100644
index 0000000..78e4382
--- /dev/null
+++ b/share/quran-json/TheQuran/en/27.json
@@ -0,0 +1,203 @@
+[
+ {
+ "id": "27",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Naml",
+ "translated_name": "The Ant",
+ "verse_count": 93,
+ "slug": "an-naml",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1605,
+ 1604
+ ]
+ },
+ 1,
+ "Ṭâ-Sĩn. These are the verses of the Quran; the clear Book.",
+ 2,
+ "˹It is˺ a guide and good news for the believers:",
+ 3,
+ "˹those˺ who establish prayer, pay alms-tax, and have sure faith in the Hereafter.",
+ 4,
+ "As for those who do not believe in the Hereafter, We have certainly made their ˹evil˺ deeds appealing to them, so they wander blindly.",
+ 5,
+ "It is they who will suffer a dreadful torment, and in the Hereafter they will ˹truly˺ be the greatest losers.",
+ 6,
+ "And indeed, you ˹O Prophet˺ are receiving the Quran from the One ˹Who is˺ All-Wise, All-Knowing.",
+ 7,
+ "˹Remember˺ when Moses said to his family, “I have spotted a fire. I will either bring you some directions from there, or a burning torch so you may warm yourselves.”",
+ 8,
+ "But when he came to it, he was called ˹by Allah˺, “Blessed is the one at the fire, and whoever is around it! Glory be to Allah, the Lord of all worlds.",
+ 9,
+ "O Moses! It is truly I. I am Allah—the Almighty, All-Wise.",
+ 10,
+ "Now, throw down your staff!” But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ “O Moses! Do not be afraid! Messengers should have no fear in My presence.",
+ 11,
+ "˹Fear is˺ only for those who do wrong. But if they later mend ˹their˺ evil ˹ways˺ with good, then I am certainly All-Forgiving, Most Merciful.",
+ 12,
+ "Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. ˹These are two˺ of nine signs for Pharaoh and his people. They have truly been a rebellious people.”",
+ 13,
+ "But when Our enlightening signs came to them, they said, “This is pure magic.”",
+ 14,
+ "And, although their hearts were convinced the signs were true, they still denied them wrongfully and arrogantly. See then what was the end of the corruptors!",
+ 15,
+ "Indeed, We granted knowledge to David and Solomon. And they said ˹in acknowledgment˺, “All praise is for Allah Who has privileged us over many of His faithful servants.”",
+ 16,
+ "And David was succeeded by Solomon, who said, “O people! We have been taught the language of birds, and been given everything ˹we need˺. This is indeed a great privilege.”",
+ 17,
+ "Solomon’s forces of jinn, humans, and birds were rallied for him, perfectly organized.",
+ 18,
+ "And when they came across a valley of ants, an ant warned, “O ants! Go quickly into your homes so Solomon and his armies do not crush you, unknowingly.”",
+ 19,
+ "So Solomon smiled in amusement at her words, and prayed, “My Lord! Inspire me to ˹always˺ be thankful for Your favours which You have blessed me and my parents with, and to do good deeds that please you. Admit me, by Your mercy, into ˹the company of˺ Your righteous servants.”",
+ 20,
+ "˹One day˺ he inspected the birds, and wondered, “Why is it that I cannot see the hoopoe? Or could he be absent?",
+ 21,
+ "I will surely subject him to a severe punishment, or ˹even˺ slaughter him, unless he brings me a compelling excuse.”",
+ 22,
+ "It was not long before the bird came and said, “I have found out something you do not know. I have just come to you from Sheba with sure news.",
+ 23,
+ "Indeed, I found a woman ruling over them, who has been given everything ˹she needs˺, and who has a magnificent throne.",
+ 24,
+ "I found her and her people prostrating to the sun instead of Allah. For Satan has made their deeds appealing to them—hindering them from the ˹Right˺ Way and leaving them unguided—",
+ 25,
+ "so they do not prostrate to Allah, Who brings forth what is hidden in the heavens and the earth, and knows what you ˹all˺ conceal and what you reveal.",
+ 26,
+ "˹He is˺ Allah! There is no god ˹worthy of worship˺ except Him, the Lord of the Mighty Throne.”",
+ 27,
+ "Solomon said, “We will see whether you are telling the truth or lying.",
+ 28,
+ "Go with this letter of mine and deliver it to them, then stand aside and see how they will respond.”",
+ 29,
+ "The Queen ˹later˺ announced, “O chiefs! Indeed, a noble letter has been delivered to me.",
+ 30,
+ "It is from Solomon, and it reads: ‘In the Name of Allah—the Most Compassionate, Most Merciful.",
+ 31,
+ "Do not be arrogant with me, but come to me, fully submitting ˹to Allah˺.’”",
+ 32,
+ "She said, “O chiefs! Advise me in this matter of mine, for I would never make any decision without you.”",
+ 33,
+ "They responded, “We are a people of strength and great ˹military˺ might, but the decision is yours, so decide what you will command.”",
+ 34,
+ "She reasoned, “Indeed, when kings invade a land, they ruin it and debase its nobles. They really do so!",
+ 35,
+ "But I will certainly send him a gift, and see what ˹response˺ my envoys will return with.” ",
+ 36,
+ "When the chief-envoy came to him, Solomon said, “Do you offer me wealth? What Allah has granted me is far greater than what He has granted you. No! It is you who rejoice in ˹receiving˺ gifts.",
+ 37,
+ "Go back to them, for we will certainly mobilize against them forces which they can never resist, and we will drive them out from there in disgrace, fully humbled.” ",
+ 38,
+ "Solomon asked, “O chiefs! Which of you can bring me her throne before they come to me in ˹full˺ submission?”",
+ 39,
+ "One mighty jinn responded, “I can bring it to you before you rise from this council of yours. And I am quite strong and trustworthy for this ˹task˺.”",
+ 40,
+ "But the one who had knowledge of the Scripture said, “I can bring it to you in the blink of an eye.” So when Solomon saw it placed before him, he exclaimed, “This is by the grace of my Lord to test me whether I am grateful or ungrateful. And whoever is grateful, it is only for their own good. But whoever is ungrateful, surely my Lord is Self-Sufficient, Most Generous.”",
+ 41,
+ "˹Then˺ Solomon said, “Disguise her throne for her so we may see whether she will recognize ˹it˺ or she will not be able to.”",
+ 42,
+ "So when she arrived, it was said ˹to her˺, “Is your throne like this?” She replied, “It looks to be the same. We have ˹already˺ received knowledge ˹of Solomon’s prophethood˺ before this ˹miracle˺, and have submitted ˹to Allah˺.”",
+ 43,
+ "But she had been hindered by what she used to worship instead of Allah, for she was indeed from a disbelieving people.",
+ 44,
+ "Then she was told, “Enter the palace.” But when she saw the hall, she thought it was a body of water, so she bared her legs. Solomon said. “It is just a palace paved with crystal.” ˹At last˺ she declared, “My Lord! I have certainly wronged my soul. Now I ˹fully˺ submit myself along with Solomon to Allah, the Lord of all worlds.”",
+ 45,
+ "And We certainly sent to the people of Thamûd their brother Ṣâliḥ, proclaiming, “Worship Allah,” but they suddenly split into two opposing groups.",
+ 46,
+ "He urged ˹the disbelieving group˺, “O my people! Why do you ˹seek to˺ hasten the torment rather than grace? If only you sought Allah’s forgiveness so you may be shown mercy!”",
+ 47,
+ "They replied, “You and your followers are a bad omen for us.” He responded, “Your omens are destined by Allah. In fact, you are ˹only˺ a people being tested.”",
+ 48,
+ "And there were in the city nine ˹elite˺ men who spread corruption in the land, never doing what is right.",
+ 49,
+ "They vowed, “Let us swear by Allah that we will take him and his family down by night. Then we will certainly say to his ˹closest˺ heirs, ‘We did not witness the murder of his family. We are definitely telling the truth.’”",
+ 50,
+ "And ˹so˺ they made a plan, but We too made a plan, while they were unaware.",
+ 51,
+ "See then what the consequences of their plan were: We ˹utterly˺ destroyed them and their people all together.",
+ 52,
+ "So their homes are there, ˹but completely˺ ruined because of their wrongdoing. Surely in this is a lesson for people of knowledge.",
+ 53,
+ "And We delivered those who were faithful and were mindful ˹of Allah˺.",
+ 54,
+ "And ˹remember˺ Lot, when he rebuked ˹the men of˺ his people, “Do you commit that shameful deed while you can see ˹one another˺?",
+ 55,
+ "Do you really lust after men instead of women? In fact, you are ˹only˺ a people acting ignorantly.”",
+ 56,
+ "But his people’s only response was to say, “Expel Lot’s followers from your land! They are a people who wish to remain chaste!”",
+ 57,
+ "So We delivered him and his family, except his wife. We had destined her to be one of the doomed.",
+ 58,
+ "And We poured upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!",
+ 59,
+ "Say, ˹O Prophet,˺ “Praise be to Allah, and peace be upon the servants He has chosen.” ˹Ask the disbelievers,˺ “Which is better: Allah or whatever ˹gods˺ they associate ˹with Him˺?”",
+ 60,
+ "Or ˹ask them,˺ “Who created the heavens and the earth, and sends down rain for you from the sky, by which We cause delightful gardens to grow? You could never cause their trees to grow. Was it another god besides Allah?” Absolutely not! But they are a people who set up equals ˹to Allah˺!",
+ 61,
+ "Or ˹ask them,˺ “Who made the earth a place of settlement, caused rivers to flow through it, placed firm mountains upon it, and set a barrier between ˹fresh and salt˺ bodies of water? Was it another god besides Allah?” Absolutely not! But most of them do not know.",
+ 62,
+ "Or ˹ask them,˺ “Who responds to the distressed when they cry to Him, relieving ˹their˺ affliction, and ˹Who˺ makes you successors in the earth? Is it another god besides Allah? Yet you are hardly mindful!”",
+ 63,
+ "Or ˹ask them,˺ “Who guides you in the darkness of the land and sea, and sends the winds ushering in His mercy? Is it another god besides Allah? Exalted is Allah above what they associate ˹with Him˺!",
+ 64,
+ "Or ˹ask them,˺ “Who originates the creation then resurrects it, and gives you provisions from the heavens and the earth? Is it another god besides Allah?” Say, ˹O Prophet,˺ “Show ˹me˺ your proof, if what you say is true.”",
+ 65,
+ "Say, ˹O Prophet,˺ “None in the heavens and the earth has knowledge of the unseen except Allah. Nor do they know when they will be resurrected.",
+ 66,
+ "No! Their knowledge of the Hereafter amounts to ignorance. In fact, they are in doubt about it. In truth, they are ˹totally˺ blind to it.",
+ 67,
+ "The disbelievers ask, “When we and our fathers are reduced to dust, will we really be brought forth ˹alive˺?",
+ 68,
+ "We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!”",
+ 69,
+ "Say, ˹O Prophet,˺ “Travel throughout the land and see the fate of the wicked.”",
+ 70,
+ "Do not grieve for them, nor be distressed by their schemes.",
+ 71,
+ "They ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”",
+ 72,
+ "Say, ˹O Prophet,˺ “Perhaps some of what you seek to hasten is close at hand.”",
+ 73,
+ "Surely your Lord is ever Bountiful to humanity, but most of them are ungrateful.",
+ 74,
+ "And surely your Lord knows what their hearts conceal and what they reveal.",
+ 75,
+ "For there is nothing hidden in the heavens or the earth without being ˹written˺ in a perfect Record. ",
+ 76,
+ "Indeed, this Quran clarifies for the Children of Israel most of what they differ over.",
+ 77,
+ "And it is truly a guide and mercy for the believers.",
+ 78,
+ "Your Lord will certainly judge between them by His justice, for He is the Almighty, All-Knowing.",
+ 79,
+ "So put your trust in Allah, for you are surely upon the ˹Path of˺ clear truth.",
+ 80,
+ "You certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.",
+ 81,
+ "Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.",
+ 82,
+ "And when the decree ˹of the Hour˺ comes to pass against them, We will bring forth for them a beast from the earth, telling them that the people had no sure faith in Our revelations.",
+ 83,
+ "˹Watch for˺ the Day We will gather from every faith-community a group of those who denied Our revelations, and they will be driven in ranks.",
+ 84,
+ "When they ˹finally˺ come before their Lord, He will ask ˹them˺, “Did you deny My revelations without ˹even˺ comprehending them? Or what ˹exactly˺ did you do?”",
+ 85,
+ "And the decree ˹of torment˺ will be justified against them for their wrongdoing, leaving them speechless.",
+ 86,
+ "Do they not see that We made the night for them to rest in and the day bright? Surely in this are signs for those who believe.",
+ 87,
+ "And ˹beware of˺ the Day the Trumpet will be blown, and all those in the heavens and all those on the earth will be horrified ˹to the point of death˺, except those Allah wills ˹to spare˺. And all will come before Him, fully humbled.",
+ 88,
+ "Now you see the mountains, thinking they are firmly fixed, but they are travelling ˹just˺ like clouds. ˹That is˺ the design of Allah, Who has perfected everything. Surely He is All-Aware of what you do.",
+ 89,
+ "Whoever comes with a good deed will be rewarded with what is better, and they will be secure from the horror on that Day.",
+ 90,
+ "And whoever comes with an evil deed will be hurled face-first into the Fire. Are you rewarded except for what you used to do?",
+ 91,
+ "Say, ˹O Prophet,˺ “I have only been commanded to worship the Lord of this city ˹of Mecca˺, Who has made it sacred, and to Him belongs everything. And I am commanded to be one of those who ˹fully˺ submit ˹to Him˺,",
+ 92,
+ "and to recite the Quran.” Then whoever chooses to be guided, it is only for their own good. But whoever chooses to stray, say, ˹O Prophet,˺ “I am only a warner.”",
+ 93,
+ "And say, “All praise is for Allah! He will show you His signs, and you will recognize them. And your Lord is never unaware of what you do.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/28.json b/share/quran-json/TheQuran/en/28.json
new file mode 100644
index 0000000..0dd683c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/28.json
@@ -0,0 +1,193 @@
+[
+ {
+ "id": "28",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qasas",
+ "translated_name": "The Stories",
+ "verse_count": 88,
+ "slug": "al-qasas",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1589,
+ 1589
+ ]
+ },
+ 1,
+ "Ṭâ-Sĩn-Mĩm.",
+ 2,
+ "These are the verses of the clear Book.",
+ 3,
+ "We narrate to you ˹O Prophet˺ part of the story of Moses and Pharaoh in truth for people who believe.",
+ 4,
+ "Indeed, Pharaoh ˹arrogantly˺ elevated himself in the land and divided its people into ˹subservient˺ groups, one of which he persecuted, slaughtering their sons and keeping their women. He was truly one of the corruptors.",
+ 5,
+ "But it was Our Will to favour those who were oppressed in the land, making them models ˹of faith˺ as well as successors;",
+ 6,
+ "and to establish them in the land; and through them show Pharaoh, Hamân, and their soldiers ˹the fulfilment of˺ what they feared. ",
+ 7,
+ "We inspired the mother of Moses: “Nurse him, but when you fear for him, put him then into the river, and do not fear or grieve. We will certainly return him to you, and make him one of the messengers.”",
+ 8,
+ "And ˹it so happened that˺ Pharaoh’s people picked him up, only to become their enemy and source of grief. Surely Pharaoh, Hamân, and their soldiers were sinful.",
+ 9,
+ "Pharaoh’s wife said ˹to him˺, “˹This baby is˺ a source of joy for me and you. Do not kill him. Perhaps he may be useful to us or we may adopt him as a son.” They were unaware ˹of what was to come˺.",
+ 10,
+ "And the heart of Moses’ mother ached so much that she almost gave away his identity, had We not reassured her heart in order for her to have faith ˹in Allah’s promise˺.",
+ 11,
+ "And she said to his sister, “Keep track of him!” So she watched him from a distance, while they were unaware.",
+ 12,
+ "And We had caused him to refuse all wet-nurses at first, so his sister suggested, “Shall I direct you to a family who will bring him up for you and take good care of him?”",
+ 13,
+ "This is how We returned him to his mother so that her heart would be put at ease, and not grieve, and that she would know that Allah’s promise is ˹always˺ true. But most people do not know.",
+ 14,
+ "And when he reached full strength and maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.",
+ 15,
+ "˹One day˺ he entered the city unnoticed by its people. There he found two men fighting: one of his own people, and the other of his enemies. The man from his people called to him for help against his foe. So Moses punched him, causing his death. Moses cried, “This is from Satan’s handiwork. He is certainly a sworn, misleading enemy.”",
+ 16,
+ "He pleaded, “My Lord! I have definitely wronged my soul, so forgive me.” So He forgave him, ˹for˺ He is indeed the All-Forgiving, Most Merciful.",
+ 17,
+ "Moses pledged, “My Lord! For all Your favours upon me, I will never side with the wicked.”",
+ 18,
+ "And so Moses became fearful, watching out in the city, when suddenly the one who sought his help the day before cried out to him again for help. Moses rebuked him, “Indeed, you are clearly a trouble-maker.”",
+ 19,
+ "Then when Moses was about to lay his hands on their foe, the enemy said, “O Moses! Do you intend to kill me as you killed a man yesterday? You only want to be a tyrant in the land. You do not intend to make peace!”",
+ 20,
+ "And there came a man, rushing from the farthest end of the city. He said, “O Moses! The chiefs are actually conspiring against you to put you to death, so leave ˹the city˺. I really advise you ˹to do so˺.”",
+ 21,
+ "So Moses left the city in a state of fear and caution, praying, “My Lord! Deliver me from the wrongdoing people.”",
+ 22,
+ "And as he made his way towards Midian, he said, “I trust my Lord will guide me to the right way.”",
+ 23,
+ "When he arrived at the well of Midian, he found a group of people watering ˹their herds˺. Apart from them, he noticed two women holding back ˹their herd˺. He asked ˹them˺, “What is the problem?” They replied, “We cannot water ˹our animals˺ until the ˹other˺ shepherds are done, for our father is a very old man.”",
+ 24,
+ "So he watered ˹their herd˺ for them, then withdrew to the shade and prayed, “My Lord! I am truly in ˹desperate˺ need of whatever provision You may have in store for me.” ",
+ 25,
+ "Then one of the two women came to him, walking bashfully. She said, “My father is inviting you so he may reward you for watering ˹our animals˺ for us.” When Moses came to him and told him his whole story, the old man said, “Have no fear! You are ˹now˺ safe from the wrongdoing people.”",
+ 26,
+ "One of the two daughters suggested, “O my dear father! Hire him. The best man for employment is definitely the strong and trustworthy ˹one˺.”",
+ 27,
+ "The old man proposed, “I wish to marry one of these two daughters of mine to you, provided that you stay in my service for eight years. If you complete ten, it will be ˹a favour˺ from you, but I do not wish to make it difficult for you. Allah willing, you will find me an agreeable man.”",
+ 28,
+ "Moses responded, “˹Then˺ it is ˹settled˺ between you and I. Whichever term I fulfill, there will be no ˹further˺ obligation on me. And Allah is a Witness to what we say.”",
+ 29,
+ "When Moses had completed the term and was travelling with his family, he spotted a fire on the side of Mount Ṭûr. He said to his family, “Stay here, ˹for˺ I have spotted a fire. Perhaps from there I can bring you some directions or a torch from the fire so you may warm yourselves.”",
+ 30,
+ "But when he came to it, he was called from the bush in the sacred ground to the right side of the valley: “O Moses! It is truly I. I am Allah—the Lord of all worlds.",
+ 31,
+ "Now, throw down your staff!” But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ “O Moses! Draw near, and have no fear. You are perfectly secure.",
+ 32,
+ "Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. And cross your arms tightly to calm your fears. These are two proofs from your Lord to Pharaoh and his chiefs. They have truly been a rebellious people.”",
+ 33,
+ "Moses appealed, “My Lord! I have indeed killed a man from them, so I fear they may kill me.",
+ 34,
+ "And my brother Aaron is more eloquent than I, so send him with me as a helper to support what I say, for I truly fear they may reject me.”",
+ 35,
+ "Allah responded, “We will assist you with your brother and grant you both authority, so they cannot harm you. With Our signs, you and those who follow you will ˹certainly˺ prevail.”",
+ 36,
+ "But when Moses came to them with Our clear signs, they said ˹arrogantly˺, “This is nothing but conjured magic ˹tricks˺. We have never heard of this in ˹the history of˺ our forefathers.”",
+ 37,
+ "Moses responded, “My Lord knows best who has come with ˹true˺ guidance from Him and will fare best in the end. Indeed, the wrongdoers will never succeed.”",
+ 38,
+ "Pharaoh declared, “O chiefs! I know of no other god for you but myself. So bake bricks out of clay for me, O Hamân, and build a high tower so I may look at the God of Moses, although I am sure he is a liar.”",
+ 39,
+ "And so he and his soldiers behaved arrogantly in the land with no right, thinking they would never be returned to Us.",
+ 40,
+ "So We seized him and his soldiers, casting them into the sea. See then what was the end of the wrongdoers!",
+ 41,
+ "We made them leaders inviting ˹others˺ to the Fire. And on the Day of Judgment they will not be helped.",
+ 42,
+ "We caused a curse to follow them in this world. And on the Day of Judgment they will be among the outcasts.",
+ 43,
+ "Indeed, We gave Moses the Scripture—after destroying earlier nations—as an insight for the people, a guide, and mercy so perhaps they would be mindful.",
+ 44,
+ "You were not there ˹O Prophet˺ on the western side of the mountain when We entrusted the Commandments to Moses, nor were you present ˹in his time˺.",
+ 45,
+ "But We ˹later˺ raised ˹several˺ generations, and the ages took their toll on them. Nor were you living among the people of Midian, rehearsing Our revelations with them. But it is We Who have sent ˹this revelation to you˺.",
+ 46,
+ "And you were not at the side of Mount Ṭûr when We called out ˹to Moses˺. But ˹you have been sent˺ as a mercy from your Lord to warn a people to whom no warner has come before you, so perhaps they may be mindful.",
+ 47,
+ "Also so they would not say, if struck by an affliction for what their hands have done: “Our Lord! If only You had sent us a messenger, we would have followed Your revelations and become believers.”",
+ 48,
+ "But when the truth came to them from Us, they said, “If only he was given the like of what Moses had been given.” Did they not deny what had been given to Moses earlier? They claimed, “Both ˹Scriptures˺ are works of magic, supporting each other!” Adding, “We truly deny both.”",
+ 49,
+ "Say, ˹O Prophet,˺ “Bring then a scripture from Allah which is a better guide than these two so I may follow it, if your claim is true.”",
+ 50,
+ "So if they fail to respond to you, then know that they only follow their desires. And who could be more astray than those who follow their desires with no guidance from Allah? Surely Allah does not guide the wrongdoing people.",
+ 51,
+ "Indeed, We have steadily delivered the Word ˹of Allah˺ to the people so they may be mindful.",
+ 52,
+ "˹As for˺ those ˹faithful˺ to whom We had given the Scripture before this ˹Quran˺, they do believe in it.",
+ 53,
+ "When it is recited to them, they declare, “We believe in it. This is definitely the truth from our Lord. We had already submitted ˹even˺ before this.”",
+ 54,
+ "These ˹believers˺ will be given a double reward for their perseverance, responding to evil with good, and for donating from what We have provided for them.",
+ 55,
+ "When they hear slanderous talk, they turn away from it, saying, “We are accountable for our deeds and you for yours. Peace ˹is our only response˺ to you! We want nothing to do with those who act ignorantly.”",
+ 56,
+ "You surely cannot guide whoever you like ˹O Prophet˺, but it is Allah Who guides whoever He wills, and He knows best who are ˹fit to be˺ guided.",
+ 57,
+ "They say ˹to the Prophet˺, “If we were to follow ˹true˺ guidance with you, we would certainly be snatched away from our land.” Have We not established for them a safe haven ˹in Mecca˺ to which fruits of all kinds are brought as a provision from Us? But most of them do not know ˹this favour˺.",
+ 58,
+ "˹Imagine˺ how many societies We have destroyed that had been spoiled by their ˹comfortable˺ living! Those are their residences, never inhabited after them except passingly. And We ˹alone˺ were the Successor.",
+ 59,
+ "Your Lord would never destroy a society until He had sent to its capital a messenger, reciting Our revelations to them. Nor would We ever destroy a society unless its people persisted in wrongdoing.",
+ 60,
+ "Whatever ˹pleasure˺ you have been given is no more than ˹a fleeting˺ enjoyment and adornment of this worldly life. But what is with Allah is far better and more lasting. Will you not then understand?",
+ 61,
+ "Can those to whom We have made a fine promise—which they will see fulfilled—be like those who We have allowed to enjoy the pleasures of this worldly life, but on the Day of Judgment will be brought ˹for punishment˺?",
+ 62,
+ "˹Watch for˺ the Day He will call to them, “Where are those you claimed were My associate-gods?”",
+ 63,
+ "Those ˹misleaders˺ against whom the decree ˹of torment˺ is justified will cry, “Our Lord! These ˹followers˺ are the ones we caused to deviate. We led them into deviance, for we ourselves were deviant. We disassociate ourselves ˹from them˺ before You. It was not us that they used to worship.”",
+ 64,
+ "It will be said ˹to the disbelievers˺, “Call upon your associate-gods ˹for help˺.” So they will call them, but will receive no response. And they will face the punishment, wishing they had been ˹rightly˺ guided!",
+ 65,
+ "And ˹watch for˺ the Day He will call to them, asking, “What response did you give to the messengers?”",
+ 66,
+ "They will be too dumbstruck on that Day to ask one another ˹for answers˺.",
+ 67,
+ "As for those who repent, believe, and do good ˹in this world˺, it is right to hope that they will be among the successful.",
+ 68,
+ "Your Lord creates and chooses whatever He wills—the choice is not theirs. Glorified and Exalted is Allah above what they associate ˹with Him˺!",
+ 69,
+ "And your Lord knows what their hearts conceal and what they reveal.",
+ 70,
+ "He is Allah. There is no god ˹worthy of worship˺ except Him. All praise belongs to Him in this life and the next. All authority is His. And to Him you will ˹all˺ be returned.",
+ 71,
+ "Ask ˹them, O Prophet˺, “Imagine if Allah were to make the night perpetual for you until the Day of Judgment, which god other than Allah could bring you sunlight? Will you not then listen?”",
+ 72,
+ "Ask ˹them also˺, “Imagine if Allah were to make the day perpetual for you until the Day of Judgment, which god other than Allah could bring you night to rest in? Will you not then see?”",
+ 73,
+ "It is out of His mercy that He has made for you the day and night so that you may rest ˹in the latter˺ and seek His bounty ˹in the former˺, and perhaps you will be grateful.",
+ 74,
+ "And ˹watch for˺ the Day He will call to them, “Where are those you claimed were My associate-gods?”",
+ 75,
+ "And We will bring forth a witness from every faith-community and ask ˹the polytheists˺, “Show ˹Us˺ your proof.” Then they will ˹come to˺ know that the truth is with Allah ˹alone˺. And whatever ˹gods˺ they fabricated will fail them.",
+ 76,
+ "Indeed, Korah was from the people of Moses, but he behaved arrogantly towards them. We had granted him such treasures that even their keys would burden a group of strong men. ˹Some of˺ his people advised him, “Do not be prideful! Surely Allah does not like the prideful.",
+ 77,
+ "Rather, seek the ˹reward˺ of the Hereafter by means of what Allah has granted you, without forgetting your share of this world. And be good ˹to others˺ as Allah has been good to you. Do not seek to spread corruption in the land, for Allah certainly does not like the corruptors.”",
+ 78,
+ "He replied, “I have been granted all this because of some knowledge I have.” Did he not know that Allah had already destroyed some from the generations before him who were far superior to him in power and greater in accumulating ˹wealth˺? There will be no need for the wicked to be asked about their sins. ",
+ 79,
+ "Then he came out before his people in all his glamour. Those who desired the life of this world wished, “If only we could have something like what Korah has been given. He is truly a man of great fortune!”",
+ 80,
+ "But those gifted with knowledge said, “Shame on you! Allah’s reward is far better for those who believe and do good. But none will attain this except the steadfast.”",
+ 81,
+ "Then We caused the earth to swallow him up, along with his home. There was no one to help him against Allah, nor could he even help himself.",
+ 82,
+ "And those who had craved his position the previous day began to say, “Ah! It is certainly Allah Who gives abundant or limited provisions to whoever He wills of His servants. Had it not been for the grace of Allah, He could have surely caused the earth to swallow us up! Oh, indeed! The disbelievers will never succeed.”",
+ 83,
+ "That ˹eternal˺ Home in the Hereafter We reserve ˹only˺ for those who seek neither tyranny nor corruption on the earth. The ultimate outcome belongs ˹only˺ to the righteous.",
+ 84,
+ "Whoever comes with a good deed will be rewarded with what is better. And whoever comes with an evil deed, then the evildoers will only be rewarded for what they used to do.",
+ 85,
+ "Most certainly, the One Who has ordained the Quran for you will ˹ultimately˺ bring you back home ˹to Mecca˺. Say, “My Lord knows best who has come with ˹true˺ guidance and who is clearly astray.”",
+ 86,
+ "You never expected this Book to be revealed to you, but ˹it came˺ only ˹as˺ a mercy from your Lord. So never side with the disbelievers ˹in their disbelief˺.",
+ 87,
+ "Do not let them turn you away from the revelations of Allah after they have been sent down to you. Rather, invite ˹all˺ to ˹the Way of˺ your Lord, and never be one of the polytheists.",
+ 88,
+ "And do not invoke any other god with Allah. There is no god ˹worthy of worship˺ except Him. Everything is bound to perish except He Himself. All authority belongs to Him. And to Him you will ˹all˺ be returned."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/29.json b/share/quran-json/TheQuran/en/29.json
new file mode 100644
index 0000000..ea7c720
--- /dev/null
+++ b/share/quran-json/TheQuran/en/29.json
@@ -0,0 +1,158 @@
+[
+ {
+ "id": "29",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-'Ankabut",
+ "translated_name": "The Spider",
+ "verse_count": 69,
+ "slug": "al-ankabut",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1593,
+ 1606,
+ 1603,
+ 1576,
+ 1608,
+ 1578
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm.",
+ 2,
+ "Do people think once they say, “We believe,” that they will be left without being put to the test?",
+ 3,
+ "We certainly tested those before them. And ˹in this way˺ Allah will clearly distinguish between those who are truthful and those who are liars.",
+ 4,
+ "Or do the evildoers ˹simply˺ think that they will escape Us? How wrong is their judgment!",
+ 5,
+ "Whoever hopes for the meeting with Allah, ˹let them know that˺ Allah’s appointed time is sure to come. He is the All-Hearing, All-Knowing.",
+ 6,
+ "And whoever strives ˹in Allah’s cause˺, only does so for their own good. Surely Allah is not in need of ˹any of˺ His creation.",
+ 7,
+ "As for those who believe and do good, We will certainly absolve them of their sins, and reward them according to the best of what they used to do.",
+ 8,
+ "We have commanded people to honour their parents. But if they urge you to associate with Me what you have no knowledge of, then do not obey them. To Me you will ˹all˺ return, and then I will inform you of what you used to do.",
+ 9,
+ "Those who believe and do good will surely be admitted by Us into ˹the company of˺ the righteous.",
+ 10,
+ "There are some who say, “We believe in Allah,” but when they suffer in the cause of Allah, they mistake ˹this˺ persecution at the hands of people for the punishment of Allah. But when victory comes from your Lord, they surely say ˹to the believers˺, “We have always been with you.” Does Allah not know best what is in the hearts of all beings?",
+ 11,
+ "Allah will certainly distinguish between those who have ˹sure˺ faith and the hypocrites.",
+ 12,
+ "The disbelievers say to the believers, “˹Just˺ follow our way, and we will bear ˹the burden of˺ your sins.” But they would never ˹want to˺ bear any of the believers’ sins. They are simply lying.",
+ 13,
+ "Yet they will certainly ˹be made to˺ carry their own burdens, as well as other burdens along with their own. And they will surely be questioned on Judgment Day about what they used to fabricate.",
+ 14,
+ "Indeed, We sent Noah to his people, and he remained among them for a thousand years, less fifty. Then the Flood overtook them, while they persisted in wrongdoing.",
+ 15,
+ "But We delivered him and those in the Ark, making it a sign for all people.",
+ 16,
+ "And ˹remember˺ when Abraham said to his people, “Worship Allah, and fear Him. This is better for you, if only you knew.",
+ 17,
+ "You worship besides Allah nothing but idols, simply creating lies ˹about them˺. Those you worship besides Allah certainly cannot give you any provision. So seek provision from Allah ˹alone˺, worship Him, and be grateful to Him. To Him you will ˹all˺ be returned.",
+ 18,
+ "If you ˹Meccans˺ persist in denial, so did ˹many˺ communities before you. The Messenger’s duty is only to deliver ˹the message˺ clearly.”",
+ 19,
+ "Have they not seen how Allah originates the creation then resurrects it? That is certainly easy for Allah.",
+ 20,
+ "Say, ˹O Prophet,˺ “Travel throughout the land and see how He originated the creation, then Allah will bring it into being one more time. Surely Allah is Most Capable of everything.",
+ 21,
+ "He punishes whoever He wills, and shows mercy to whoever He wills. And you will ˹all˺ be returned to Him.",
+ 22,
+ "And you cannot escape Him on earth or in heaven. Nor have you any protector or helper besides Allah.”",
+ 23,
+ "As for those who disbelieve in Allah’s signs and the meeting with Him, it is they who will have no hope in His mercy. And it is they who will suffer a painful punishment.",
+ 24,
+ "But the only response of Abraham’s people was to say: “Kill him or burn him!” But Allah saved him from the fire. Surely in this are signs for people who believe.",
+ 25,
+ "He said ˹to his people˺, “You have taken idols ˹for worship˺ instead of Allah, only to keep ˹the bond of˺ harmony among yourselves in this worldly life. But on the Day of Judgment you will disown and curse one another. Your home will be the Fire, and you will have no helper!”",
+ 26,
+ "So Lot believed in him. And Abraham said, “I am emigrating ˹in obedience˺ to my Lord. He ˹alone˺ is indeed the Almighty, All-Wise.”",
+ 27,
+ "We blessed him with Isaac and ˹later˺ Jacob, and reserved prophethood and revelation for his descendants. We gave him his reward in this life, and in the Hereafter he will certainly be among the righteous.",
+ 28,
+ "And ˹remember˺ when Lot rebuked ˹the men of˺ his people: “You certainly commit a shameful deed that no man has ever done before you.",
+ 29,
+ "Do you really lust after ˹other˺ men, abuse the travellers, and practice immorality ˹openly˺ in your gatherings?” His people’s only response was to say ˹mockingly˺: “Bring Allah’s punishment upon us, if what you say is true.”",
+ 30,
+ "Lot prayed, “My Lord! Help me against the people of corruption.”",
+ 31,
+ "When Our messenger-angels came to Abraham with the good news ˹of the birth of Isaac˺, they said, “We are going to destroy the people of this city ˹of Sodom˺, for its people have persisted in wrongdoing.”",
+ 32,
+ "He said, “But Lot is there!” They responded, “We know best who is there. We will certainly save him and his family—except his wife, who is one of the doomed.”",
+ 33,
+ "And when Our messenger-angels came to Lot, he was distressed and worried by their arrival. They reassured ˹him˺, “Do not fear, nor grieve. We will surely deliver you and your family—except your wife, who is one of the doomed.",
+ 34,
+ "We are certainly bringing down a punishment from heaven upon the people of this city for their rebelliousness.”",
+ 35,
+ "And We did leave ˹some of˺ its ruins as a clear lesson for people of understanding.",
+ 36,
+ "And to the people of Midian ˹We sent˺ their brother Shu’aib. He said, “O my people! Worship Allah, and hope for ˹the reward of˺ the Last Day. And do not go about spreading corruption in the land.”",
+ 37,
+ "But they rejected him, so an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.",
+ 38,
+ "And the people of ’Ȃd and Thamûd ˹met a similar fate˺, which must be clear to you ˹Meccans˺ from their ruins. Satan made their ˹evil˺ deeds appealing to them, hindering them from the ˹Right˺ Way, although they were capable of reasoning.",
+ 39,
+ "˹We˺ also ˹destroyed˺ Korah, Pharaoh, and Hamân. Indeed, Moses had come to them with clear proofs, but they behaved arrogantly in the land. Yet they could not escape ˹Us˺.",
+ 40,
+ "So We seized each ˹people˺ for their sin: against some of them We sent a storm of stones, some were overtaken by a ˹mighty˺ blast, some We caused the earth to swallow, and some We drowned. Allah would not have wronged them, but it was they who wronged themselves.",
+ 41,
+ "The parable of those who take protectors other than Allah is that of a spider spinning a shelter. And the flimsiest of all shelters is certainly that of a spider, if only they knew.",
+ 42,
+ "Allah surely knows that whatever ˹gods˺ they invoke besides Him are ˹simply˺ nothing. For He is the Almighty, All-Wise.",
+ 43,
+ "These are the parables We set forth for humanity, but none will understand them except the people of knowledge.",
+ 44,
+ "Allah created the heavens and the earth for a purpose. Surely in this is a sign for the people of faith.",
+ 45,
+ "Recite what has been revealed to you of the Book and establish prayer. Indeed, ˹genuine˺ prayer should deter ˹one˺ from indecency and wickedness. The remembrance of Allah is ˹an˺ even greater ˹deterrent˺. And Allah ˹fully˺ knows what you ˹all˺ do.",
+ 46,
+ "Do not argue with the People of the Book unless gracefully, except with those of them who act wrongfully. And say, “We believe in what has been revealed to us and what was revealed to you. Our God and your God is ˹only˺ One. And to Him we ˹fully˺ submit.”",
+ 47,
+ "Similarly ˹to earlier messengers˺, We have revealed to you a Book ˹O Prophet˺. ˹The faithful of˺ those to whom We gave the Scriptures believe in it, as do some of these ˹pagan Arabs˺. And none denies Our revelations except the ˹stubborn˺ disbelievers.",
+ 48,
+ "You ˹O Prophet˺ could not read any writing ˹even˺ before this ˹revelation˺, nor could you write at all. Otherwise, the people of falsehood would have been suspicious.",
+ 49,
+ "But this ˹Quran˺ is ˹a set of˺ clear revelations ˹preserved˺ in the hearts of those gifted with knowledge. And none denies Our revelations except the ˹stubborn˺ wrongdoers.",
+ 50,
+ "They say, “If only ˹some˺ signs had been sent down to him from his Lord!” Say, ˹O Prophet,˺ “Signs are only with Allah. And I am only sent with a clear warning.”",
+ 51,
+ "Is it not enough for them that We have sent down to you the Book, ˹which is˺ recited to them. Surely in this ˹Quran˺ is a mercy and reminder for people who believe.",
+ 52,
+ "Say, ˹O Prophet,˺ “Sufficient is Allah as a Witness between me and you. He ˹fully˺ knows whatever is in the heavens and the earth. And those who believe in falsehood and disbelieve in Allah, it is they who are the ˹true˺ losers.”",
+ 53,
+ "They challenge you ˹O Prophet˺ to hasten the punishment. Had it not been for a time already set, the punishment would have certainly come to them ˹at once˺. But it will definitely take them by surprise when they least expect it.",
+ 54,
+ "They urge you to hasten the punishment. And Hell will certainly encompass the disbelievers",
+ 55,
+ "on the Day the punishment will overwhelm them from above them and from below their feet. And it will be said, “Reap what you sowed.”",
+ 56,
+ "O My believing servants! My earth is truly spacious, so worship Me ˹alone˺.",
+ 57,
+ "Every soul will taste death, then to Us you will ˹all˺ be returned.",
+ 58,
+ "˹As for˺ those who believe and do good, We will certainly house them in ˹elevated˺ mansions in Paradise, under which rivers flow, to stay there forever. How excellent is the reward for those who work ˹righteousness!˺—",
+ 59,
+ "those who patiently endure, and put their trust in their Lord!",
+ 60,
+ "How many are the creatures that cannot secure their provisions! ˹It is˺ Allah ˹Who˺ provides for them and you ˹as well˺. He is indeed the All-Hearing, All-Knowing.",
+ 61,
+ "If you ask them ˹O Prophet˺ who created the heavens and the earth and subjected the sun and the moon ˹for your benefit˺, they will certainly say, “Allah!” How can they then be deluded ˹from the truth˺?",
+ 62,
+ "Allah gives abundant or limited provisions to whoever He wills of His servants. Surely Allah has ˹full˺ knowledge of everything.",
+ 63,
+ "And if you ask them who sends down rain from the sky, giving life to the earth after its death, they will surely say, “Allah!” Say, “Praise be to Allah!” In fact, most of them do not understand.",
+ 64,
+ "This worldly life is no more than play and amusement. But the Hereafter is indeed the real life, if only they knew.",
+ 65,
+ "If they happen to be aboard a ship ˹caught in a storm˺, they cry out to Allah ˹alone˺ in sincere devotion. But as soon as He delivers them ˹safely˺ to shore, they associate ˹others with Him once again˺.",
+ 66,
+ "So let them be ungrateful for all We have given them, and ˹let them˺ enjoy themselves ˹for now˺! For they will soon know.",
+ 67,
+ "Have they not seen how We have made ˹Mecca˺ a safe haven, whereas people ˹all˺ around them are snatched away? How can they then believe in falsehood and deny Allah’s favours?",
+ 68,
+ "And who does more wrong than those who fabricate lies against Allah or reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?",
+ 69,
+ "As for those who struggle in Our cause, We will surely guide them along Our Way. And Allah is certainly with the good-doers."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/3.json b/share/quran-json/TheQuran/en/3.json
new file mode 100644
index 0000000..e4af686
--- /dev/null
+++ b/share/quran-json/TheQuran/en/3.json
@@ -0,0 +1,420 @@
+[
+ {
+ "id": "3",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Ali 'Imran",
+ "translated_name": "Family of Imran",
+ "verse_count": 200,
+ "slug": "ali-imran",
+ "codepoints": [
+ 1570,
+ 1604,
+ 32,
+ 1593,
+ 1605,
+ 1585,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm.",
+ 2,
+ "Allah! There is no god ˹worthy of worship˺ except Him—the Ever-Living, All-Sustaining.",
+ 3,
+ "He has revealed to you ˹O Prophet˺ the Book in truth, confirming what came before it, as He revealed the Torah and the Gospel",
+ 4,
+ "previously, as a guide for people, and ˹also˺ revealed the Standard ˹to distinguish between right and wrong˺. Surely those who reject Allah’s revelations will suffer a severe torment. For Allah is Almighty, capable of punishment.",
+ 5,
+ "Surely nothing on earth or in the heavens is hidden from Allah.",
+ 6,
+ "He is the One Who shapes you in the wombs of your mothers as He wills. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.",
+ 7,
+ "He is the One Who has revealed to you ˹O Prophet˺ the Book, of which some verses are precise—they are the foundation of the Book—while others are elusive. Those with deviant hearts follow the elusive verses seeking ˹to spread˺ doubt through their ˹false˺ interpretations—but none grasps their ˹full˺ meaning except Allah. As for those well-grounded in knowledge, they say, “We believe in this ˹Quran˺—it is all from our Lord.” But none will be mindful ˹of this˺ except people of reason.",
+ 8,
+ "˹They say,˺ “Our Lord! Do not let our hearts deviate after you have guided us. Grant us Your mercy. You are indeed the Giver ˹of all bounties˺.",
+ 9,
+ "Our Lord! You will certainly gather all humanity for the ˹promised˺ Day—about which there is no doubt. Surely Allah does not break His promise.”",
+ 10,
+ "Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah—and they will be the fuel for the Fire.",
+ 11,
+ "Their fate will be like that of the people of Pharaoh and those before them—they all rejected Our signs, so Allah seized them for their sins. And Allah is severe in punishment.",
+ 12,
+ "˹O Prophet!˺ Tell the disbelievers, “Soon you will be overpowered and driven to Hell—what an evil place to rest!”",
+ 13,
+ "Indeed, there was a sign for you in the two armies that met in battle—one fighting for the cause of Allah and the other in denial. The believers saw their enemy twice their number. But Allah supports with His victory whoever He wills. Surely in this is a lesson for people of insight.",
+ 14,
+ "The enjoyment of ˹worldly˺ desires—women, children, treasures of gold and silver, fine horses, cattle, and fertile land—has been made appealing to people. These are the pleasures of this worldly life, but with Allah is the finest destination.",
+ 15,
+ "Say, ˹O Prophet,˺ “Shall I inform you of what is better than ˹all of˺ this? Those mindful ˹of Allah˺ will have Gardens with their Lord under which rivers flow, to stay there forever, and pure spouses, along with Allah’s pleasure.” And Allah is All-Seeing of ˹His˺ servants,",
+ 16,
+ "who pray, “Our Lord! We have believed, so forgive our sins and protect us from the torment of the Fire.”",
+ 17,
+ "˹It is they˺ who are patient, sincere, obedient, and charitable, and who pray for forgiveness before dawn. ",
+ 18,
+ "Allah ˹Himself˺ is a Witness that there is no god ˹worthy of worship˺ except Him—and so are the angels and people of knowledge. He is the Maintainer of justice. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.",
+ 19,
+ "Certainly, Allah’s only Way is Islam. Those who were given the Scripture did not dispute ˹among themselves˺ out of mutual envy until knowledge came to them. Whoever denies Allah’s signs, then surely Allah is swift in reckoning.",
+ 20,
+ "So if they argue with you ˹O Prophet˺, say, “I have submitted myself to Allah, and so have my followers.” And ask those who were given the Scripture and the illiterate ˹people˺, “Have you submitted yourselves ˹to Allah˺?” If they submit, they will be ˹rightly˺ guided. But if they turn away, then your duty is only to deliver ˹the message˺. And Allah is All-Seeing of ˹His˺ servants.",
+ 21,
+ "Indeed, those who deny Allah’s signs, kill the prophets unjustly, and kill people who stand up for justice—give them good news of a painful punishment.",
+ 22,
+ "They are the ones whose deeds are wasted in this world and the Hereafter. And they will have no helpers.",
+ 23,
+ "Have you not seen those who were given a portion of the Scriptures? Yet when they are invited to the Book of Allah to settle their disputes, some of them turn away heedlessly.",
+ 24,
+ "This is because they say, “The Fire will not touch us except for a few days.” They have been deceived in their faith by their wishful lying.",
+ 25,
+ "But how ˹horrible˺ will it be when We gather them together on the Day about which there is no doubt—when every soul will be paid in full for what it has done, and none will be wronged!",
+ 26,
+ "Say, ˹O Prophet,˺ “O Allah! Lord over all authorities! You give authority to whoever You please and remove it from who You please; You honour whoever You please and disgrace who You please—all good is in Your Hands. Surely You ˹alone˺ are Most Capable of everything.",
+ 27,
+ "You cause the night to pass into the day and the day into the night. You bring forth the living from the dead and the dead from the living. And You provide for whoever You will without limit.”",
+ 28,
+ "Believers should not take disbelievers as guardians instead of the believers—and whoever does so will have nothing to hope for from Allah—unless it is a precaution against their tyranny. And Allah warns you about Himself. And to Allah is the final return.",
+ 29,
+ "Say, ˹O Prophet,˺ “Whether you conceal what is in your hearts or reveal it, it is known to Allah. For He knows whatever is in the heavens and whatever is on the earth. And Allah is Most Capable of everything.”",
+ 30,
+ "˹Watch for˺ the Day when every soul will be presented with whatever good it has done. And it will wish that its misdeeds were far off. And Allah warns you about Himself. And Allah is Ever Gracious to ˹His˺ servants.",
+ 31,
+ "Say, ˹O Prophet,˺ “If you ˹sincerely˺ love Allah, then follow me; Allah will love you and forgive your sins. For Allah is All-Forgiving, Most Merciful.”",
+ 32,
+ "Say, ˹O Prophet,˺ “Obey Allah and His Messenger.” If they still turn away, then truly Allah does not like the disbelievers.",
+ 33,
+ "Indeed, Allah chose Adam, Noah, the family of Abraham, and the family of ’Imrân above all people ˹of their time˺.",
+ 34,
+ "They are descendants of one another. And Allah is All-Hearing, All-Knowing.",
+ 35,
+ "˹Remember˺ when the wife of ’Imrân said, “My Lord! I dedicate what is in my womb entirely to Your service, so accept it from me. You ˹alone˺ are truly the All-Hearing, All-Knowing.”",
+ 36,
+ "When she delivered, she said, “My Lord! I have given birth to a girl,”—and Allah fully knew what she had delivered—“and the male is not like the female. I have named her Mary, and I seek Your protection for her and her offspring from Satan, the accursed.”",
+ 37,
+ "So her Lord accepted her graciously and blessed her with a pleasant upbringing—entrusting her to the care of Zachariah. Whenever Zachariah visited her in the sanctuary, he found her supplied with provisions. He exclaimed, “O Mary! Where did this come from?” She replied, “It is from Allah. Surely Allah provides for whoever He wills without limit.”",
+ 38,
+ "Then and there Zachariah prayed to his Lord, saying, “My Lord! Grant me—by your grace—righteous offspring. You are certainly the Hearer of ˹all˺ prayers.”",
+ 39,
+ "So the angels called out to him while he stood praying in the sanctuary, “Allah gives you good news of ˹the birth of˺ John who will confirm the Word of Allah and will be a great leader, chaste, and a prophet among the righteous.”",
+ 40,
+ "Zachariah exclaimed, “My Lord! How can I have a son when I am very old and my wife is barren?” He replied, “So will it be. Allah does what He wills.”",
+ 41,
+ "Zachariah said, “My Lord! Grant me a sign.” He said, “Your sign is that you will not ˹be able to˺ speak to people for three days except through gestures. Remember your Lord often and glorify ˹Him˺ morning and evening.”",
+ 42,
+ "And ˹remember˺ when the angels said, “O Mary! Surely Allah has selected you, purified you, and chosen you over all women of the world.",
+ 43,
+ "O Mary! Be devout to your Lord, prostrate yourself ˹in prayer˺ and bow along with those who bow down.”",
+ 44,
+ "This is news of the unseen that We reveal to you ˹O Prophet˺. You were not with them when they cast lots to decide who would be Mary’s guardian, nor were you there when they argued ˹about it˺.",
+ 45,
+ "˹Remember˺ when the angels proclaimed, “O Mary! Allah gives you good news of a Word from Him, his name will be the Messiah, Jesus, son of Mary; honoured in this world and the Hereafter, and he will be one of those nearest ˹to Allah˺.",
+ 46,
+ "And he will speak to people in ˹his˺ infancy and adulthood and will be one of the righteous.”",
+ 47,
+ "Mary wondered, “My Lord! How can I have a child when no man has ever touched me?” An angel replied, “So will it be. Allah creates what He wills. When He decrees a matter, He simply tells it, ‘Be!’ And it is!",
+ 48,
+ "And Allah will teach him writing and wisdom, the Torah and the Gospel,",
+ 49,
+ "and ˹make him˺ a messenger to the Children of Israel ˹to proclaim,˺ ‘I have come to you with a sign from your Lord: I will make for you a bird from clay, breathe into it, and it will become a ˹real˺ bird—by Allah’s Will. I will heal the blind and the leper and raise the dead to life—by Allah’s Will. And I will prophesize what you eat and store in your houses. Surely in this is a sign for you if you ˹truly˺ believe.",
+ 50,
+ "And I will confirm the Torah revealed before me and legalize some of what had been forbidden to you. I have come to you with a sign from your Lord, so be mindful of Allah and obey me.",
+ 51,
+ "Surely Allah is my Lord and your Lord. So worship Him ˹alone˺. This is the Straight Path.’”",
+ 52,
+ "When Jesus sensed disbelief from his people, he asked, “Who will stand up with me for Allah?” The disciples replied, “We will stand up for Allah. We believe in Allah, so bear witness that we have submitted.”",
+ 53,
+ "˹They prayed to Allah,˺ “Our Lord! We believe in Your revelations and follow the messenger, so count us among those who bear witness.”",
+ 54,
+ "And the disbelievers made a plan ˹against Jesus˺, but Allah also planned—and Allah is the best of planners.",
+ 55,
+ "˹Remember˺ when Allah said, “O Jesus! I will take you and raise you up to Myself. I will deliver you from those who disbelieve, and elevate your followers above the disbelievers until the Day of Judgment. Then to Me you will ˹all˺ return, and I will settle all your disputes.",
+ 56,
+ "As for those who disbelieve, I will subject them to a severe punishment in this life and the Hereafter, and they will have no helpers.",
+ 57,
+ "And as for those who believe and do good, they will be rewarded in full. And Allah does not like the wrongdoers.”",
+ 58,
+ "We recite ˹all˺ this to you ˹O Prophet˺ as one of the signs and ˹as˺ a wise reminder.",
+ 59,
+ "Indeed, the example of Jesus in the sight of Allah is like that of Adam. He created him from dust, then said to him, “Be!” And he was!",
+ 60,
+ "This is the truth from your Lord, so do not be one of those who doubt.",
+ 61,
+ "Now, whoever disputes with you ˹O Prophet˺ concerning Jesus after full knowledge has come to you, say, “Come! Let us gather our children and your children, our women and your women, ourselves and yourselves—then let us sincerely invoke Allah’s curse upon the liars.”",
+ 62,
+ "Certainly, this is the true narrative, and there is no god ˹worthy of worship˺ except Allah. And indeed, Allah ˹alone˺ is the Almighty, All-Wise.",
+ 63,
+ "If they turn away, then surely Allah has ˹perfect˺ knowledge of the corruptors.",
+ 64,
+ "Say, ˹O Prophet,˺ “O People of the Book! Let us come to common terms: that we will worship none but Allah, associate none with Him, nor take one another as lords instead of Allah.” But if they turn away, then say, “Bear witness that we have submitted ˹to Allah alone˺.”",
+ 65,
+ "O People of the Book! Why do you argue about Abraham, while the Torah and the Gospel were not revealed until long after him? Do you not understand?",
+ 66,
+ "Here you are! You disputed about what you have ˹little˺ knowledge of, but why do you now argue about what you have no knowledge of? Allah knows and you do not know.",
+ 67,
+ "Abraham was neither a Jew nor a Christian; he submitted in all uprightness and was not a polytheist.",
+ 68,
+ "Indeed, those who have the best claim to Abraham are his followers, this Prophet, and the believers. And Allah is the Guardian of those who believe.",
+ 69,
+ "Some of the People of the Book wish to mislead you ˹believers˺. They mislead none but themselves, yet they fail to perceive it.",
+ 70,
+ "O People of the Book! Why do you reject the signs of Allah while you bear witness ˹to their truth˺?",
+ 71,
+ "O People of the Book! Why do you mix the truth with falsehood and hide the truth knowingly?",
+ 72,
+ "A group among the People of the Book said ˹to one another˺, “Believe in what has been revealed to the believers in the morning and reject it in the evening, so they may abandon their faith.",
+ 73,
+ "And only believe those who follow your religion.” Say, ˹O Prophet,˺ “Surely, ˹the only˺ true guidance is Allah’s guidance.” ˹They also said,˺ “Do not believe that someone will receive ˹revealed˺ knowledge similar to yours or argue against you before your Lord.” Say, ˹O Prophet,˺ “Indeed, all bounty is in the Hands of Allah—He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing.”",
+ 74,
+ "He chooses whoever He wills to receive His mercy. And Allah is the Lord of infinite bounty.",
+ 75,
+ "There are some among the People of the Book who, if entrusted with a stack of gold, will readily return it. Yet there are others who, if entrusted with a single coin, will not repay it unless you constantly demand it. This is because they say, “We are not accountable for ˹exploiting˺ the Gentiles.” And ˹so˺ they attribute lies to Allah knowingly.",
+ 76,
+ "Absolutely! Those who honour their trusts and shun evil—surely Allah loves those who are mindful ˹of Him˺.",
+ 77,
+ "Indeed, those who trade Allah’s covenant and their oaths for a fleeting gain will have no share in the Hereafter. Allah will neither speak to them, nor look at them, nor purify them on the Day of Judgment. And they will suffer a painful punishment.",
+ 78,
+ "There are some among them who distort the Book with their tongues to make you think this ˹distortion˺ is from the Book—but it is not what the Book says. They say, “It is from Allah”—but it is not from Allah. And ˹so˺ they attribute lies to Allah knowingly.",
+ 79,
+ "It is not appropriate for someone who Allah has blessed with the Scripture, wisdom, and prophethood to say to people, “Worship me instead of Allah.” Rather, he would say, “Be devoted to the worship of your Lord ˹alone˺”—in accordance with what these prophets read in the Scripture and what they taught.",
+ 80,
+ "And he would never ask you to take angels and prophets as lords. Would he ask you to disbelieve after you have submitted?",
+ 81,
+ "˹Remember˺ when Allah made a covenant with the prophets, ˹saying,˺ “Now that I have given you the Book and wisdom, if there comes to you a messenger confirming what you have, you must believe in him and support him.” He added, “Do you affirm this covenant and accept this commitment?” They said, “Yes, we do.” Allah said, “Then bear witness, and I too am a Witness.”",
+ 82,
+ "Whoever turns back after this, they will be the rebellious.",
+ 83,
+ "Do they desire a way other than Allah’s—knowing that all those in the heavens and the earth submit to His Will, willingly or unwillingly, and to Him they will ˹all˺ be returned?",
+ 84,
+ "Say, ˹O Prophet,˺ “We believe in Allah and what has been revealed to us and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord—we make no distinction between any of them, and to Him we ˹fully˺ submit.”",
+ 85,
+ "Whoever seeks a way other than Islam, it will never be accepted from them, and in the Hereafter they will be among the losers.",
+ 86,
+ "How will Allah guide a people who chose to disbelieve after they had believed, acknowledged the Messenger to be true, and received clear proofs? For Allah does not guide the wrongdoing people.",
+ 87,
+ "Their reward is that they will be condemned by Allah, the angels, and all of humanity.",
+ 88,
+ "They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.",
+ 89,
+ "As for those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.",
+ 90,
+ "Indeed, those who disbelieve after having believed then increase in disbelief, their repentance will never be accepted. It is they who are astray.",
+ 91,
+ "Indeed, if each of those who disbelieve then die as disbelievers were to offer a ransom of enough gold to fill the whole world, it would never be accepted from them. It is they who will suffer a painful punishment, and they will have no helpers.",
+ 92,
+ "You will never achieve righteousness until you donate some of what you cherish. And whatever you give is certainly well known to Allah.",
+ 93,
+ "All food was lawful for the children of Israel, except what Israel made unlawful for himself before the Torah was revealed. Say, ˹O Prophet,˺ “Bring the Torah and read it, if your claims are true.”",
+ 94,
+ "Then whoever still fabricates lies about Allah, they will be the ˹true˺ wrongdoers.",
+ 95,
+ "Say, ˹O Prophet,˺ “Allah has declared the truth. So follow the Way of Abraham, the upright—who was not a polytheist.”",
+ 96,
+ "Surely the first House ˹of worship˺ established for humanity is the one at Bakkah—a blessed sanctuary and a guide for ˹all˺ people.",
+ 97,
+ "In it are clear signs and the standing-place of Abraham. Whoever enters it should be safe. Pilgrimage to this House is an obligation by Allah upon whoever is able among the people. And whoever disbelieves, then surely Allah is not in need of ˹any of His˺ creation.",
+ 98,
+ "Say, ˹O Prophet,˺ “O People of the Book! Why do you deny the revelations of Allah, when Allah is a Witness to what you do?”",
+ 99,
+ "Say, “O People of the Book! Why do you turn the believers away from the Way of Allah—striving to make it ˹appear˺ crooked, while you are witnesses ˹to its truth˺? And Allah is never unaware of what you do.”",
+ 100,
+ "O believers! If you were to yield to a group of those who were given the Scripture, they would turn you back from belief to disbelief.",
+ 101,
+ "How can you disbelieve when Allah’s revelations are recited to you and His Messenger is in your midst? Whoever holds firmly to Allah is surely guided to the Straight Path.",
+ 102,
+ "O believers! Be mindful of Allah in the way He deserves, and do not die except in ˹a state of full˺ submission ˹to Him˺.",
+ 103,
+ "And hold firmly to the rope of Allah and do not be divided. Remember Allah’s favour upon you when you were enemies, then He united your hearts, so you—by His grace—became brothers. And you were at the brink of a fiery pit and He saved you from it. This is how Allah makes His revelations clear to you, so that you may be ˹rightly˺ guided.",
+ 104,
+ "Let there be a group among you who call ˹others˺ to goodness, encourage what is good, and forbid what is evil—it is they who will be successful.",
+ 105,
+ "And do not be like those who split ˹into sects˺ and differed after clear proofs had come to them. It is they who will suffer a tremendous punishment.",
+ 106,
+ "On that Day some faces will be bright while others gloomy. To the gloomy-faced it will be said, “Did you disbelieve after having believed? So taste the punishment for your disbelief.”",
+ 107,
+ "As for the bright-faced, they will be in Allah’s mercy, where they will remain forever.",
+ 108,
+ "These are Allah’s revelations We recite to you ˹O Prophet˺ in truth. And Allah desires no injustice to ˹His˺ creation.",
+ 109,
+ "To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And to Allah ˹all˺ matters will be returned ˹for judgment˺.",
+ 110,
+ "You are the best community ever raised for humanity—you encourage good, forbid evil, and believe in Allah. Had the People of the Book believed, it would have been better for them. Some of them are faithful, but most are rebellious.",
+ 111,
+ "They can never inflict harm on you, except a little annoyance. But if they meet you in battle, they will flee and they will have no helpers.",
+ 112,
+ "They will be stricken with disgrace wherever they go, unless they are protected by a covenant with Allah or a treaty with the people. They have invited the displeasure of Allah and have been branded with misery for rejecting Allah’s revelations and murdering ˹His˺ prophets unjustly. This is ˹a fair reward˺ for their disobedience and violations.",
+ 113,
+ "Yet they are not all alike: there are some among the People of the Book who are upright, who recite Allah’s revelations throughout the night, prostrating ˹in prayer˺.",
+ 114,
+ "They believe in Allah and the Last Day, encourage good and forbid evil, and race with one another in doing good. They are ˹truly˺ among the righteous.",
+ 115,
+ "They will never be denied the reward for any good they have done. And Allah has ˹perfect˺ knowledge of those mindful ˹of Him˺.",
+ 116,
+ "Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah. It is they who will be the residents of the Fire. They will be there forever.",
+ 117,
+ "The good they do in this worldly life is like the harvest of an evil people struck by a bitter wind, destroying it ˹completely˺. Allah never wronged them, but they wronged themselves.",
+ 118,
+ "O believers! Do not associate closely with others who would not miss a chance to harm you. Their only desire is to see you suffer. Their prejudice has become evident from what they say—and what their hearts hide is far worse. We have made Our revelations clear to you, if only you understood.",
+ 119,
+ "Here you are! You love them but they do not love you, and you believe in all Scriptures. When they meet you they say, “We believe.” But when alone, they bite their fingertips in rage. Say, ˹O Prophet,˺ “˹May you˺ die of your rage!” Surely Allah knows best what is ˹hidden˺ in the heart.",
+ 120,
+ "When you ˹believers˺ are touched with good, they grieve; but when you are afflicted with evil, they rejoice. ˹Yet,˺ if you are patient and mindful ˹of Allah˺, their schemes will not harm you in the least. Surely Allah is Fully Aware of what they do.",
+ 121,
+ "˹Remember, O Prophet,˺ when you left your home in the early morning to position the believers in the battlefield. And Allah is All-Hearing, All-Knowing.",
+ 122,
+ "˹Remember˺ when two groups among you ˹believers˺ were about to cower, then Allah reassured them. So in Allah let the believers put their trust.",
+ 123,
+ "Indeed, Allah made you victorious at Badr when you were ˹vastly˺ outnumbered. So be mindful of Allah, perhaps you will be grateful.",
+ 124,
+ "˹Remember, O Prophet,˺ when you said to the believers, “Is it not enough that your Lord will send down a reinforcement of three thousand angels for your aid?”",
+ 125,
+ "Most certainly, if you ˹believers˺ are firm and mindful ˹of Allah˺ and the enemy launches a sudden attack on you, Allah will reinforce you with five thousand angels designated ˹for battle˺.",
+ 126,
+ "Allah ordained this ˹reinforcement˺ only as good news for you and reassurance for your hearts. And victory comes only from Allah—the Almighty, All-Wise—",
+ 127,
+ "to destroy a group of the disbelievers and humble the rest, causing them to withdraw in disappointment.",
+ 128,
+ "You ˹O Prophet˺ have no say in the matter. It is up to Allah to turn to them in mercy or punish them, for indeed they are wrongdoers.",
+ 129,
+ "To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.",
+ 130,
+ "O believers! Do not consume interest, multiplying it many times over. And be mindful of Allah, so you may prosper.",
+ 131,
+ "Guard yourselves against the Fire prepared for the disbelievers.",
+ 132,
+ "Obey Allah and the Messenger, so you may be shown mercy.",
+ 133,
+ "And hasten towards forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those mindful ˹of Allah˺.",
+ 134,
+ "˹They are˺ those who donate in prosperity and adversity, control their anger, and pardon others. And Allah loves the good-doers.",
+ 135,
+ "˹They are˺ those who, upon committing an evil deed or wronging themselves, remember Allah and seek forgiveness and do not knowingly persist in sin—and who forgives sins except Allah?",
+ 136,
+ "Their reward is forgiveness from their Lord and Gardens under which rivers flow, staying there forever. How excellent is the reward for those who work ˹righteousness˺!",
+ 137,
+ "Similar situations came to pass before you, so travel throughout the land and see the fate of the deniers.",
+ 138,
+ "This is an insight to humanity—a guide and a lesson to the God-fearing.",
+ 139,
+ "Do not falter or grieve, for you will have the upper hand, if you are ˹true˺ believers.",
+ 140,
+ "If you have suffered injuries ˹at Uḥud˺, they suffered similarly ˹at Badr˺. We alternate these days ˹of victory and defeat˺ among people so that Allah may reveal the ˹true˺ believers, choose martyrs from among you—and Allah does not like the wrongdoers—",
+ 141,
+ "and distinguish the ˹true˺ believers and destroy the disbelievers.",
+ 142,
+ "Do you think you will enter Paradise without Allah proving which of you ˹truly˺ struggled ˹for His cause˺ and patiently endured?",
+ 143,
+ "You certainly wished ˹for the opportunity˺ for martyrdom before encountering it, now you have seen it with your own eyes.",
+ 144,
+ "Muḥammad is no more than a messenger; other messengers have gone before him. If he were to die or to be killed, would you regress into disbelief? Those who do so will not harm Allah whatsoever. And Allah will reward those who are grateful.",
+ 145,
+ "No soul can ever die without Allah’s Will at the destined time. Those who desire worldly gain, We will let them have it, and those who desire heavenly reward, We will grant it to them. And We will reward those who are grateful.",
+ 146,
+ "˹Imagine˺ how many devotees fought along with their prophets and never faltered despite whatever ˹losses˺ they suffered in the cause of Allah, nor did they weaken or give in! Allah loves those who persevere.",
+ 147,
+ "And all they said was, “Our Lord! Forgive our sins and excesses, make our steps firm, and grant us victory over the disbelieving people.”",
+ 148,
+ "So Allah gave them the reward of this world and the excellent reward of the Hereafter. For Allah loves the good-doers.",
+ 149,
+ "O believers! If you yield to the disbelievers, they will drag you back to disbelief—and you will become losers.",
+ 150,
+ "But no! Allah is your Guardian, and He is the best Helper.",
+ 151,
+ "We will cast horror into the hearts of the disbelievers for associating ˹false gods˺ with Allah—a practice He has never authorized. The Fire will be their home—what an evil place for the wrongdoers to stay!",
+ 152,
+ "Indeed, Allah fulfilled His promise to you when you ˹initially˺ swept them away by His Will, then your courage weakened and you disputed about the command and disobeyed, after Allah had brought victory within your reach. Some of you were after worldly gain while others desired a heavenly reward. He denied you victory over them as a test, yet He has pardoned you. And Allah is Gracious to the believers.",
+ 153,
+ "˹Remember˺ when you were running far away ˹in panic˺—not looking at anyone—while the Messenger was calling to you from behind! So Allah rewarded your disobedience with distress upon distress. Now, do not grieve over the victory you were denied or the injury you suffered. And Allah is All-Aware of what you do.",
+ 154,
+ "Then after distress, He sent down serenity in the form of drowsiness overcoming some of you, while others were disturbed by evil thoughts about Allah—the thoughts of ˹pre-Islamic˺ ignorance. They ask, “Do we have a say in the matter?” Say, ˹O Prophet,˺ “All matters are destined by Allah.” They conceal in their hearts what they do not reveal to you. They say ˹to themselves˺, “If we had any say in the matter, none of us would have come to die here.” Say, ˹O Prophet,˺ “Even if you were to remain in your homes, those among you who were destined to be killed would have met the same fate.” Through this, Allah tests what is within you and purifies what is in your hearts. And Allah knows best what is ˹hidden˺ in the heart.",
+ 155,
+ "Indeed, those ˹believers˺ who fled on the day when the two armies met were made to slip by Satan because of their misdeeds. But Allah has pardoned them. Surely Allah is All-Forgiving, Most Forbearing.",
+ 156,
+ "O believers! Do not be like the unfaithful who say about their brothers who travel throughout the land or engage in battle, “If they had stayed with us, they would not have died or been killed.” Allah makes such thinking a cause of agony in their hearts. It is Allah who gives life and causes death. And Allah is All-Seeing of what you do.",
+ 157,
+ "Should you be martyred or die in the cause of Allah, then His forgiveness and mercy are far better than whatever ˹wealth˺ those ˹who stay behind˺ accumulate.",
+ 158,
+ "Whether you die or are martyred—all of you will be gathered before Allah.",
+ 159,
+ "It is out of Allah’s mercy that you ˹O Prophet˺ have been lenient with them. Had you been cruel or hard-hearted, they would have certainly abandoned you. So pardon them, ask Allah’s forgiveness for them, and consult with them in ˹conducting˺ matters. Once you make a decision, put your trust in Allah. Surely Allah loves those who trust in Him.",
+ 160,
+ "If Allah helps you, none can defeat you. But if He denies you help, then who else can help you? So in Allah let the believers put their trust.",
+ 161,
+ "It is not appropriate for a prophet to illegally withhold spoils of war. And whoever does so, it will be held against them on the Day of Judgment. Then every soul will be paid in full for what it has done, and none will be wronged.",
+ 162,
+ "Are those who seek Allah’s pleasure like those who deserve Allah’s wrath? Hell is their home. What an evil destination!",
+ 163,
+ "They ˹each˺ have varying degrees in the sight of Allah. And Allah is All-Seeing of what they do.",
+ 164,
+ "Indeed, Allah has done the believers a ˹great˺ favour by raising a messenger from among them—reciting to them His revelations, purifying them, and teaching them the Book and wisdom. For indeed they had previously been clearly astray.",
+ 165,
+ "Why is it when you suffered casualties ˹at Uḥud˺—although you had made your enemy suffer twice as much ˹at Badr˺—you protested, “How could this be?”? Say, ˹O Prophet,˺ “It is because of your disobedience.” Surely Allah is Most Capable of everything.",
+ 166,
+ "So what you suffered on the day the two armies met was by Allah’s Will, so that He might distinguish the ˹true˺ believers",
+ 167,
+ "and expose the hypocrites. When it was said to them, “Come fight in the cause of Allah or ˹at least˺ defend yourselves,” they replied, “If we had known there was fighting, we would have definitely gone with you.” They were closer to disbelief than to belief on that day—for saying with their mouths what was not in their hearts. Allah is All-Knowing of what they hide.",
+ 168,
+ "Those who sat at home, saying about their brothers, “Had they listened to us, they would not have been killed.” Say, ˹O Prophet,˺ “Try not to die if what you say is true!”",
+ 169,
+ "Never think of those martyred in the cause of Allah as dead. In fact, they are alive with their Lord, well provided for—",
+ 170,
+ "rejoicing in Allah’s bounties and being delighted for those yet to join them. There will be no fear for them, nor will they grieve.",
+ 171,
+ "They are joyful for receiving Allah’s grace and bounty, and that Allah does not deny the reward of the believers.",
+ 172,
+ "˹As for˺ those who responded to the call of Allah and His Messenger after their injury, those of them who did good and were mindful ˹of Allah˺ will have a great reward.",
+ 173,
+ "Those who were warned, “Your enemies have mobilized their forces against you, so fear them,” the warning only made them grow stronger in faith and they replied, “Allah ˹alone˺ is sufficient ˹as an aid˺ for us and ˹He˺ is the best Protector.”",
+ 174,
+ "So they returned with Allah’s favours and grace, suffering no harm. For they sought to please Allah. And surely Allah is ˹the˺ Lord of infinite bounty.",
+ 175,
+ "That ˹warning˺ was only ˹from˺ Satan, trying to prompt you to fear his followers. So do not fear them; fear Me if you are ˹true˺ believers.",
+ 176,
+ "˹O Prophet!˺ Do not grieve for those who race to disbelieve—surely they will not harm Allah in the least. It is Allah’s Will to disallow them a share in the Hereafter, and they will suffer a tremendous punishment.",
+ 177,
+ "Those who trade belief for disbelief will never harm Allah in the least, and they will suffer a painful punishment.",
+ 178,
+ "Those who disbelieve should not think that living longer is good for them. They are only given more time to increase in sin, and they will suffer a humiliating punishment.",
+ 179,
+ "Allah would not leave the believers in the condition you were in, until He distinguished the good from the evil ˹among you˺. Nor would Allah ˹directly˺ reveal to you the unseen, but He chooses whoever He wills as a messenger. So believe in Allah and His messengers. And if you are faithful and mindful ˹of Allah˺, you will receive a great reward.",
+ 180,
+ "And do not let those who ˹greedily˺ withhold Allah’s bounties think it is good for them—in fact, it is bad for them! They will be leashed ˹by their necks˺ on the Day of Judgment with whatever ˹wealth˺ they used to withhold. And Allah is the ˹sole˺ inheritor of the heavens and the earth. And Allah is All-Aware of what you do.",
+ 181,
+ "Indeed, Allah has heard those ˹among the Jews˺ who said, “Allah is poor; we are rich!” We have certainly recorded their slurs and their killing of prophets unjustly. Then We will say, “Taste the torment of burning!",
+ 182,
+ "This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation.”",
+ 183,
+ "Those ˹are the same people˺ who say, “Allah has commanded us not to believe in any messenger unless he brings us an offering to be consumed by fire ˹from the sky˺.” Say, ˹O Prophet,˺ “Other prophets did in fact come to you before me with clear proofs and ˹even˺ what you demanded—why then did you kill them, if what you say is true?”",
+ 184,
+ "If you are rejected by them, so too were messengers before you who came with clear proofs, divine Books, and enlightening Scriptures. ",
+ 185,
+ "Every soul will taste death. And you will only receive your full reward on the Day of Judgment. Whoever is spared from the Fire and is admitted into Paradise will ˹indeed˺ triumph, whereas the life of this world is no more than the delusion of enjoyment.",
+ 186,
+ "You ˹believers˺ will surely be tested in your wealth and yourselves, and you will certainly hear many hurtful words from those who were given the Scripture before you and ˹from˺ the polytheists. But if you are patient and mindful ˹of Allah˺—surely this is a resolve to aspire to.",
+ 187,
+ "˹Remember, O Prophet,˺ when Allah took the covenant of those who were given the Scripture to make it known to people and not hide it, yet they cast it behind their backs and traded it for a fleeting gain. What a miserable profit!",
+ 188,
+ "Do not let those who rejoice in their misdeeds and love to take credit for what they have not done think they will escape torment. They will suffer a painful punishment.",
+ 189,
+ "To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And Allah is Most Capable of everything.",
+ 190,
+ "Indeed, in the creation of the heavens and the earth and the alternation of the day and night there are signs for people of reason.",
+ 191,
+ "˹They are˺ those who remember Allah while standing, sitting, and lying on their sides, and reflect on the creation of the heavens and the earth ˹and pray˺, “Our Lord! You have not created ˹all of˺ this without purpose. Glory be to You! Protect us from the torment of the Fire.",
+ 192,
+ "Our Lord! Indeed, those You commit to the Fire will be ˹completely˺ disgraced! And the wrongdoers will have no helpers.",
+ 193,
+ "Our Lord! We have heard the caller to ˹true˺ belief, ˹proclaiming,˺ ‘Believe in your Lord ˹alone˺,’ so we believed. Our Lord! Forgive our sins, absolve us of our misdeeds, and allow us ˹each˺ to die as one of the virtuous.",
+ 194,
+ "Our Lord! Grant us what You have promised us through Your messengers and do not put us to shame on Judgment Day—for certainly You never fail in Your promise.”",
+ 195,
+ "So their Lord responded to them: “I will never deny any of you—male or female—the reward of your deeds. Both are equal in reward. Those who migrated or were expelled from their homes, and were persecuted for My sake and fought and ˹some˺ were martyred—I will certainly forgive their sins and admit them into Gardens under which rivers flow, as a reward from Allah. And with Allah is the finest reward!”",
+ 196,
+ "Do not be deceived by the prosperity of the disbelievers throughout the land.",
+ 197,
+ "It is only a brief enjoyment. Then Hell will be their home—what an evil place to rest!",
+ 198,
+ "But those who are mindful of their Lord will be in Gardens under which rivers flow, to stay there forever—as an accommodation from Allah. And what is with Allah is best for the virtuous.",
+ 199,
+ "Indeed, there are some among the People of the Book who truly believe in Allah and what has been revealed to you ˹believers˺ and what was revealed to them. They humble themselves before Allah—never trading Allah’s revelations for a fleeting gain. Their reward is with their Lord. Surely Allah is swift in reckoning.",
+ 200,
+ "O believers! Patiently endure, persevere, stand on guard, and be mindful of Allah, so you may be successful."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/30.json b/share/quran-json/TheQuran/en/30.json
new file mode 100644
index 0000000..3dd4901
--- /dev/null
+++ b/share/quran-json/TheQuran/en/30.json
@@ -0,0 +1,137 @@
+[
+ {
+ "id": "30",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ar-Rum",
+ "translated_name": "The Romans",
+ "verse_count": 60,
+ "slug": "ar-rum",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1585,
+ 1608,
+ 1605
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm.",
+ 2,
+ "The Romans have been defeated",
+ 3,
+ "in a nearby land. Yet following their defeat, they will triumph",
+ 4,
+ "within three to nine years. The ˹whole˺ matter rests with Allah before and after ˹victory˺. And on that day the believers will rejoice",
+ 5,
+ "at the victory willed by Allah. He gives victory to whoever He wills. For He is the Almighty, Most Merciful.",
+ 6,
+ "˹This is˺ the promise of Allah. ˹And˺ Allah never fails in His promise. But most people do not know.",
+ 7,
+ "They ˹only˺ know the worldly affairs of this life, but are ˹totally˺ oblivious to the Hereafter.",
+ 8,
+ "Have they not reflected upon their own being? Allah only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet most people are truly in denial of the meeting with their Lord!",
+ 9,
+ "Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might; they cultivated the land and developed it more than these ˹Meccans˺ ever have. Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.",
+ 10,
+ "Then most evil was the end of the evildoers for denying and mocking the signs of Allah.",
+ 11,
+ "It is Allah Who originates the creation, and will resurrect it. And then to Him you will ˹all˺ be returned.",
+ 12,
+ "On the Day the Hour will arrive, the wicked will be dumbstruck.",
+ 13,
+ "There will be no intercessors for them from among their associate-gods, and they will ˹totally˺ deny their associate-gods.",
+ 14,
+ "And on the Day the Hour will arrive, the people will then be split ˹into two groups˺.",
+ 15,
+ "As for those who believed and did good, they will be rejoicing in a Garden.",
+ 16,
+ "And as for those who disbelieved, and denied Our signs and the meeting ˹with Allah˺ in the Hereafter, they will be confined in punishment.",
+ 17,
+ "So glorify Allah in the evening and in the morning—",
+ 18,
+ "all praise is for Him in the heavens and the earth—as well as in the afternoon, and at noon. ",
+ 19,
+ "He brings forth the living from the dead and the dead from the living. And He gives life to the earth after its death. And so will you be brought forth ˹from the grave˺.",
+ 20,
+ "One of His signs is that He created you from dust, then—behold!—you are human beings spreading over ˹the earth˺.",
+ 21,
+ "And one of His signs is that He created for you spouses from among yourselves so that you may find comfort in them. And He has placed between you compassion and mercy. Surely in this are signs for people who reflect.",
+ 22,
+ "And one of His signs is the creation of the heavens and the earth, and the diversity of your languages and colours. Surely in this are signs for those of ˹sound˺ knowledge.",
+ 23,
+ "And one of His signs is your sleep by night and by day ˹for rest˺ as well as your seeking His bounty ˹in both˺. Surely in this are signs for people who listen.",
+ 24,
+ "And one of His signs is that He shows you lightning, inspiring ˹you with˺ hope and fear. And He sends down rain from the sky, reviving the earth after its death. Surely in this are signs for people who understand.",
+ 25,
+ "And one of His signs is that the heavens and the earth persist by His command. Then when He calls you out of the earth just once, you will instantly come forth.",
+ 26,
+ "And to Him belong all those in the heavens and the earth—all are subject to His Will.",
+ 27,
+ "And He is the One Who originates the creation then will resurrect it—which is even easier for Him. To Him belong the finest attributes in the heavens and the earth. And He is the Almighty, All-Wise.",
+ 28,
+ "He sets forth for you an example ˹drawn˺ from your own lives: would you allow some of those ˹bondspeople˺ in your possession to be your equal partners in whatever ˹wealth˺ We have provided you, keeping them in mind as you are mindful of your peers? This is how We make the signs clear for people who understand.",
+ 29,
+ "In fact, the wrongdoers merely follow their desires with no knowledge. Who then can guide those Allah has left to stray? They will have no helpers.",
+ 30,
+ "So be steadfast in faith in all uprightness ˹O Prophet˺—the natural Way of Allah which He has instilled in ˹all˺ people. Let there be no change in this creation of Allah. That is the Straight Way, but most people do not know.",
+ 31,
+ "˹O believers!˺ Always turn to Him ˹in repentance˺, be mindful of Him, and establish prayers. And do not be polytheists—",
+ 32,
+ "˹like˺ those who have divided their faith and split into sects, each rejoicing in what they have.",
+ 33,
+ "When people are touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He gives them a taste of His mercy, a group of them associates ˹others˺ with their Lord ˹in worship˺,",
+ 34,
+ "becoming ungrateful for whatever ˹favours˺ We have given them. So enjoy yourselves, for soon you will know.",
+ 35,
+ "Or have We sent down to them an authority which attests to what they associate ˹with Him˺?",
+ 36,
+ "If We give people a taste of mercy, they become prideful ˹because˺ of it. But if they are afflicted with an evil for what their hands have done, they instantly fall into despair.",
+ 37,
+ "Have they not seen that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.",
+ 38,
+ "So give your close relatives their due, as well as the poor and the ˹needy˺ traveller. That is best for those who seek the pleasure of Allah, and it is they who will be successful.",
+ 39,
+ "Whatever loans you give, ˹only˺ seeking interest at the expense of people’s wealth will not increase with Allah. But whatever charity you give, ˹only˺ seeking the pleasure of Allah—it is they whose reward will be multiplied.",
+ 40,
+ "It is Allah Who created you, then gives you provisions, then will cause you to die, and then will bring you back to life. Can any of your associate-gods do any of this? Glorified and Exalted is He above what they associate with Him ˹in worship˺!",
+ 41,
+ "Corruption has spread on land and sea as a result of what people’s hands have done, so that Allah may cause them to taste ˹the consequences of˺ some of their deeds and perhaps they might return ˹to the Right Path˺.",
+ 42,
+ "Say, ˹O Prophet,˺ “Travel throughout the land and see what was the end of those ˹destroyed˺ before ˹you˺—most of them were polytheists.”",
+ 43,
+ "So be steadfast in the Upright Faith ˹O Prophet˺, before the coming of a Day from Allah that cannot be averted. On that Day the people will be divided:",
+ 44,
+ "those who disbelieved will bear ˹the burden of˺ their own disbelief; and those who did good will have prepared for themselves ˹eternal homes˺,",
+ 45,
+ "so that He may ˹generously˺ reward those who believe and do good, out of His grace. He truly does not like the disbelievers.",
+ 46,
+ "And one of His signs is that He sends the winds, ushering in good news ˹of rain˺ so that He may give you a taste of His mercy, and that ships may sail by His command, and that you may seek His bounty, and perhaps you will be grateful.",
+ 47,
+ "Indeed, We sent before you ˹O Prophet˺ messengers, each to their own people, and they came to them with clear proofs. Then We inflicted punishment upon those who persisted in wickedness. For it is Our duty to help the believers.",
+ 48,
+ "It is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, which He then spreads out in the sky or piles up into masses as He wills, from which you see rain come forth. Then as soon as He causes it to fall on whoever He wills of His servants, they rejoice,",
+ 49,
+ "although they had utterly lost hope just before it was sent down to them.",
+ 50,
+ "See then the impact of Allah’s mercy: how He gives life to the earth after its death! Surely That ˹same God˺ can raise the dead. For He is Most Capable of everything.",
+ 51,
+ "Then if We send a ˹harsh˺ wind which they see withering ˹their˺ crops, they will definitely deny ˹old favours˺ right after.",
+ 52,
+ "So you ˹O Prophet˺ certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.",
+ 53,
+ "Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.",
+ 54,
+ "It is Allah Who created you in a state of weakness, then developed ˹your˺ weakness into strength, then developed ˹your˺ strength into weakness and old age. He creates whatever He wills. For He is the All-Knowing, Most Capable.",
+ 55,
+ "And on the Day the Hour will arrive, the wicked will swear that they did not stay ˹in this world˺ more than an hour. In this way they were always deluded ˹in the world˺.",
+ 56,
+ "But those gifted with knowledge and faith will say ˹to them˺, “You did actually stay—as destined by Allah—until the Day of Resurrection. So here is the Day of Resurrection ˹which you denied˺! But you did not know ˹it was true˺.”",
+ 57,
+ "So on that Day the wrongdoers’ excuses will not benefit them, nor will they be allowed to appease ˹their Lord˺.",
+ 58,
+ "We have certainly set forth every ˹kind of˺ lesson for people in this Quran. And no matter what sign you bring to them ˹O Prophet˺, the disbelievers will definitely say ˹to the believers˺, “You are only a people of falsehood.”",
+ 59,
+ "This is how Allah seals the hearts of those unwilling to know ˹the truth˺.",
+ 60,
+ "So be patient, for the promise of Allah certainly is true. And do not be disturbed by those who have no sure faith."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/31.json b/share/quran-json/TheQuran/en/31.json
new file mode 100644
index 0000000..b6cb619
--- /dev/null
+++ b/share/quran-json/TheQuran/en/31.json
@@ -0,0 +1,85 @@
+[
+ {
+ "id": "31",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Luqman",
+ "translated_name": "Luqman",
+ "verse_count": 34,
+ "slug": "luqman",
+ "codepoints": [
+ 1604,
+ 1602,
+ 1605,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm.",
+ 2,
+ "These are the verses of the Book, rich in wisdom.",
+ 3,
+ "˹It is˺ a guide and mercy for the good-doers—",
+ 4,
+ "those who establish prayer, pay alms-tax, and have sure faith in the Hereafter.",
+ 5,
+ "It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful. ",
+ 6,
+ "But there are some who employ theatrics, only to lead others away from Allah’s Way—without any knowledge—and to make a mockery of it. They will suffer a humiliating punishment.",
+ 7,
+ "Whenever Our revelations are recited to them, they turn away in arrogance as if they did not hear them, as if there is deafness in their ears. So give them good news ˹O Prophet˺ of a painful punishment.",
+ 8,
+ "Surely those who believe and do good will have the Gardens of Bliss,",
+ 9,
+ "staying there forever. Allah’s promise is true. And He is the Almighty, All-Wise.",
+ 10,
+ "He created the heavens without pillars—as you can see—and placed firm mountains upon the earth so it does not shake with you, and scattered throughout it all types of creatures. And We send down rain from the sky, causing every type of fine plant to grow on earth.",
+ 11,
+ "This is Allah’s creation. Now show Me what those ˹gods˺ other than Him have created. In fact, the wrongdoers are clearly astray.",
+ 12,
+ "Indeed, We blessed Luqmân with wisdom, ˹saying˺, “Be grateful to Allah, for whoever is grateful, it is only for their own good. And whoever is ungrateful, then surely Allah is Self-Sufficient, Praiseworthy.”",
+ 13,
+ "And ˹remember˺ when Luqmân said to his son, while advising him, “O my dear son! Never associate ˹anything˺ with Allah ˹in worship˺, for associating ˹others with Him˺ is truly the worst of all wrongs.”",
+ 14,
+ "And We have commanded people to ˹honour˺ their parents. Their mothers bore them through hardship upon hardship, and their weaning takes two years. So be grateful to Me and your parents. To Me is the final return.",
+ 15,
+ "But if they pressure you to associate with Me what you have no knowledge of, do not obey them. Still keep their company in this world courteously, and follow the way of those who turn to Me ˹in devotion˺. Then to Me you will ˹all˺ return, and then I will inform you of what you used to do.",
+ 16,
+ "˹Luqmân added,˺ “O my dear son! ˹Even˺ if a deed were the weight of a mustard seed—be it ˹hidden˺ in a rock or in the heavens or the earth—Allah will bring it forth. Surely Allah is Most Subtle, All-Aware.",
+ 17,
+ "“O my dear son! Establish prayer, encourage what is good and forbid what is evil, and endure patiently whatever befalls you. Surely this is a resolve to aspire to.",
+ 18,
+ "“And do not turn your nose up to people, nor walk pridefully upon the earth. Surely Allah does not like whoever is arrogant, boastful.",
+ 19,
+ "Be moderate in your pace. And lower your voice, for the ugliest of all voices is certainly the braying of donkeys.”",
+ 20,
+ "Have you not seen that Allah has subjected for you whatever is in the heavens and whatever is on the earth, and has lavished His favours upon you, both seen and unseen? ˹Still˺ there are some who dispute about Allah without knowledge, or guidance, or an enlightening scripture.",
+ 21,
+ "When it is said to them, “Follow what Allah has revealed,” they reply, “No! We ˹only˺ follow what we found our forefathers practicing.” ˹Would they still do so˺ even if Satan is inviting them to the torment of the Blaze?",
+ 22,
+ "Whoever fully submits themselves to Allah and is a good-doer, they have certainly grasped the firmest hand-hold. And with Allah rests the outcome of ˹all˺ affairs.",
+ 23,
+ "But whoever disbelieves, do not let their disbelief grieve you ˹O Prophet˺. To Us is their return, and We will inform them of all they did. Surely Allah knows best what is ˹hidden˺ in the heart.",
+ 24,
+ "We allow them enjoyment for a little while, then ˹in time˺ We will force them into a harsh torment.",
+ 25,
+ "And if you ask them who created the heavens and the earth, they will definitely say, “Allah!” Say, “Praise be to Allah!” In fact, most of them do not know.",
+ 26,
+ "To Allah belongs whatever is in the heavens and the earth. Allah is truly the Self-Sufficient, Praiseworthy.",
+ 27,
+ "If all the trees on earth were pens and the ocean ˹were ink˺, refilled by seven other oceans, the Words of Allah would not be exhausted. Surely Allah is Almighty, All-Wise.",
+ 28,
+ "The creation and resurrection of you ˹all˺ is as simple ˹for Him˺ as that of a single soul. Surely Allah is All-Hearing, All-Seeing.",
+ 29,
+ "Do you not see that Allah causes the night to merge into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term, and that Allah is All-Aware of what you do?",
+ 30,
+ "That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and ˹because˺ Allah ˹alone˺ is the Most High, All-Great.",
+ 31,
+ "Do you not see that the ships sail ˹smoothly˺ through the sea by the grace of Allah so that He may show you some of His signs? Surely in this are signs for whoever is steadfast, grateful.",
+ 32,
+ "And as soon as they are overwhelmed by waves like mountains, they cry out to Allah ˹alone˺ in sincere devotion. But when He delivers them ˹safely˺ to shore, only some become relatively grateful. And none rejects Our signs except whoever is deceitful, ungrateful.",
+ 33,
+ "O humanity! Be mindful of your Lord, and beware of a Day when no parent will be of any benefit to their child, nor will a child be of any benefit to their parent. Surely Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.",
+ 34,
+ "Indeed, Allah ˹alone˺ has the knowledge of the Hour. He sends down the rain, and knows what is in the wombs. No soul knows what it will earn for tomorrow, and no soul knows in what land it will die. Surely Allah is All-Knowing, All-Aware."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/32.json b/share/quran-json/TheQuran/en/32.json
new file mode 100644
index 0000000..b186cee
--- /dev/null
+++ b/share/quran-json/TheQuran/en/32.json
@@ -0,0 +1,78 @@
+[
+ {
+ "id": "32",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "As-Sajdah",
+ "translated_name": "The Prostration",
+ "verse_count": 30,
+ "slug": "as-sajdah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1587,
+ 1580,
+ 1583,
+ 1577
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm.",
+ 2,
+ "The revelation of this Book is—beyond doubt—from the Lord of all worlds.",
+ 3,
+ "Or do they say, “He has fabricated it!”? No! It is the truth from your Lord in order for you to warn a people to whom no warner has come before you, so they may be ˹rightly˺ guided.",
+ 4,
+ "It is Allah Who has created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. You have no protector or intercessor besides Him. Will you not then be mindful?",
+ 5,
+ "He conducts every affair from the heavens to the earth, then it all ascends to Him on a Day whose length is a thousand years by your counting.",
+ 6,
+ "That is the Knower of the seen and unseen—the Almighty, Most Merciful,",
+ 7,
+ "Who has perfected everything He created. And He originated the creation of humankind from clay.",
+ 8,
+ "Then He made his descendants from an extract of a humble fluid,",
+ 9,
+ "then He fashioned them and had a spirit of His Own ˹creation˺ breathed into them. And He gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.",
+ 10,
+ "˹Still˺ they ask ˹mockingly˺, “When we are disintegrated into the earth, will we really be raised as a new creation?” In fact, they are in denial of the meeting with their Lord.",
+ 11,
+ "Say, ˹O Prophet,˺ “Your soul will be taken by the Angel of Death, who is in charge of you. Then to your Lord you will ˹all˺ be returned.”",
+ 12,
+ "If only you could see the wicked hanging their heads ˹in shame˺ before their Lord, ˹crying:˺ “Our Lord! We have now seen and heard, so send us back and we will do good. We truly have sure faith ˹now˺!”",
+ 13,
+ "Had We willed, We could have easily imposed guidance on every soul. But My Word will come to pass: I will surely fill up Hell with jinn and humans all together.",
+ 14,
+ "So taste ˹the punishment˺ for neglecting the meeting of this Day of yours. We ˹too˺ will certainly neglect you. And taste the torment of eternity for what you used to do!",
+ 15,
+ "The only ˹true˺ believers in Our revelation are those who—when it is recited to them—fall into prostration and glorify the praises of their Lord and are not too proud.",
+ 16,
+ "They abandon their beds, invoking their Lord with hope and fear, and donate from what We have provided for them.",
+ 17,
+ "No soul can imagine what delights are kept in store for them as a reward for what they used to do.",
+ 18,
+ "Is the one who is a believer equal ˹before Allah˺ to the one who is rebellious? They are not equal!",
+ 19,
+ "As for those who believe and do good, they will have the Gardens of ˹Eternal˺ Residence—as an accommodation for what they used to do.",
+ 20,
+ "But as for those who are rebellious, the Fire will be their home. Whenever they try to escape from it, they will be forced back into it, and will be told, “Taste the Fire’s torment, which you used to deny.”",
+ 21,
+ "We will certainly make them taste some of the minor torment ˹in this life˺ before the major torment ˹of the Hereafter˺, so perhaps they will return ˹to the Right Path˺.",
+ 22,
+ "And who does more wrong than the one who is reminded of Allah’s revelations then turns away from them? We will surely inflict punishment upon the wicked.",
+ 23,
+ "Indeed, We gave the Scripture to Moses—so let there be no doubt ˹O Prophet˺ that you ˹too˺ are receiving revelations—and We made it a guide for the Children of Israel.",
+ 24,
+ "We raised from among them leaders, guiding by Our command, when they patiently endured and firmly believed in Our signs.",
+ 25,
+ "Indeed, your Lord will decide between them on the Day of Judgment regarding their differences.",
+ 26,
+ "Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs. Will they not then listen?",
+ 27,
+ "Do they not see how We drive rain to parched land, producing ˹various˺ crops from which they and their cattle eat? Will they not then see?",
+ 28,
+ "They ask ˹mockingly˺, “When is this ˹Day of final˺ Decision, if what you say is true?”",
+ 29,
+ "Say, ˹O Prophet,˺ “On the Day of Decision it will not benefit the disbelievers to believe then, nor will they be delayed ˹from punishment˺.”",
+ 30,
+ "So turn away from them, and wait! They too are waiting."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/33.json b/share/quran-json/TheQuran/en/33.json
new file mode 100644
index 0000000..0499ec3
--- /dev/null
+++ b/share/quran-json/TheQuran/en/33.json
@@ -0,0 +1,165 @@
+[
+ {
+ "id": "33",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Ahzab",
+ "translated_name": "The Combined Forces",
+ "verse_count": 73,
+ "slug": "al-ahzab",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1581,
+ 1586,
+ 1575,
+ 1576
+ ]
+ },
+ 1,
+ "O Prophet! ˹Always˺ be mindful of Allah, and do not yield to the disbelievers and the hypocrites. Indeed, Allah is All-Knowing, All-Wise.",
+ 2,
+ "Follow what is revealed to you from your Lord. Surely Allah is All-Aware of what you ˹all˺ do.",
+ 3,
+ "And put your trust in Allah, for Allah is sufficient as a Trustee of Affairs.",
+ 4,
+ "Allah does not place two hearts in any person’s chest. Nor does He regard your wives as ˹unlawful for you like˺ your real mothers, ˹even˺ if you say they are. Nor does He regard your adopted children as your real children. These are only your baseless assertions. But Allah declares the truth, and He ˹alone˺ guides to the ˹Right˺ Way.",
+ 5,
+ "Let your adopted children keep their family names. That is more just in the sight of Allah. But if you do not know their fathers, then they are ˹simply˺ your fellow believers and close associates. There is no blame on you for what you do by mistake, but ˹only˺ for what you do intentionally. And Allah is All-Forgiving, Most Merciful.",
+ 6,
+ "The Prophet has a stronger affinity to the believers than they do themselves. And his wives are their mothers. As ordained by Allah, blood relatives are more entitled ˹to inheritance˺ than ˹other˺ believers and immigrants, unless you ˹want to˺ show kindness to your ˹close˺ associates ˹through bequest˺. This is decreed in the Record. ",
+ 7,
+ "And ˹remember˺ when We took a covenant from the prophets, as well as from you ˹O Prophet˺, and from Noah, Abraham, Moses, and Jesus, son of Mary. We did take a solemn covenant from ˹all of˺ them",
+ 8,
+ "so that He may question these men of truth about their ˹delivery of the˺ truth. And He has prepared a painful punishment for the disbelievers.",
+ 9,
+ "O believers! Remember Allah’s favour upon you when ˹enemy˺ forces came to ˹besiege˺ you ˹in Medina˺, so We sent against them a ˹bitter˺ wind and forces you could not see. And Allah is All-Seeing of what you do.",
+ 10,
+ "˹Remember˺ when they came at you from east and west, when your eyes grew wild ˹in horror˺ and your hearts jumped into your throats, and you entertained ˹conflicting˺ thoughts about Allah.",
+ 11,
+ "Then and there the believers were put to the test, and were violently shaken.",
+ 12,
+ "And ˹remember˺ when the hypocrites and those with sickness in their hearts said, “Allah and His Messenger have promised us nothing but delusion!”",
+ 13,
+ "And ˹remember˺ when a group of them said, “O people of Yathrib! There is no point in you staying ˹here˺, so retreat!” Another group of them asked the Prophet’s permission ˹to leave˺, saying, “Our homes are vulnerable,” while ˹in fact˺ they were not vulnerable. They only wished to flee.",
+ 14,
+ "Had their city been sacked from all sides and they had been asked to abandon faith, they would have done so with little hesitation.",
+ 15,
+ "They had already pledged to Allah earlier never to turn their backs ˹in retreat˺. And a pledge to Allah must be answered for.",
+ 16,
+ "Say, ˹O Prophet,˺ “Fleeing will not benefit you if you ˹try to˺ escape a natural or violent death. ˹If it is not your time,˺ you will only be allowed enjoyment for a little while.”",
+ 17,
+ "Ask ˹them, O Prophet˺, “Who can put you out of Allah’s reach if He intends to harm you or show you mercy?” They can never find any protector or helper besides Allah.",
+ 18,
+ "Allah knows well those among you who discourage ˹others from fighting˺, saying ˹secretly˺ to their brothers, “Stay with us,” and who themselves hardly take part in fighting.",
+ 19,
+ "˹They are˺ totally unwilling to assist you. When danger comes, you see them staring at you with their eyes rolling like someone in the throes of death. But once the danger is over, they slash you with razor-sharp tongues, ravenous for ˹worldly˺ gains. Such people have not ˹truly˺ believed, so Allah has rendered their deeds void. And that is easy for Allah.",
+ 20,
+ "They ˹still˺ think that the enemy alliance has not ˹yet˺ withdrawn. And if the allies were to come ˹again˺, the hypocrites would wish to be away in the desert among nomadic Arabs, ˹only˺ asking for news about you ˹believers˺. And if the hypocrites were in your midst, they would hardly take part in the fight.",
+ 21,
+ "Indeed, in the Messenger of Allah you have an excellent example for whoever has hope in Allah and the Last Day, and remembers Allah often.",
+ 22,
+ "When the believers saw the enemy alliance, they said, “This is what Allah and His Messenger had promised us. The promise of Allah and His Messenger has come true.” And this only increased them in faith and submission.",
+ 23,
+ "Among the believers are men who have proven true to what they pledged to Allah. Some of them have fulfilled their pledge ˹with their lives˺, others are waiting ˹their turn˺. They have never changed ˹their commitment˺ in the least.",
+ 24,
+ "˹It all happened˺ so Allah may reward the faithful for their faithfulness, and punish the hypocrites if He wills or turn to them ˹in mercy˺. Surely Allah is All-Forgiving, Most Merciful.",
+ 25,
+ "And Allah drove back the disbelievers in their rage, totally empty-handed. And Allah spared the believers from fighting. For Allah is All-Powerful, Almighty.",
+ 26,
+ "And He brought down those from the People of the Book who supported the enemy alliance from their own strongholds, and cast horror into their hearts. You ˹believers˺ killed some, and took others captive.",
+ 27,
+ "He has also caused you to take over their lands, homes, and wealth, as well as lands you have not yet set foot on. And Allah is Most Capable of everything.",
+ 28,
+ "O Prophet! Say to your wives, “If you desire the life of this world and its luxury, then come, I will give you a ˹suitable˺ compensation ˹for divorce˺ and let you go graciously.",
+ 29,
+ "But if you desire Allah and His Messenger and the ˹everlasting˺ Home of the Hereafter, then Surely Allah has prepared a great reward for those of you who do good.”",
+ 30,
+ "O wives of the Prophet! If any of you were to commit a blatant misconduct, the punishment would be doubled for her. And that is easy for Allah.",
+ 31,
+ "And whoever of you devoutly obeys Allah and His Messenger and does good, We will grant her double the reward, and We have prepared for her an honourable provision.",
+ 32,
+ "O wives of the Prophet! You are not like any other women: if you are mindful ˹of Allah˺, then do not be overly effeminate in speech ˹with men˺ or those with sickness in their hearts may be tempted, but speak in a moderate tone.",
+ 33,
+ "Settle in your homes, and do not display yourselves as women did in the days of ˹pre-Islamic˺ ignorance. Establish prayer, pay alms-tax, and obey Allah and His Messenger. Allah only intends to keep ˹the causes of˺ evil away from you and purify you completely, O members of the ˹Prophet’s˺ family!",
+ 34,
+ "˹Always˺ remember what is recited in your homes of Allah’s revelations and ˹prophetic˺ wisdom. Surely Allah is Most Subtle, All-Aware.",
+ 35,
+ "Surely ˹for˺ Muslim men and women, believing men and women, devout men and women, truthful men and women, patient men and women, humble men and women, charitable men and women, fasting men and women, men and women who guard their chastity, and men and women who remember Allah often—for ˹all of˺ them Allah has prepared forgiveness and a great reward.",
+ 36,
+ "It is not for a believing man or woman—when Allah and His Messenger decree a matter—to have any other choice in that matter. Indeed, whoever disobeys Allah and His Messenger has clearly gone ˹far˺ astray.",
+ 37,
+ "And ˹remember, O Prophet,˺ when you said to the one for whom Allah has done a favour and you ˹too˺ have done a favour, “Keep your wife and fear Allah,” while concealing within yourself what Allah was going to reveal. And ˹so˺ you were considering the people, whereas Allah was more worthy of your consideration. So when Zaid totally lost interest in ˹keeping˺ his wife, We gave her to you in marriage, so that there would be no blame on the believers for marrying the ex-wives of their adopted sons after their divorce. And Allah’s command is totally binding.",
+ 38,
+ "There is no blame on the Prophet for doing what Allah has ordained for him. That has been the way of Allah with those ˹prophets˺ who had gone before. And Allah’s command has been firmly decreed.",
+ 39,
+ "˹That is His way with˺ those ˹prophets˺ who deliver the messages of Allah, and consider Him, and none but Allah. And sufficient is Allah as a ˹vigilant˺ Reckoner.",
+ 40,
+ "Muḥammad is not the father of any of your men, but is the Messenger of Allah and the seal of the prophets. And Allah has ˹perfect˺ knowledge of all things.",
+ 41,
+ "O believers! Always remember Allah often,",
+ 42,
+ "and glorify Him morning and evening.",
+ 43,
+ "He is the One Who showers His blessings upon you—and His angels pray for you—so that He may bring you out of darkness and into light. For He is ever Merciful to the believers.",
+ 44,
+ "Their greeting on the Day they meet Him will be, “Peace!” And He has prepared for them an honourable reward.",
+ 45,
+ "O Prophet! We have sent you as a witness, and a deliverer of good news, and a warner,",
+ 46,
+ "and a caller to ˹the Way of˺ Allah by His command, and a beacon of light.",
+ 47,
+ "Give good news to the believers that they will have a great bounty from Allah.",
+ 48,
+ "Do not yield to the disbelievers and the hypocrites. Overlook their annoyances, and put your trust in Allah. For Allah is sufficient as a Trustee of Affairs.",
+ 49,
+ "O believers! If you marry believing women and then divorce them before you touch them, they will have no waiting period for you to count, so give them a ˹suitable˺ compensation, and let them go graciously.",
+ 50,
+ "O Prophet! We have made lawful for you your wives to whom you have paid their ˹full˺ dowries as well as those ˹bondwomen˺ in your possession, whom Allah has granted you. And ˹you are allowed to marry˺ the daughters of your paternal uncles and aunts, and the daughters of your maternal uncles and aunts, who have emigrated like you. Also ˹allowed for marriage is˺ a believing woman who offers herself to the Prophet ˹without dowry˺ if he is interested in marrying her—˹this is˺ exclusively for you, not for the rest of the believers. We know well what ˹rulings˺ We have ordained for the believers in relation to their wives and those ˹bondwomen˺ in their possession. As such, there would be no blame on you. And Allah is All-Forgiving, Most Merciful.",
+ 51,
+ "It is up to you ˹O Prophet˺ to delay or receive whoever you please of your wives. There is no blame on you if you call back any of those you have set aside. That is more likely that they will be content, not grieved, and satisfied with what you offer them all. Allah ˹fully˺ knows what is in your hearts. And Allah is All-Knowing, Most Forbearing.",
+ 52,
+ "It is not lawful for you ˹O Prophet˺ to marry more women after this, nor can you replace any of your present wives with another, even if her beauty may attract you—except those ˹bondwomen˺ in your possession. And Allah is ever Watchful over all things.",
+ 53,
+ "O believers! Do not enter the homes of the Prophet without permission ˹and if invited˺ for a meal, do not ˹come too early and˺ linger until the meal is ready. But if you are invited, then enter ˹on time˺. Once you have eaten, then go on your way, and do not stay for casual talk. Such behaviour is truly annoying to the Prophet, yet he is too shy to ask you to leave. But Allah is never shy of the truth. And when you ˹believers˺ ask his wives for something, ask them from behind a barrier. This is purer for your hearts and theirs. And it is not right for you to annoy the Messenger of Allah, nor ever marry his wives after him. This would certainly be a major offence in the sight of Allah.",
+ 54,
+ "Whether you reveal something or conceal it, surely Allah has ˹perfect˺ knowledge of all things.",
+ 55,
+ "There is no blame on the Prophet’s wives ˹if they appear unveiled˺ before their fathers, their sons, their brothers, their brothers’ sons, their sisters’ sons, their fellow ˹Muslim˺ women, and those ˹bondspeople˺ in their possession. And be mindful of Allah ˹O wives of the Prophet!˺ Surely Allah is a Witness over all things.",
+ 56,
+ "Indeed, Allah showers His blessings upon the Prophet, and His angels pray for him. O believers! Invoke Allah’s blessings upon him, and salute him with worthy greetings of peace.",
+ 57,
+ "Surely those who offend Allah and His Messenger are condemned by Allah in this world and the Hereafter. And He has prepared for them a humiliating punishment.",
+ 58,
+ "As for those who abuse believing men and women unjustifiably, they will definitely bear the guilt of slander and blatant sin.",
+ 59,
+ "O Prophet! Ask your wives, daughters, and believing women to draw their cloaks over their bodies. In this way it is more likely that they will be recognized ˹as virtuous˺ and not be harassed. And Allah is All-Forgiving, Most Merciful. ",
+ 60,
+ "If the hypocrites, and those with sickness in their hearts, and rumour-mongers in Medina do not desist, We will certainly incite you ˹O Prophet˺ against them, and then they will not be your neighbours there any longer.",
+ 61,
+ "˹They deserve to be˺ condemned. ˹If they were to persist,˺ they would get themselves seized and killed relentlessly wherever they are found!",
+ 62,
+ "That was Allah’s way with those ˹hypocrites˺ who have gone before. And you will find no change in Allah’s way.",
+ 63,
+ "People ask you ˹O Prophet˺ about the Hour. Say, “That knowledge is only with Allah. You never know, perhaps the Hour is near.”",
+ 64,
+ "Surely Allah condemns the disbelievers, and has prepared for them a blazing Fire,",
+ 65,
+ "to stay there for ever and ever—never will they find any protector or helper.",
+ 66,
+ "On the Day their faces are ˹constantly˺ flipped in the Fire, they will cry, “Oh! If only we had obeyed Allah and obeyed the Messenger!”",
+ 67,
+ "And they will say, “Our Lord! We obeyed our leaders and elite, but they led us astray from the ˹Right˺ Way.",
+ 68,
+ "Our Lord! Give them double ˹our˺ punishment, and condemn them tremendously.”",
+ 69,
+ "O believers! Do not be like those who slandered Moses, but Allah cleared him of what they said. And he was honourable in the sight of Allah.",
+ 70,
+ "O believers! Be mindful of Allah, and say what is right.",
+ 71,
+ "He will bless your deeds for you, and forgive your sins. And whoever obeys Allah and His Messenger, has truly achieved a great triumph.",
+ 72,
+ "Indeed, We offered the trust to the heavens and the earth and the mountains, but they ˹all˺ declined to bear it, being fearful of it. But humanity assumed it, ˹for˺ they are truly wrongful ˹to themselves˺ and ignorant ˹of the consequences˺,",
+ 73,
+ "so that Allah will punish hypocrite men and women and polytheistic men and women, and Allah will turn in mercy to believing men and women. For Allah is All-Forgiving, Most Merciful. "
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/34.json b/share/quran-json/TheQuran/en/34.json
new file mode 100644
index 0000000..f72af6d
--- /dev/null
+++ b/share/quran-json/TheQuran/en/34.json
@@ -0,0 +1,123 @@
+[
+ {
+ "id": "34",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Saba",
+ "translated_name": "Sheba",
+ "verse_count": 54,
+ "slug": "saba",
+ "codepoints": [
+ 1587,
+ 1576,
+ 1573
+ ]
+ },
+ 1,
+ "All praise is for Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And praise be to Him in the Hereafter. He is the All-Wise, All-Aware.",
+ 2,
+ "He knows whatever goes into the earth and whatever comes out of it, and whatever descends from the sky and whatever ascends into it. And He is the Most Merciful, All-Forgiving.",
+ 3,
+ "The disbelievers say, “The Hour will never come to us.” Say, ˹O Prophet,˺ “Yes—by my Lord, the Knower of the unseen—it will certainly come to you!” Not ˹even˺ an atom’s weight is hidden from Him in the heavens or the earth; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record.",
+ 4,
+ "So He may reward those who believe and do good. It is they who will have forgiveness and an honourable provision.",
+ 5,
+ "As for those who strive to discredit Our revelations, it is they who will suffer the ˹worst˺ torment of agonizing pain.",
+ 6,
+ "Those gifted with knowledge ˹clearly˺ see that what has been revealed to you from your Lord ˹O Prophet˺ is the truth, and that it guides to the Path of the Almighty, the Praiseworthy.",
+ 7,
+ "The disbelievers say ˹mockingly to one another˺, “Shall we show you a man who claims that when you have been utterly disintegrated you will be raised as a new creation?",
+ 8,
+ "Has he fabricated a lie against Allah or is he insane?” In fact, those who do not believe in the Hereafter are bound for torment and have strayed farthest ˹from the truth˺.",
+ 9,
+ "Have they not then seen all that surrounds them of the heavens and the earth? If We willed, We could cause the earth to swallow them up, or cause ˹deadly˺ pieces of the sky to fall upon them. Surely in this is a sign for every servant who turns ˹to Allah˺.",
+ 10,
+ "Indeed, We granted David a ˹great˺ privilege from Us, ˹commanding:˺ “O mountains! Echo his hymns! And the birds as well.” We made iron mouldable for him,",
+ 11,
+ "instructing: “Make full-length armour, ˹perfectly˺ balancing the links. And work righteousness ˹O family of David!˺. Indeed, I am All-Seeing of what you do.”",
+ 12,
+ "And to Solomon ˹We subjected˺ the wind: its morning stride was a month’s journey and so was its evening stride. And We caused a stream of molten copper to flow for him, and ˹We subjected˺ some of the jinn to work under him by his Lord’s Will. And whoever of them deviated from Our command, We made them taste the torment of the blaze.",
+ 13,
+ "They made for him whatever he desired of sanctuaries, statues, basins as large as reservoirs, and cooking pots fixed ˹into the ground˺. ˹We ordered:˺ “Work gratefully, O family of David!” ˹Only˺ a few of My servants are ˹truly˺ grateful.",
+ 14,
+ "When We decreed Solomon’s death, nothing indicated to the ˹subjected˺ jinn that he was dead except the termites eating away his staff. So when he collapsed, the jinn realized that if they had ˹really˺ known the unseen, they would not have remained in ˹such˺ humiliating servitude.",
+ 15,
+ "Indeed, there was a sign for ˹the tribe of˺ Sheba in their homeland: two orchards—one to the right and the other to the left. ˹They were told:˺ “Eat from the provision of your Lord, and be grateful to Him. ˹Yours is˺ a good land and a forgiving Lord.”",
+ 16,
+ "But they turned away. So We sent against them a devastating flood, and replaced their orchards with two others producing bitter fruit, fruitless bushes, and a few ˹sparse˺ thorny trees.",
+ 17,
+ "This is how We rewarded them for their ingratitude. Would We ever punish ˹anyone in such a way˺ except the ungrateful?",
+ 18,
+ "We had also placed between them and the cities We showered with blessings ˹many small˺ towns within sight of one another. And We set moderate travel distances in between, ˹saying,˺ “Travel between them by day and night safely.”",
+ 19,
+ "But they said, “Our Lord! Make ˹the distances of˺ our journeys longer,” wronging themselves. So We reduced them to ˹cautionary˺ tales, and scattered them utterly. Surely in this are lessons for whoever is steadfast, grateful.",
+ 20,
+ "Indeed, Iblîs’ assumption about them has come true, so they ˹all˺ follow him, except a group of ˹true˺ believers.",
+ 21,
+ "He does not have any authority over them, but ˹Our Will is˺ only to distinguish those who believe in the Hereafter from those who are in doubt about it. And your Lord is a ˹vigilant˺ Keeper over all things.”",
+ 22,
+ "Say, ˹O Prophet,˺ “Call upon those you claim ˹to be divine˺ besides Allah. They do not possess ˹even˺ an atom’s weight either in the heavens or the earth, nor do they have any share in ˹governing˺ them. Nor is any of them a helper to Him.”",
+ 23,
+ "No intercession will be of any benefit with Him, except by those granted permission by Him. ˹At last,˺ when the dread ˹of Judgment Day˺ is relieved from their hearts ˹because they are permitted to intercede˺, they will ˹excitedly˺ ask ˹the angels˺, “What has your Lord ˹just˺ said?” The angels will reply, “The truth! And He is the Most High, All-Great.”",
+ 24,
+ "Ask ˹them, O Prophet˺, “Who provides for you from the heavens and the earth?” Say, “Allah! Now, certainly one of our two groups is ˹rightly˺ guided; the other is clearly astray.”",
+ 25,
+ "Say, “You will not be accountable for our misdeeds, nor will we be accountable for your deeds.”",
+ 26,
+ "Say, “Our Lord will gather us together, then He will judge between us with the truth. For He is the All-Knowing Judge.”",
+ 27,
+ "Say, “Show me those ˹idols˺ you have joined with Him as partners. No! In fact, He ˹alone˺ is Allah—the Almighty, All-Wise.”",
+ 28,
+ "We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner to all of humanity, but most people do not know.",
+ 29,
+ "And they ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”",
+ 30,
+ "Say, ˹O Prophet,˺ “A Day has ˹already˺ been appointed for you, which you can neither delay nor advance by a ˹single˺ moment.”",
+ 31,
+ "The disbelievers vow, “We will never believe in this Quran, nor in those ˹Scriptures˺ before it.” If only you could see when the wrongdoers will be detained before their Lord, throwing blame at each other! The lowly ˹followers˺ will say to the arrogant ˹leaders˺, “Had it not been for you, we would certainly have been believers.”",
+ 32,
+ "The arrogant will respond to the lowly, “Did we ever hinder you from guidance after it came to you? In fact, you were wicked ˹on your own˺.”",
+ 33,
+ "The lowly will say to the arrogant, “No! It was your plotting by day and night—when you ordered us to disbelieve in Allah and to set up equals with Him.” They will ˹all˺ hide ˹their˺ remorse when they see the torment. And We will put shackles around the necks of the disbelievers. Will they be rewarded except for what they used to do?",
+ 34,
+ "Whenever We sent a warner to a society, its elite would say, “We truly reject what you have been sent with.”",
+ 35,
+ "Adding, “We are far superior ˹to the believers˺ in wealth and children, and we will never be punished.”",
+ 36,
+ "Say, ˹O Prophet,˺ “Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills. But most people do not know.”",
+ 37,
+ "It is not your wealth or children that bring you closer to Us. But those who believe and do good—it is they who will have a multiplied reward for what they did, and they will be secure in ˹elevated˺ mansions.",
+ 38,
+ "As for those who strive to discredit Our revelations, it is they who will be confined in punishment.",
+ 39,
+ "Say, ˹O Prophet,˺ “Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills of His servants. And whatever you spend in charity, He will compensate ˹you˺ for it. For He is the Best Provider.”",
+ 40,
+ "And ˹consider˺ the Day He will gather them all together, and then ask the angels, “Was it you that these ˹polytheists˺ used to worship?”",
+ 41,
+ "They will say, “Glory be to You! Our loyalty is to You, not them. In fact, they ˹only˺ followed the ˹temptations of evil˺ jinn, in whom most of them had faith.”",
+ 42,
+ "So Today neither of you can benefit or protect each other. And We will say to the wrongdoers, “Taste the torment of the Fire, which you used to deny.”",
+ 43,
+ "When Our clear revelations are recited to them, they say, “This is only a man who wishes to hinder you from what your forefathers used to worship.” They also say, “This ˹Quran˺ is no more than a fabricated lie.” And the disbelievers say of the truth when it has come to them, “This is nothing but pure magic.”",
+ 44,
+ "˹They say so even though˺ We had never given them any scriptures to study, nor did We ever send them a warner before you ˹O Prophet˺.",
+ 45,
+ "Those ˹destroyed˺ before them denied as well—and these ˹Meccans˺ have not attained even one-tenth of what We had given their predecessors. Yet ˹when˺ they denied My messengers, how severe was My response!",
+ 46,
+ "Say, ˹O Prophet,˺ “I advise you to do ˹only˺ one thing: stand up for ˹the sake of˺ Allah—individually or in pairs—then reflect. Your fellow man is not insane. He is only a warner to you before ˹the coming of˺ a severe punishment.”",
+ 47,
+ "Say, “If I had ever asked you for a reward, you could keep it. My reward is only from Allah. And He is a Witness over all things.”",
+ 48,
+ "Say, “Surely my Lord hurls the truth ˹against falsehood˺. ˹He is˺ the Knower of all unseen.”",
+ 49,
+ "Say, “The truth has come, and falsehood will vanish, never to return.”",
+ 50,
+ "Say, “If I am astray, the loss is only mine. And if I am guided, it is ˹only˺ because of what my Lord reveals to me. He is indeed All-Hearing, Ever Near.”",
+ 51,
+ "If only you could see when they will be horrified with no escape ˹on Judgment Day˺! And they will be seized from a nearby place.",
+ 52,
+ "They will ˹then˺ cry, “We do ˹now˺ believe in it ˹all˺.” But how could they ˹possibly˺ attain faith from a place so far-off ˹from the world˺,",
+ 53,
+ "while they had already rejected it before, guessing blindly from a place ˹equally˺ far-away ˹from the Hereafter˺?",
+ 54,
+ "They will be sealed off from whatever they desire, as was done to their counterparts before. Indeed, they were ˹all˺ in alarming doubt."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/35.json b/share/quran-json/TheQuran/en/35.json
new file mode 100644
index 0000000..206b46f
--- /dev/null
+++ b/share/quran-json/TheQuran/en/35.json
@@ -0,0 +1,106 @@
+[
+ {
+ "id": "35",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Fatir",
+ "translated_name": "Originator",
+ "verse_count": 45,
+ "slug": "fatir",
+ "codepoints": [
+ 1601,
+ 1575,
+ 1591,
+ 1585
+ ]
+ },
+ 1,
+ "All praise is for Allah, the Originator of the heavens and the earth, Who made angels ˹as His˺ messengers with wings—two, three, or four. He increases in creation whatever He wills. Surely Allah is Most Capable of everything.",
+ 2,
+ "Whatever mercy Allah opens up for people, none can withhold it. And whatever He withholds, none but Him can release it. For He is the Almighty, All-Wise.",
+ 3,
+ "O humanity! Remember Allah’s favours upon you. Is there any creator other than Allah who provides for you from the heavens and the earth? There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?",
+ 4,
+ "If you are rejected by them, so too were messengers before you. And to Allah ˹all˺ matters will be returned ˹for judgment˺.",
+ 5,
+ "O humanity! Indeed, Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.",
+ 6,
+ "Surely Satan is an enemy to you, so take him as an enemy. He only invites his followers to become inmates of the Blaze.",
+ 7,
+ "Those who disbelieve will have a severe punishment. But those who believe and do good will have forgiveness and a great reward.",
+ 8,
+ "Are those whose evil-doing is made so appealing to them that they deem it good ˹like those who are rightly guided˺? ˹It is˺ certainly Allah ˹Who˺ leaves to stray whoever He wills, and guides whoever He wills. So do not grieve yourself to death over them ˹O Prophet˺. Surely Allah is All-Knowing of what they do.",
+ 9,
+ "And it is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, and then We drive them to a lifeless land, giving life to the earth after its death. Similar is the Resurrection.",
+ 10,
+ "Whoever seeks honour and power, then ˹let them know that˺ all honour and power belongs to Allah. To Him ˹alone˺ good words ascend, and righteous deeds are raised up by Him. As for those who plot evil, they will suffer a severe punishment. And the plotting of such ˹people˺ is doomed ˹to fail˺.",
+ 11,
+ "And ˹it is˺ Allah ˹Who˺ created you from dust, then ˹developed you˺ from a sperm-drop, then made you into pairs. No female ever conceives or delivers without His knowledge. And no one’s life is made long or cut short but is ˹written˺ in a Record. That is certainly easy for Allah.",
+ 12,
+ "The two bodies of water are not alike: one is fresh, palatable, and pleasant to drink and the other is salty and bitter. Yet from them both you eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through both, so you may seek His bounty and give thanks ˹to Him˺.",
+ 13,
+ "He merges the night into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term. That is Allah—your Lord! All authority belongs to Him. But those ˹idols˺ you invoke besides Him do not possess even the skin of a date stone.",
+ 14,
+ "If you call upon them, they cannot hear your calls. And if they were to hear, they could not respond to you. On the Day of Judgment they will disown your worship ˹of them˺. And no one can inform you ˹O Prophet˺ like the All-Knowledgeable.",
+ 15,
+ "O humanity! It is you who stand in need of Allah, but Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.",
+ 16,
+ "If He willed, He could eliminate you and produce a new creation.",
+ 17,
+ "And that is not difficult for Allah ˹at all˺.",
+ 18,
+ "No soul burdened with sin will bear the burden of another. And if a sin-burdened soul cries for help with its burden, none of it will be carried—even by a close relative. You ˹O Prophet˺ can only warn those who stand in awe of their Lord without seeing Him and establish prayer. Whoever purifies themselves, they only do so for their own good. And to Allah is the final return.",
+ 19,
+ "Those blind ˹to the truth˺ and those who can see are not equal,",
+ 20,
+ "nor are the darkness and the light,",
+ 21,
+ "nor the ˹scorching˺ heat and the ˹cool˺ shade.",
+ 22,
+ "Nor are the dead and the living equal. Indeed, Allah ˹alone˺ makes whoever He wills hear, but you ˹O Prophet˺ can never make those in the graves hear ˹your call˺.",
+ 23,
+ "You are only a warner.",
+ 24,
+ "We have surely sent you with the truth as a deliverer of good news and a warner. There is no community that has not had a warner.",
+ 25,
+ "If they deny you, so did those before them. Their messengers came to them with clear proofs, divine Books, and enlightening Scriptures.",
+ 26,
+ "Then I seized those who persisted in disbelief. How severe was My response!",
+ 27,
+ "Do you not see that Allah sends down rain from the sky with which We bring forth fruits of different colours? And in the mountains are streaks of varying shades of white, red, and raven black;",
+ 28,
+ "just as people, living beings, and cattle are of various colours as well. Of all of Allah’s servants, only the knowledgeable ˹of His might˺ are ˹truly˺ in awe of Him. Allah is indeed Almighty, All-Forgiving.",
+ 29,
+ "Surely those who recite the Book of Allah, establish prayer, and donate from what We have provided for them—secretly and openly—˹can˺ hope for an exchange that will never fail,",
+ 30,
+ "so that He will reward them in full and increase them out of His grace. He is truly All-Forgiving, Most Appreciative.",
+ 31,
+ "The Book We have revealed to you ˹O Prophet˺ is the truth, confirming what came before it. Surely Allah is All-Aware, All-Seeing of His servants.",
+ 32,
+ "Then We granted the Book to those We have chosen from Our servants. Some of them wrong themselves, some follow a middle course, and some are foremost in good deeds by Allah’s Will. That is ˹truly˺ the greatest bounty.",
+ 33,
+ "They will enter the Gardens of Eternity, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk.",
+ 34,
+ "And they will say, “Praise be to Allah, Who has kept away from us all ˹causes of˺ sorrow. Our Lord is indeed All-Forgiving, Most Appreciative.",
+ 35,
+ "˹He is the One˺ Who—out of His grace—has settled us in the Home of Everlasting Stay, where we will be touched by neither fatigue nor weariness.”",
+ 36,
+ "As for the disbelievers, they will have the Fire of Hell, where they will not be ˹allowed to be˺ finished by death, nor will its torment be lightened for them. This is how We reward every ˹stubborn˺ disbeliever.",
+ 37,
+ "There they will be ˹fervently˺ screaming, “Our Lord! Take us out ˹and send us back˺. We will do good, unlike what we used to do.” ˹They will be told,˺ “Did We not give you lives long enough so that whoever wanted to be mindful could have done so? And the warner came to you. So taste ˹the punishment˺, for the wrongdoers have no helper.”",
+ 38,
+ "Indeed, Allah is the Knower of the unseen of the heavens and the earth. He surely knows best what is ˹hidden˺ in the heart.",
+ 39,
+ "He is the One Who has placed you as successors on earth. So whoever disbelieves will bear ˹the burden of˺ their own disbelief. The disbelievers’ denial only increases them in contempt in the sight of their Lord, and it will only contribute to their loss.",
+ 40,
+ "Ask ˹them, O Prophet˺, “Have you considered your associate-gods which you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Or have We given the polytheists a Book, which serves as a clear proof for them? In fact, the wrongdoers promise each other nothing but delusion.”",
+ 41,
+ "Indeed, Allah ˹alone˺ keeps the heavens and the earth from falling apart. If they were to fall apart, none but Him could hold them up. He is truly Most Forbearing, All-Forgiving.",
+ 42,
+ "They swore by Allah their most solemn oaths that if a warner were to come to them, they would certainly be better guided than any other community. Yet when a warner did come to them, it only drove them farther away—",
+ 43,
+ "behaving arrogantly in the land and plotting evil. But evil plotting only backfires on those who plot. Are they awaiting anything but the fate of those ˹destroyed˺ before? You will find no change in the way of Allah, nor will you find it diverted ˹to someone else˺.",
+ 44,
+ "Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might. But there is nothing that can escape Allah in the heavens or the earth. He is certainly All-Knowing, Most Capable.",
+ 45,
+ "If Allah were to punish people ˹immediately˺ for what they have committed, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, then surely Allah is All-Seeing of His servants."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/36.json b/share/quran-json/TheQuran/en/36.json
new file mode 100644
index 0000000..fb81d5c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/36.json
@@ -0,0 +1,180 @@
+[
+ {
+ "id": "36",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ya-Sin",
+ "translated_name": "Ya Sin",
+ "verse_count": 83,
+ "slug": "ya-sin",
+ "codepoints": [
+ 1610,
+ 1587
+ ]
+ },
+ 1,
+ "Yâ-Sĩn.",
+ 2,
+ "By the Quran, rich in wisdom!",
+ 3,
+ "You ˹O Prophet˺ are truly one of the messengers",
+ 4,
+ "upon the Straight Path.",
+ 5,
+ "˹This is˺ a revelation from the Almighty, Most Merciful,",
+ 6,
+ "so that you may warn a people whose forefathers were not warned, and so are heedless.",
+ 7,
+ "The decree ˹of torment˺ has already been justified against most of them, for they will never believe.",
+ 8,
+ "˹It is as if˺ We have put shackles around their necks up to their chins, so their heads are forced up,",
+ 9,
+ "and have placed a barrier before them and a barrier behind them and covered them ˹all˺ up, so they fail to see ˹the truth˺.",
+ 10,
+ "It is the same whether you warn them or not—they will never believe.",
+ 11,
+ "You can only warn those who follow the Reminder and are in awe of the Most Compassionate without seeing Him. So give them good news of forgiveness and an honourable reward.",
+ 12,
+ "It is certainly We Who resurrect the dead, and write what they send forth and what they leave behind. Everything is listed by Us in a perfect Record. ",
+ 13,
+ "Give them an example ˹O Prophet˺ of the residents of a town, when the messengers came to them.",
+ 14,
+ "We sent them two messengers, but they rejected both. So We reinforced ˹the two˺ with a third, and they declared, “We have indeed been sent to you ˹as messengers˺.”",
+ 15,
+ "The people replied, “You are only humans like us, and the Most Compassionate has not revealed anything. You are simply lying!”",
+ 16,
+ "The messengers responded, “Our Lord knows that we have truly been sent to you.",
+ 17,
+ "And our duty is only to deliver ˹the message˺ clearly.”",
+ 18,
+ "The people replied, “We definitely see you as a bad omen for us. If you do not desist, we will certainly stone you ˹to death˺ and you will be touched with a painful punishment from us.”",
+ 19,
+ "The messengers said, “Your bad omen lies within yourselves. Are you saying this because you are reminded ˹of the truth˺? In fact, you are a transgressing people.”",
+ 20,
+ "Then from the farthest end of the city a man came, rushing. He advised, “O my people! Follow the messengers.",
+ 21,
+ "Follow those who ask no reward of you, and are ˹rightly˺ guided.",
+ 22,
+ "And why should I not worship the One Who has originated me, and to Whom you will be returned.",
+ 23,
+ "How could I take besides Him other gods whose intercession would not be of any benefit to me, nor could they save me if the Most Compassionate intended to harm me?",
+ 24,
+ "Indeed, I would then be clearly astray.",
+ 25,
+ "I do believe in your Lord, so listen to me.”",
+ 26,
+ "˹But they killed him, then˺ he was told ˹by the angels˺, “Enter Paradise!” He said, “If only my people knew",
+ 27,
+ "of how my Lord has forgiven me, and made me one of the honourable.”",
+ 28,
+ "We did not send any soldiers from the heavens against his people after his death, nor did We need to.",
+ 29,
+ "All it took was one ˹mighty˺ blast, and they were extinguished at once.",
+ 30,
+ "Oh pity, such beings! No messenger ever came to them without being mocked.",
+ 31,
+ "Have the deniers not considered how many peoples We destroyed before them who never came back to life again?",
+ 32,
+ "Yet they will all be brought before Us.",
+ 33,
+ "There is a sign for them in the dead earth: We give it life, producing grain from it for them to eat.",
+ 34,
+ "And We have placed in it gardens of palm trees and grapevines, and caused springs to gush forth in it,",
+ 35,
+ "so that they may eat from its fruit, which they had no hand in making. Will they not then give thanks?",
+ 36,
+ "Glory be to the One Who created all ˹things in˺ pairs—˹be it˺ what the earth produces, their genders, or what they do not know!",
+ 37,
+ "There is also a sign for them in the night: We strip from it daylight, then—behold!—they are in darkness.",
+ 38,
+ "The sun travels for its fixed term. That is the design of the Almighty, All-Knowing.",
+ 39,
+ "As for the moon, We have ordained ˹precise˺ phases for it, until it ends up like an old, curved palm stalk.",
+ 40,
+ "It is not for the sun to catch up with the moon, nor does the night outrun the day. Each is travelling in an orbit of their own.",
+ 41,
+ "Another sign for them is that We carried their ancestors ˹with Noah˺ in the fully loaded Ark,",
+ 42,
+ "and created for them similar things to ride in.",
+ 43,
+ "If We willed, We could drown them: then no one would respond to their cries, nor would they be rescued—",
+ 44,
+ "except by mercy from Us, allowing them enjoyment for a ˹little˺ while.",
+ 45,
+ "˹Still they turn away˺ when it is said to them, “Beware of what is ahead of you ˹in the Hereafter˺ and what is behind you ˹of destroyed nations˺ so you may be shown mercy.”",
+ 46,
+ "Whenever a sign comes to them from their Lord, they turn away from it.",
+ 47,
+ "And when it is said to them, “Donate from what Allah has provided for you,” the disbelievers say to the believers, “Why should we feed those whom Allah could have fed if He wanted to? You are clearly astray!”",
+ 48,
+ "And they ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”",
+ 49,
+ "They must be awaiting a single Blast, which will seize them while they are ˹entrenched˺ in ˹worldly˺ disputes.",
+ 50,
+ "Then they will not be able to make a ˹last˺ will, nor can they return to their own people.",
+ 51,
+ "The Trumpet will be blown ˹a second time˺, then—behold!—they will rush from the graves to their Lord.",
+ 52,
+ "They will cry, “Woe to us! Who has raised us up from our place of rest? This must be what the Most Compassionate warned us of; the messengers told the truth!”",
+ 53,
+ "It will only take one Blast, then at once they will all be brought before Us.",
+ 54,
+ "On that Day no soul will be wronged in the least, nor will you be rewarded except for what you used to do.",
+ 55,
+ "Indeed, on that Day the residents of Paradise will be busy enjoying themselves.",
+ 56,
+ "They and their spouses will be in ˹cool˺ shade, reclining on ˹canopied˺ couches.",
+ 57,
+ "There they will have fruits and whatever they desire.",
+ 58,
+ "And “Peace!” will be ˹their˺ greeting from the Merciful Lord.",
+ 59,
+ "˹Then the disbelievers will be told,˺ “Step away ˹from the believers˺ this Day, O wicked ones!",
+ 60,
+ "Did I not command you, O Children of Adam, not to follow Satan, for he is truly your sworn enemy,",
+ 61,
+ "but to worship Me ˹alone˺? This is the Straight Path.",
+ 62,
+ "Yet he already misled great multitudes of you. Did you not have any sense?",
+ 63,
+ "This is the Hell you were warned of.",
+ 64,
+ "Burn in it Today for your disbelief.”",
+ 65,
+ "On this Day We will seal their mouths, their hands will speak to Us, and their feet will testify to what they used to commit.",
+ 66,
+ "Had We willed, We could have easily blinded their eyes, so they would struggle to find their way. How then could they see?",
+ 67,
+ "And had We willed, We could have transfigured them on the spot, so they could neither progress forward nor turn back.",
+ 68,
+ "And whoever We grant a long life, We reverse them in development. Will they not then understand?",
+ 69,
+ "We have not taught him poetry, nor is it fitting for him. This ˹Book˺ is only a Reminder and a clear Quran",
+ 70,
+ "to warn whoever is ˹truly˺ alive and fulfil the decree ˹of torment˺ against the disbelievers.",
+ 71,
+ "Do they not see that We singlehandedly created for them, among other things, cattle which are under their control?",
+ 72,
+ "And We have subjected these ˹animals˺ to them, so they may ride some and eat others.",
+ 73,
+ "And they derive from them other benefits and drinks. Will they not then give thanks?",
+ 74,
+ "Still they have taken other gods besides Allah, hoping to be helped ˹by them˺.",
+ 75,
+ "They cannot help the pagans, even though they serve the idols as dedicated guards.",
+ 76,
+ "So do not let their words grieve you ˹O Prophet˺. Indeed, We ˹fully˺ know what they conceal and what they reveal.",
+ 77,
+ "Do people not see that We have created them from a sperm-drop, then—behold!—they openly challenge ˹Us˺?",
+ 78,
+ "And they argue with Us—forgetting they were created—saying, “Who will give life to decayed bones?”",
+ 79,
+ "Say, ˹O Prophet,˺ “They will be revived by the One Who produced them the first time, for He has ˹perfect˺ knowledge of every created being.",
+ 80,
+ "˹He is the One˺ Who gives you fire from green trees, and—behold!—you kindle ˹fire˺ from them.",
+ 81,
+ "Can the One Who created the heavens and the earth not ˹easily˺ resurrect these ˹deniers˺?” Yes ˹He can˺! For He is the Master Creator, All-Knowing.",
+ 82,
+ "All it takes, when He wills something ˹to be˺, is simply to say to it: “Be!” And it is!",
+ 83,
+ "So glory be to the One in Whose Hands is the authority over all things, and to Whom ˹alone˺ you will ˹all˺ be returned."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/37.json b/share/quran-json/TheQuran/en/37.json
new file mode 100644
index 0000000..faa3242
--- /dev/null
+++ b/share/quran-json/TheQuran/en/37.json
@@ -0,0 +1,383 @@
+[
+ {
+ "id": "37",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "As-Saffat",
+ "translated_name": "Those who set the Ranks",
+ "verse_count": 182,
+ "slug": "as-saffat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1589,
+ 1575,
+ 1601,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "By those ˹angels˺ lined up in ranks,",
+ 2,
+ "and those who diligently drive ˹the clouds˺,",
+ 3,
+ "and those who recite the Reminder!",
+ 4,
+ "Surely your God is One!",
+ 5,
+ "˹He is˺ the Lord of the heavens and the earth and everything in between, and the Lord of all points of sunrise.",
+ 6,
+ "Indeed, We have adorned the lowest heaven with the stars for decoration",
+ 7,
+ "and ˹for˺ protection from every rebellious devil.",
+ 8,
+ "They cannot listen to the highest assembly ˹of angels˺ for they are pelted from every side,",
+ 9,
+ "˹fiercely˺ driven away. And they will suffer an everlasting torment.",
+ 10,
+ "But whoever manages to stealthily eavesdrop is ˹instantly˺ pursued by a piercing flare.",
+ 11,
+ "So ask them ˹O Prophet˺, which is harder to create: them or other marvels of Our creation? Indeed, We created them from a sticky clay.",
+ 12,
+ "In fact, you are astonished ˹by their denial˺, while they ridicule ˹you˺.",
+ 13,
+ "When they are reminded, they are never mindful.",
+ 14,
+ "And whenever they see a sign, they make fun of it,",
+ 15,
+ "saying, “This is nothing but pure magic.",
+ 16,
+ "When we are dead and reduced to dust and bones, will we really be resurrected?",
+ 17,
+ "And our forefathers as well?”",
+ 18,
+ "Say, “Yes! And you will be fully humbled.”",
+ 19,
+ "It will only take one Blast, then at once they will see ˹it all˺.",
+ 20,
+ "They will cry, “Oh, woe to us! This is the Day of Judgment!”",
+ 21,
+ "˹They will be told,˺ “This is the Day of ˹Final˺ Decision which you used to deny.”",
+ 22,
+ "˹Allah will say to the angels,˺ “Gather ˹all˺ the wrongdoers along with their peers, and whatever they used to worship",
+ 23,
+ "instead of Allah, then lead them ˹all˺ to the path of Hell.",
+ 24,
+ "And detain them, for they must be questioned.”",
+ 25,
+ "˹Then they will be asked,˺ “What is the matter with you that you can no longer help each other?”",
+ 26,
+ "In fact, on that Day they will be ˹fully˺ submissive.",
+ 27,
+ "They will turn on each other, throwing blame.",
+ 28,
+ "The misled will say, “It was you who deluded us away from what is right.”",
+ 29,
+ "The misleaders will reply, “No! You disbelieved on your own.",
+ 30,
+ "We had no authority over you. In fact, you yourselves were a transgressing people.",
+ 31,
+ "The decree of our Lord has come to pass against us ˹all˺: we will certainly taste ˹the punishment˺.",
+ 32,
+ "We caused you to deviate, for we ourselves were deviant.”",
+ 33,
+ "Surely on that Day they will ˹all˺ share in the punishment.",
+ 34,
+ "That is certainly how We deal with the wicked.",
+ 35,
+ "For whenever it was said to them ˹in the world˺, “There is no god ˹worthy of worship˺ except Allah,” they acted arrogantly",
+ 36,
+ "and argued, “Should we really abandon our gods for a mad poet?”",
+ 37,
+ "In fact, he came with the truth, confirming ˹earlier˺ messengers.",
+ 38,
+ "You will certainly taste the painful torment,",
+ 39,
+ "and will only be rewarded for what you used to do.",
+ 40,
+ "But not the chosen servants of Allah.",
+ 41,
+ "They will have a known provision:",
+ 42,
+ "fruits ˹of every type˺. And they will be honoured",
+ 43,
+ "in the Gardens of Bliss,",
+ 44,
+ "facing each other on thrones.",
+ 45,
+ "A drink ˹of pure wine˺ will be passed around to them from a flowing stream:",
+ 46,
+ "crystal-white, delicious to drink.",
+ 47,
+ "It will neither harm ˹them˺, nor will they be intoxicated by it.",
+ 48,
+ "And with them will be maidens of modest gaze and gorgeous eyes,",
+ 49,
+ "as if they were pristine pearls. ",
+ 50,
+ "Then they will turn to one another inquisitively.",
+ 51,
+ "One of them will say, “I once had a companion ˹in the world˺",
+ 52,
+ "who used to ask ˹me˺, ‘Do you actually believe ˹in resurrection˺?",
+ 53,
+ "When we are dead and reduced to dust and bones, will we really be brought to judgment?’”",
+ 54,
+ "He will ˹then˺ ask, “Would you care to see ˹his fate˺?”",
+ 55,
+ "Then he ˹and the others˺ will look and spot him in the midst of the Hellfire.",
+ 56,
+ "He will ˹then˺ say, “By Allah! You nearly ruined me.",
+ 57,
+ "Had it not been for the grace of my Lord, I ˹too˺ would have certainly been among those brought ˹to Hell˺.”",
+ 58,
+ "˹Then he will ask his fellow believers,˺ “Can you imagine that we will never die,",
+ 59,
+ "except our first death, nor be punished ˹like the others˺?”",
+ 60,
+ "This is truly the ultimate triumph.",
+ 61,
+ "For such ˹honour˺ all should strive.",
+ 62,
+ "Is this ˹bliss˺ a better accommodation or the tree of Zaqqûm?",
+ 63,
+ "We have surely made it a test for the wrongdoers.",
+ 64,
+ "Indeed, it is a tree that grows in the depths of Hell,",
+ 65,
+ "bearing fruit like devils’ heads.",
+ 66,
+ "The evildoers will certainly ˹be left to˺ eat from it, filling up their bellies with it.",
+ 67,
+ "Then on top of that they will be given a blend of boiling drink.",
+ 68,
+ "Then they will ultimately return to ˹their place in˺ Hell.",
+ 69,
+ "Indeed, they found their forefathers astray,",
+ 70,
+ "so they rushed in their footsteps!",
+ 71,
+ "And surely most of the earlier generations had strayed before them,",
+ 72,
+ "although We had certainly sent warners among them.",
+ 73,
+ "See then what was the end of those who had been warned.",
+ 74,
+ "But not the chosen servants of Allah.",
+ 75,
+ "Indeed, Noah cried out to Us, and how excellent are We in responding!",
+ 76,
+ "We delivered him and his family from the great distress,",
+ 77,
+ "and made his descendants the sole survivors.",
+ 78,
+ "And We blessed him ˹with honourable mention˺ among later generations:",
+ 79,
+ "“Peace be upon Noah among all peoples.”",
+ 80,
+ "Indeed, this is how We reward the good-doers.",
+ 81,
+ "˹For˺ he was truly one of Our faithful servants.",
+ 82,
+ "Then We drowned the others.",
+ 83,
+ "And indeed, one of those who followed his way was Abraham.",
+ 84,
+ "˹Remember˺ when he came to his Lord with a pure heart,",
+ 85,
+ "and said to his father and his people, “What are you worshipping?",
+ 86,
+ "Is it false gods that you desire instead of Allah?",
+ 87,
+ "What then do you expect from the Lord of all worlds?”",
+ 88,
+ "He later looked up to the stars ˹in contemplation˺,",
+ 89,
+ "then said, “I am really sick.”",
+ 90,
+ "So they turned their backs on him and went away.",
+ 91,
+ "Then he ˹stealthily˺ advanced towards their gods, and said ˹mockingly˺, “Will you not eat ˹your offerings˺?",
+ 92,
+ "What is wrong with you that you cannot speak?”",
+ 93,
+ "Then he swiftly turned on them, striking ˹them˺ with his right hand.",
+ 94,
+ "Later, his people came rushing towards him ˹furiously˺.",
+ 95,
+ "He argued, “How can you worship what you carve ˹with your own hands˺,",
+ 96,
+ "when it is Allah Who created you and whatever you do?”",
+ 97,
+ "They said ˹to one another˺, “Build him a furnace and cast him into the blazing fire.”",
+ 98,
+ "And so they sought to harm him, but We made them inferior.",
+ 99,
+ "He later said, “I am leaving ˹in obedience˺ to my Lord. He will guide me.",
+ 100,
+ "My Lord! Bless me with righteous offspring.”",
+ 101,
+ "So We gave him good news of a forbearing son.",
+ 102,
+ "Then when the boy reached the age to work with him, Abraham said, “O my dear son! I have seen in a dream that I ˹must˺ sacrifice you. So tell me what you think.” He replied, “O my dear father! Do as you are commanded. Allah willing, you will find me steadfast.”",
+ 103,
+ "Then when they submitted ˹to Allah’s Will˺, and Abraham laid him on the side of his forehead ˹for sacrifice˺,",
+ 104,
+ "We called out to him, “O Abraham!",
+ 105,
+ "You have already fulfilled the vision.” Indeed, this is how We reward the good-doers.",
+ 106,
+ "That was truly a revealing test.",
+ 107,
+ "And We ransomed his son with a great sacrifice,",
+ 108,
+ "and blessed Abraham ˹with honourable mention˺ among later generations:",
+ 109,
+ "“Peace be upon Abraham.”",
+ 110,
+ "This is how We reward the good-doers.",
+ 111,
+ "He was truly one of Our faithful servants.",
+ 112,
+ "We ˹later˺ gave him good news of Isaac—a prophet, and one of the righteous.",
+ 113,
+ "We blessed him and Isaac as well. Some of their descendants did good, while others clearly wronged themselves.",
+ 114,
+ "And We certainly showed favour to Moses and Aaron,",
+ 115,
+ "and delivered them and their people from the great distress.",
+ 116,
+ "We helped them so it was they who prevailed.",
+ 117,
+ "We gave them the clear Scripture,",
+ 118,
+ "and guided them to the Straight Path.",
+ 119,
+ "And We blessed them ˹with honourable mention˺ among later generations:",
+ 120,
+ "“Peace be upon Moses and Aaron.”",
+ 121,
+ "Indeed, this is how We reward the good-doers.",
+ 122,
+ "They were truly ˹two˺ of Our faithful servants.",
+ 123,
+ "And Elias was indeed one of the messengers.",
+ 124,
+ "˹Remember˺ when he said to his people, “Will you not fear ˹Allah˺?",
+ 125,
+ "Do you call upon ˹the idol of˺ Ba’l and abandon the Best of Creators—",
+ 126,
+ "Allah, your Lord and the Lord of your forefathers?”",
+ 127,
+ "But they rejected him, so they will certainly be brought ˹for punishment˺.",
+ 128,
+ "But not the chosen servants of Allah.",
+ 129,
+ "We blessed him ˹with honourable mention˺ among later generations:",
+ 130,
+ "“Peace be upon Elias.”",
+ 131,
+ "Indeed, this is how We reward the good-doers.",
+ 132,
+ "He was truly one of Our faithful servants.",
+ 133,
+ "And Lot was indeed one of the messengers.",
+ 134,
+ "˹Remember˺ when We delivered him and all of his family,",
+ 135,
+ "except an old woman, who was one of the doomed.",
+ 136,
+ "Then We ˹utterly˺ destroyed the rest.",
+ 137,
+ "You ˹Meccans˺ certainly pass by their ruins day",
+ 138,
+ "and night. Will you not then understand?",
+ 139,
+ "And Jonah was indeed one of the messengers.",
+ 140,
+ "˹Remember˺ when he fled to the overloaded ship.",
+ 141,
+ "Then ˹to save it from sinking,˺ he drew straws ˹with other passengers˺. He lost ˹and was thrown overboard˺.",
+ 142,
+ "Then the whale engulfed him while he was blameworthy.",
+ 143,
+ "Had he not ˹constantly˺ glorified ˹Allah˺,",
+ 144,
+ "he would have certainly remained in its belly until the Day of Resurrection.",
+ 145,
+ "But We cast him onto the open ˹shore˺, ˹totally˺ worn out,",
+ 146,
+ "and caused a squash plant to grow over him.",
+ 147,
+ "We ˹later˺ sent him ˹back˺ to ˹his city of˺ at least one hundred thousand people,",
+ 148,
+ "who then believed ˹in him˺, so We allowed them enjoyment for a while.",
+ 149,
+ "Ask them ˹O Prophet˺ if your Lord has daughters, while the pagans ˹prefer to˺ have sons.",
+ 150,
+ "Or ˹ask them˺ if We created the angels as females right before their eyes.",
+ 151,
+ "Indeed, it is one of their ˹outrageous˺ fabrications to say,",
+ 152,
+ "“Allah has children.” They are simply liars.",
+ 153,
+ "Has He chosen daughters over sons?",
+ 154,
+ "What is the matter with you? How do you judge?",
+ 155,
+ "Will you not then be mindful?",
+ 156,
+ "Or do you have ˹any˺ compelling proof?",
+ 157,
+ "Then bring ˹us˺ your scripture, if what you say is true!",
+ 158,
+ "They have also established a ˹marital˺ relationship between Him and the jinn. Yet the jinn ˹themselves˺ know well that such people will certainly be brought ˹for punishment˺.",
+ 159,
+ "Glorified is Allah far above what they claim!",
+ 160,
+ "But not the chosen servants of Allah.",
+ 161,
+ "Surely you ˹pagans˺ and whatever ˹idols˺ you worship",
+ 162,
+ "can never lure ˹anyone˺ away from Him",
+ 163,
+ "except those ˹destined˺ to burn in Hell.",
+ 164,
+ "˹The angels respond,˺ “There is not one of us without an assigned station ˹of worship˺.",
+ 165,
+ "We are indeed the ones lined up in ranks ˹for Allah˺.",
+ 166,
+ "And we are indeed the ones ˹constantly˺ glorifying ˹His praise˺.”",
+ 167,
+ "They certainly used to say,",
+ 168,
+ "“If only we had a Reminder like ˹those of˺ earlier peoples,",
+ 169,
+ "we would have truly been Allah’s devoted servants.”",
+ 170,
+ "But ˹now˺ they reject it, so they will soon know.",
+ 171,
+ "Our Word has already gone forth to Our servants, the messengers,",
+ 172,
+ "that they would surely be helped,",
+ 173,
+ "and that Our forces will certainly prevail.",
+ 174,
+ "So turn away from the deniers for a while ˹O Prophet˺.",
+ 175,
+ "You will see ˹what will happen to˺ them, and they too will see!",
+ 176,
+ "Do they ˹really˺ wish to hasten Our punishment?",
+ 177,
+ "Yet when it descends upon them: how evil will that morning be for those who had been warned!",
+ 178,
+ "And turn away from them for a while.",
+ 179,
+ "You will see, and they too will see!",
+ 180,
+ "Glorified is your Lord—the Lord of Honour and Power—above what they claim!",
+ 181,
+ "Peace be upon the messengers.",
+ 182,
+ "And praise be to Allah—Lord of all worlds."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/38.json b/share/quran-json/TheQuran/en/38.json
new file mode 100644
index 0000000..8590e62
--- /dev/null
+++ b/share/quran-json/TheQuran/en/38.json
@@ -0,0 +1,189 @@
+[
+ {
+ "id": "38",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Sad",
+ "translated_name": "The Letter \"Saad\"",
+ "verse_count": 88,
+ "slug": "sad",
+ "codepoints": [
+ 1589
+ ]
+ },
+ 1,
+ "Ṣãd. By the Quran, full of reminders!",
+ 2,
+ "˹This is the truth,˺ yet the disbelievers are ˹entrenched˺ in arrogance and opposition.",
+ 3,
+ "˹Imagine˺ how many peoples We destroyed before them, and they cried out when it was too late to escape.",
+ 4,
+ "Now, the pagans are astonished that a warner has come to them from among themselves. And the disbelievers say, “This is a magician, a total liar!",
+ 5,
+ "Has he reduced ˹all˺ the gods to One God? Indeed, this is something totally astonishing.”",
+ 6,
+ "The chiefs among them went forth saying, “Carry on, and stand firm in devotion to your gods. Certainly this is just a scheme ˹for power˺.",
+ 7,
+ "We have never heard of this in the previous faith. This is nothing but a fabrication.",
+ 8,
+ "Has the Reminder been revealed ˹only˺ to him out of ˹all of˺ us?” In fact, they are ˹only˺ in doubt of My ˹revealed˺ Reminder. In fact, ˹they do so because˺ they have not yet tasted My punishment.",
+ 9,
+ "Or ˹is it because˺ they possess the treasuries of the mercy of your Lord—the Almighty, the Giver ˹of all bounties˺.",
+ 10,
+ "Or ˹is it because˺ the kingdom of the heavens and the earth and everything in between belongs to them? Let them then climb their way ˹to heaven, if their claim is true˺.",
+ 11,
+ "This is just another ˹enemy˺ force bound for defeat out there.",
+ 12,
+ "Before them, the people of Noah denied ˹the truth˺, as did ’Âd, Pharaoh of the mighty structures,",
+ 13,
+ "Thamûd, the people of Lot, and the residents of the Forest. These were ˹all˺ enemy forces.",
+ 14,
+ "Each rejected their messenger, so My punishment was justified.",
+ 15,
+ "These ˹pagans˺ are awaiting nothing but a single Blast that cannot be stopped.",
+ 16,
+ "They say ˹mockingly˺, “Our Lord! Hasten for us our share ˹of the punishment˺ before the Day of Reckoning.”",
+ 17,
+ "Be patient ˹O Prophet˺ with what they say. And remember Our servant, David, the man of strength. Indeed, he ˹constantly˺ turned ˹to Allah˺.",
+ 18,
+ "We truly subjected the mountains to hymn ˹Our praises˺ along with him in the evening and after sunrise.",
+ 19,
+ "And ˹We subjected˺ the birds, flocking together. All turned to him ˹echoing his hymns˺.",
+ 20,
+ "We strengthened his kingship, and gave him wisdom and sound judgment.",
+ 21,
+ "Has the story of the two plaintiffs, who scaled the ˹wall of David’s˺ sanctuary, reached you ˹O Prophet˺?",
+ 22,
+ "When they came into David’s presence, he was startled by them. They said, “Have no fear. ˹We are merely˺ two in a dispute: one of us has wronged the other. So judge between us with truth—do not go beyond ˹it˺—and guide us to the right way.",
+ 23,
+ "This is my brother. He has ninety-nine sheep while I have ˹only˺ one. ˹Still˺ he asked me to give it up to him, overwhelming me with ˹his˺ argument.”",
+ 24,
+ "David ˹eventually˺ ruled, “He has definitely wronged you in demanding ˹to add˺ your sheep to his. And certainly many partners wrong each other, except those who believe and do good—but how few are they!” Then David realized that We had tested him so he asked for his Lord’s forgiveness, fell down in prostration, and turned ˹to Him in repentance˺.",
+ 25,
+ "So We forgave that for him. And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!",
+ 26,
+ "˹We instructed him:˺ “O David! We have surely made you an authority in the land, so judge between people with truth. And do not follow ˹your˺ desires or they will lead you astray from Allah’s Way. Surely those who go astray from Allah’s Way will suffer a severe punishment for neglecting the Day of Reckoning.”",
+ 27,
+ "We have not created the heavens and earth and everything in between without purpose—as the disbelievers think. So woe to the disbelievers because of the Fire!",
+ 28,
+ "Or should We treat those who believe and do good like those who make mischief throughout the land? Or should We treat the righteous like the wicked?",
+ 29,
+ "˹This is˺ a blessed Book which We have revealed to you ˹O Prophet˺ so that they may contemplate its verses, and people of reason may be mindful.",
+ 30,
+ "And We blessed David with Solomon—what an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.",
+ 31,
+ "˹Remember˺ when the well-trained, swift horses were paraded before him in the evening.",
+ 32,
+ "He then proclaimed, “I am truly in love with ˹these˺ fine things out of remembrance for Allah,” until they went out of sight.",
+ 33,
+ "˹He ordered,˺ “Bring them back to me!” Then he began to rub down their legs and necks. ",
+ 34,
+ "And indeed, We tested Solomon, placing a ˹deformed˺ body on his throne, then he turned ˹to Allah in repentance˺.",
+ 35,
+ "He prayed, “My Lord! Forgive me, and grant me an authority that will never be matched by anyone after me. You are indeed the Giver ˹of all bounties˺.”",
+ 36,
+ "So We subjected to him the wind, blowing gently at his command to wherever he pleased.",
+ 37,
+ "And ˹We subjected to him˺ every builder and diver of the jinn,",
+ 38,
+ "and others bound together in chains.",
+ 39,
+ "˹Allah said,˺ “This is Our gift, so give or withhold ˹as you wish˺, never to be called to account.”",
+ 40,
+ "And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!",
+ 41,
+ "And remember Our servant Job, when he cried out to his Lord, “Satan has afflicted me with distress and suffering.”",
+ 42,
+ "˹We responded,˺ “Stomp your foot: ˹now˺ here is a cool ˹and refreshing˺ spring for washing and drinking.”",
+ 43,
+ "And We gave him back his family, twice as many, as a mercy from Us and a lesson for people of reason.",
+ 44,
+ "˹And We said to him,˺ “Take in your hand a bundle of grass, and strike ˹your wife˺ with it, and do not break your oath.” We truly found him patient. What an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.",
+ 45,
+ "And remember Our servants: Abraham, Isaac, and Jacob—the men of strength and insight.",
+ 46,
+ "We truly chose them for the honour of proclaiming the Hereafter.",
+ 47,
+ "And in Our sight they are truly among the chosen and the finest.",
+ 48,
+ "Also remember Ishmael, Elisha, and Ⱬul-Kifl. All are among the best.",
+ 49,
+ "This is ˹all˺ a reminder. And the righteous will certainly have an honourable destination:",
+ 50,
+ "the Gardens of Eternity, whose gates will be open for them.",
+ 51,
+ "There they will recline, calling for abundant fruit and drink.",
+ 52,
+ "And with them will be maidens of modest gaze and equal age.",
+ 53,
+ "This is what you are promised for the Day of Reckoning.",
+ 54,
+ "This is indeed Our provision that will never end.",
+ 55,
+ "That is that. And the transgressors will certainly have the worst destination:",
+ 56,
+ "Hell, where they will burn. What an evil place to rest!",
+ 57,
+ "Let them then taste this: boiling water and ˹oozing˺ pus,",
+ 58,
+ "and other torments of the same sort!",
+ 59,
+ "˹The misleaders will say to one another,˺ “Here is a crowd ˹of followers˺ being thrown in with us. They are not welcome, ˹for˺ they ˹too˺ will burn in the Fire.”",
+ 60,
+ "The followers will respond, “No! You are not welcome! You brought this upon us. What an evil place for settlement!”",
+ 61,
+ "Adding, “Our Lord! Whoever brought this upon us, double their punishment in the Fire.”",
+ 62,
+ "The tyrants will ask ˹one another˺, “But why do we not see those we considered to be lowly?",
+ 63,
+ "Were we wrong in mocking them ˹in the world˺? Or do our eyes ˹just˺ fail to see them ˹in the Fire˺?”",
+ 64,
+ "This dispute between the residents of the Fire will certainly come to pass.",
+ 65,
+ "Say, ˹O Prophet,˺ “I am only a warner. And there is no god ˹worthy of worship˺ except Allah—the One, the Supreme.",
+ 66,
+ "˹He is the˺ Lord of the heavens and the earth and everything in between—the Almighty, Most Forgiving.”",
+ 67,
+ "Say, “This ˹Quran˺ is momentous news,",
+ 68,
+ "from which you ˹pagans˺ are turning away.”",
+ 69,
+ "˹And say,˺ “I had no knowledge of the highest assembly ˹in heaven˺ when they differed ˹concerning Adam˺.",
+ 70,
+ "What is revealed to me is that I am only sent with a clear warning.”",
+ 71,
+ "˹Remember, O Prophet˺ when your Lord said to the angels, “I am going to create a human being from clay.",
+ 72,
+ "So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him.”",
+ 73,
+ "So the angels prostrated all together—",
+ 74,
+ "but not Iblîs, who acted arrogantly, becoming unfaithful.",
+ 75,
+ "Allah asked, “O Iblîs! What prevented you from prostrating to what I created with My Own Hands? Did you ˹just˺ become proud? Or have you always been arrogant?”",
+ 76,
+ "He replied, “I am better than he is: You created me from fire and him from clay.”",
+ 77,
+ "Allah commanded, “Then get out of Paradise, for you are truly cursed.",
+ 78,
+ "And surely upon you is My condemnation until the Day of Judgment.”",
+ 79,
+ "Satan appealed, “My Lord! Then delay my end until the Day of their resurrection.”",
+ 80,
+ "Allah said, “You will be delayed",
+ 81,
+ "until the appointed Day.”",
+ 82,
+ "Satan said, “By Your Glory! I will certainly mislead them all,",
+ 83,
+ "except Your chosen servants among them.”",
+ 84,
+ "Allah concluded, “The truth is—and I ˹only˺ say the truth—:",
+ 85,
+ "I will surely fill up Hell with you and whoever follows you from among them, all together.”",
+ 86,
+ "Say, ˹O Prophet,˺ “I do not ask you for any reward for this ˹Quran˺, nor do I pretend to be someone I am not.",
+ 87,
+ "It is only a reminder to the whole world.",
+ 88,
+ "And you will certainly know its truth before long.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/39.json b/share/quran-json/TheQuran/en/39.json
new file mode 100644
index 0000000..7014e58
--- /dev/null
+++ b/share/quran-json/TheQuran/en/39.json
@@ -0,0 +1,167 @@
+[
+ {
+ "id": "39",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Az-Zumar",
+ "translated_name": "The Troops",
+ "verse_count": 75,
+ "slug": "az-zumar",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1586,
+ 1605,
+ 1585
+ ]
+ },
+ 1,
+ "The revelation of this Book is from Allah—the Almighty, All-Wise.",
+ 2,
+ "Indeed, We have sent down the Book to you ˹O Prophet˺ in truth, so worship Allah ˹alone˺, being sincerely devoted to Him.",
+ 3,
+ "Indeed, sincere devotion is due ˹only˺ to Allah. As for those who take other lords besides Him, ˹saying,˺ “We worship them only so they may bring us closer to Allah,” surely Allah will judge between all regarding what they differed about. Allah certainly does not guide whoever persists in lying and disbelief.",
+ 4,
+ "Had it been Allah’s Will to have offspring, He could have chosen whatever He willed of His creation. Glory be to Him! He is Allah—the One, the Supreme.",
+ 5,
+ "He created the heavens and the earth for a purpose. He wraps the night around the day, and wraps the day around the night. And He has subjected the sun and the moon, each orbiting for an appointed term. He is truly the Almighty, Most Forgiving.",
+ 6,
+ "He created you ˹all˺ from a single soul, then from it He made its mate. And He produced for you four pairs of cattle. He creates you in the wombs of your mothers ˹in stages˺, one development after another, in three layers of darkness. That is Allah—your Lord! All authority belongs to Him. There is no god ˹worthy of worship˺ except Him. How can you then be turned away?",
+ 7,
+ "If you disbelieve, then ˹know that˺ Allah is truly not in need of you, nor does He approve of disbelief from His servants. But if you become grateful ˹through faith˺, He will appreciate that from you. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of what you used to do. He certainly knows best what is ˹hidden˺ in the heart.",
+ 8,
+ "When one is touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He showers them with blessings from Him, they ˹totally˺ forget the One they had cried to earlier, and set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ “Enjoy your disbelief for a little while! You will certainly be one of the inmates of the Fire.”",
+ 9,
+ "˹Are they better˺ or those who worship ˹their Lord˺ devoutly in the hours of the night, prostrating and standing, fearing the Hereafter and hoping for the mercy of their Lord? Say, ˹O Prophet,˺ “Are those who know equal to those who do not know?” None will be mindful ˹of this˺ except people of reason.",
+ 10,
+ "Say ˹O Prophet, that Allah says˺, “O My servants who believe! Be mindful of your Lord. Those who do good in this world will have a good reward. And Allah’s earth is spacious. Only those who endure patiently will be given their reward without limit.”",
+ 11,
+ "Say, “I am commanded to worship Allah, being sincerely devoted to Him ˹alone˺.",
+ 12,
+ "And I am commanded to be the first of those who submit ˹to His Will˺.”",
+ 13,
+ "Say, “I truly fear—if I were to disobey my Lord—the torment of a tremendous Day.”",
+ 14,
+ "Say, “It is ˹only˺ Allah that I worship, being sincere in my devotion to Him.",
+ 15,
+ "Worship then whatever ˹gods˺ you want instead of Him.” Say, “The ˹true˺ losers are those who will lose themselves and their families on Judgment Day. That is indeed the clearest loss.”",
+ 16,
+ "They will have layers of fire above and below them. That is what Allah warns His servants with. So fear Me, O My servants!",
+ 17,
+ "And those who shun the worship of false gods, turning to Allah ˹alone˺, will have good news. So give good news to My servants ˹O Prophet˺—",
+ 18,
+ "those who listen to what is said and follow the best of it. These are the ones ˹rightly˺ guided by Allah, and these are ˹truly˺ the people of reason.",
+ 19,
+ "What about those against whom the decree of torment has been justified? Is it you ˹O Prophet˺ who will then save those bound for the Fire?",
+ 20,
+ "But those mindful of their Lord will have ˹elevated˺ mansions, built one above the other, under which rivers flow. ˹That is˺ the promise of Allah. ˹And˺ Allah never fails in ˹His˺ promise.",
+ 21,
+ "Do you not see that Allah sends down rain from the sky—channelling it through streams in the earth—then produces with it crops of various colours, then they dry up and you see them wither, and then He reduces them to chaff? Surely in this is a reminder for people of reason.",
+ 22,
+ "Can ˹the misguided be like˺ those whose hearts Allah has opened to Islam, so they are enlightened by their Lord? So woe to those whose hearts are hardened at the remembrance of Allah! It is they who are clearly astray.",
+ 23,
+ "˹It is˺ Allah ˹Who˺ has sent down the best message—a Book of perfect consistency and repeated lessons—which causes the skin ˹and hearts˺ of those who fear their Lord to tremble, then their skin and hearts soften at the mention of ˹the mercy of˺ Allah. That is the guidance of Allah, through which He guides whoever He wills. But whoever Allah leaves to stray will be left with no guide.",
+ 24,
+ "Are those who will only have their ˹bare˺ faces to shield themselves from the awful torment on Judgment Day ˹better than those in Paradise˺? It will ˹then˺ be said to the wrongdoers: “Reap what you sowed!”",
+ 25,
+ "Those before them ˹also˺ rejected ˹the truth˺, then the torment came upon them from where they least expected.",
+ 26,
+ "So Allah made them taste humiliation in this worldly life, but far worse is the punishment of the Hereafter, if only they knew.",
+ 27,
+ "We have certainly set forth every ˹kind of˺ lesson for people in this Quran, so perhaps they will be mindful.",
+ 28,
+ "˹It is˺ a Quran ˹revealed˺ in Arabic without any crookedness, so perhaps they will be conscious ˹of Allah˺.",
+ 29,
+ "Allah sets forth the parable of a slave owned by several quarrelsome masters, and a slave owned by only one master. Are they equal in condition? Praise be to Allah! In fact, most of them do not know.",
+ 30,
+ "You ˹O Prophet˺ will certainly die, and they will die too.",
+ 31,
+ "Then on the Day of Judgment you will ˹all settle your˺ dispute before your Lord.",
+ 32,
+ "Who then does more wrong than those who lie about Allah and reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?",
+ 33,
+ "And the one who has brought the truth and those who embrace it—it is they who are the righteous.",
+ 34,
+ "They will have whatever they desire with their Lord. That is the reward of the good-doers.",
+ 35,
+ "As such, Allah will absolve them of ˹even˺ the worst of what they did and reward them according to the best of what they used to do.",
+ 36,
+ "Is Allah not sufficient for His servant? Yet they threaten you with other ˹powerless˺ gods besides Him! Whoever Allah leaves to stray will be left with no guide.",
+ 37,
+ "And whoever Allah guides, none can lead astray. Is Allah not Almighty, capable of punishment?",
+ 38,
+ "If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, “Allah!” Ask ˹them˺, “Consider then whatever ˹idols˺ you invoke besides Allah: if it was Allah’s Will to harm me, could they undo that harm? Or if He willed ˹some˺ mercy for me, could they withhold His mercy?” Say, “Allah is sufficient for me. In Him ˹alone˺ the faithful put their trust.”",
+ 39,
+ "Say, ˹O Prophet,˺ “O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know",
+ 40,
+ "who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺.”",
+ 41,
+ "Surely We have revealed to you the Book ˹O Prophet˺ with the truth for humanity. So whoever chooses to be guided, it is for their own good. And whoever chooses to stray, it is only to their own loss. You are not a keeper over them.",
+ 42,
+ "˹It is˺ Allah ˹Who˺ calls back the souls ˹of people˺ upon their death as well as ˹the souls˺ of the living during their sleep. Then He keeps those for whom He has ordained death, and releases the others until ˹their˺ appointed time. Surely in this are signs for people who reflect.",
+ 43,
+ "Or have they taken others besides Allah as intercessors? Say, ˹O Prophet,˺ “˹Would they do so,˺ even though those ˹idols˺ have neither authority nor intelligence?”",
+ 44,
+ "Say, “All intercession belongs to Allah ˹alone˺. To Him belongs the kingdom of the heavens and the earth. Then to Him you will ˹all˺ be returned.”",
+ 45,
+ "Yet when Allah alone is mentioned, the hearts of those who disbelieve in the Hereafter are filled with disgust. But as soon as those ˹gods˺ other than Him are mentioned, they are filled with joy.",
+ 46,
+ "Say, ˹O Prophet,˺ “O Allah—Originator of the heavens and the earth, Knower of the seen and unseen! You will judge between Your servants regarding their differences.”",
+ 47,
+ "Even if the wrongdoers were to possess everything in the world twice over, they would certainly offer it to ransom themselves from the horrible punishment on Judgment Day, for they will see from Allah what they had never expected.",
+ 48,
+ "And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.",
+ 49,
+ "When one is touched with hardship, they cry out to Us ˹alone˺. Then when We shower Our blessings upon them, they say, “I have been granted all this only because of ˹my˺ knowledge.” Not at all! It is ˹no more than˺ a test. But most of them do not know.",
+ 50,
+ "The same had already been said by those ˹destroyed˺ before them, but their ˹worldly˺ gains were of no benefit to them.",
+ 51,
+ "So the evil ˹consequences˺ of their deeds overtook them. And the wrongdoers among these ˹pagans˺ will be overtaken by the evil ˹consequences˺ of their deeds. And they will have no escape.",
+ 52,
+ "Do they not know that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.",
+ 53,
+ "Say, ˹O Prophet, that Allah says,˺ “O My servants who have exceeded the limits against their souls! Do not lose hope in Allah’s mercy, for Allah certainly forgives all sins. He is indeed the All-Forgiving, Most Merciful.",
+ 54,
+ "Turn to your Lord ˹in repentance˺, and ˹fully˺ submit to Him before the punishment reaches you, ˹for˺ then you will not be helped.",
+ 55,
+ "Follow ˹the Quran,˺ the best of what has been revealed to you from your Lord, before the punishment takes you by surprise while you are unaware,",
+ 56,
+ "so that no ˹sinful˺ soul will say ˹on Judgment Day˺, ‘Woe to me for neglecting ˹my duties towards˺ Allah, while ridiculing ˹the truth˺.’",
+ 57,
+ "Or ˹a soul will˺ say, ‘If only Allah had guided me, I would have certainly been one of the righteous.’",
+ 58,
+ "Or say, upon seeing the torment, ‘If only I had a second chance, I would have been one of the good-doers.’",
+ 59,
+ "Not at all! My revelations had already come to you, but you rejected them, acted arrogantly, and were one of the disbelievers.”",
+ 60,
+ "On the Day of Judgment you will see those who lied about Allah with their faces gloomy. Is Hell not a ˹fitting˺ home for the arrogant?",
+ 61,
+ "And Allah will deliver those who were mindful ˹of Him˺ to their place of ˹ultimate˺ triumph. No evil will touch them, nor will they grieve.",
+ 62,
+ "Allah is the Creator of all things, and He is the Maintainer of everything.",
+ 63,
+ "To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. As for those who rejected the signs of Allah, it is they who will be the ˹true˺ losers.",
+ 64,
+ "Say, ˹O Prophet,˺ “Are you urging me to worship ˹anyone˺ other than Allah, O ignorant ones?”",
+ 65,
+ "It has already been revealed to you—and to those ˹prophets˺ before you—that if you associate others ˹with Allah˺, your deeds will certainly be void and you will truly be one of the losers.",
+ 66,
+ "Rather, worship Allah ˹alone˺ and be one of the grateful.",
+ 67,
+ "They have not shown Allah His proper reverence—when on the Day of Judgment the ˹whole˺ earth will be in His Grip, and the heavens will be rolled up in His Right Hand. Glorified and Exalted is He above what they associate ˹with Him˺!",
+ 68,
+ "The Trumpet will be blown and all those in the heavens and all those on the earth will fall dead, except those Allah wills ˹to spare˺. Then it will be blown again and they will rise up at once, looking on ˹in anticipation˺.",
+ 69,
+ "The earth will shine with the light of its Lord, the record ˹of deeds˺ will be laid ˹open˺, the prophets and the witnesses will be brought forward—and judgment will be passed on all with fairness. None will be wronged.",
+ 70,
+ "Every soul will be paid in full for its deeds, for Allah knows best what they have done.",
+ 71,
+ "Those who disbelieved will be driven to Hell in ˹successive˺ groups. When they arrive there, its gates will be opened and its keepers will ask them: “Did messengers not come to you from among yourselves, reciting to you the revelations of your Lord and warning you of the coming of this Day of yours?” The disbelievers will cry, “Yes ˹indeed˺! But the decree of torment has come to pass against the disbelievers.”",
+ 72,
+ "It will be said to them, “Enter the gates of Hell, to stay there forever.” What an evil home for the arrogant!",
+ 73,
+ "And those who were mindful of their Lord will be led to Paradise in ˹successive˺ groups. When they arrive at its ˹already˺ open gates, its keepers will say, “Peace be upon you! You have done well, so come in, to stay forever.”",
+ 74,
+ "The righteous will say, “Praise be to Allah Who has fulfilled His promise to us, and made us inherit the ˹everlasting˺ land to settle in Paradise wherever we please.” How excellent is the reward of those who work ˹righteousness˺!",
+ 75,
+ "You will see the angels all around the Throne, glorifying the praises of their Lord, for judgment will have been passed on all with fairness. And it will be said, “Praise be to Allah—Lord of all worlds!”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/4.json b/share/quran-json/TheQuran/en/4.json
new file mode 100644
index 0000000..5980c94
--- /dev/null
+++ b/share/quran-json/TheQuran/en/4.json
@@ -0,0 +1,370 @@
+[
+ {
+ "id": "4",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "An-Nisa",
+ "translated_name": "The Women",
+ "verse_count": 176,
+ "slug": "an-nisa",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1587,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "O humanity! Be mindful of your Lord Who created you from a single soul, and from it He created its mate, and through both He spread countless men and women. And be mindful of Allah—in Whose Name you appeal to one another—and ˹honour˺ family ties. Surely Allah is ever Watchful over you.",
+ 2,
+ "Give orphans their wealth ˹when they reach maturity˺, and do not exchange your worthless possessions for their valuables, nor cheat them by mixing their wealth with your own. For this would indeed be a great sin.",
+ 3,
+ "If you fear you might fail to give orphan women their ˹due˺ rights ˹if you were to marry them˺, then marry other women of your choice—two, three, or four. But if you are afraid you will fail to maintain justice, then ˹content yourselves with˺ one or those ˹bondwomen˺ in your possession. This way you are less likely to commit injustice.",
+ 4,
+ "Give women ˹you wed˺ their due dowries graciously. But if they waive some of it willingly, then you may enjoy it freely with a clear conscience.",
+ 5,
+ "Do not entrust the incapable ˹among your dependants˺ with your wealth which Allah has made a means of support for you—but feed and clothe them from it, and speak to them kindly.",
+ 6,
+ "Test ˹the competence of˺ the orphans until they reach a marriageable age. Then if you feel they are capable of sound judgment, return their wealth to them. And do not consume it wastefully and hastily before they grow up ˹to demand it˺. If the guardian is well-off, they should not take compensation; but if the guardian is poor, let them take a reasonable provision. When you give orphans back their property, call in witnesses. And sufficient is Allah as a ˹vigilant˺ Reckoner.",
+ 7,
+ "For men there is a share in what their parents and close relatives leave, and for women there is a share in what their parents and close relatives leave—whether it is little or much. ˹These are˺ obligatory shares.",
+ 8,
+ "If ˹non-inheriting˺ relatives, orphans, or the needy are present at the time of distribution, offer them a ˹small˺ provision from it and speak to them kindly.",
+ 9,
+ "Let the guardians be as concerned ˹for the orphans˺ as they would if they were to ˹die and˺ leave ˹their own˺ helpless children behind. So let them be mindful of Allah and speak equitably.",
+ 10,
+ "Indeed, those who unjustly consume orphans’ wealth ˹in fact˺ consume nothing but fire into their bellies. And they will be burned in a blazing Hell!",
+ 11,
+ "Allah commands you regarding your children: the share of the male will be twice that of the female. If you leave only two ˹or more˺ females, their share is two-thirds of the estate. But if there is only one female, her share will be one-half. Each parent is entitled to one-sixth if you leave offspring. But if you are childless and your parents are the only heirs, then your mother will receive one-third. But if you leave siblings, then your mother will receive one-sixth—after the fulfilment of bequests and debts. ˹Be fair to˺ your parents and children, as you do not ˹fully˺ know who is more beneficial to you. ˹This is˺ an obligation from Allah. Surely Allah is All-Knowing, All-Wise.",
+ 12,
+ "You will inherit half of what your wives leave if they are childless. But if they have children, then ˹your share is˺ one-fourth of the estate—after the fulfilment of bequests and debts. And your wives will inherit one-fourth of what you leave if you are childless. But if you have children, then your wives will receive one-eighth of your estate—after the fulfilment of bequests and debts. And if a man or a woman leaves neither parents nor children but only a brother or a sister ˹from their mother’s side˺, they will each inherit one-sixth, but if they are more than one, they ˹all˺ will share one-third of the estate—after the fulfilment of bequests and debts without harm ˹to the heirs˺. ˹This is˺ a commandment from Allah. And Allah is All-Knowing, Most Forbearing.",
+ 13,
+ "These ˹entitlements˺ are the limits set by Allah. Whoever obeys Allah and His Messenger will be admitted into Gardens under which rivers flow, to stay there forever. That is the ultimate triumph!",
+ 14,
+ "But whoever disobeys Allah and His Messenger and exceeds their limits will be cast into Hell, to stay there forever. And they will suffer a humiliating punishment.",
+ 15,
+ "˹As for˺ those of your women who commit illegal intercourse—call four witnesses from among yourselves. If they testify, confine the offenders to their homes until they die or Allah ordains a ˹different˺ way for them.",
+ 16,
+ "And the two among you who commit this sin—discipline them. If they repent and mend their ways, relieve them. Surely Allah is ever Accepting of Repentance, Most Merciful.",
+ 17,
+ "Allah only accepts the repentance of those who commit evil ignorantly ˹or recklessly˺ then repent soon after—Allah will pardon them. And Allah is All-Knowing, All-Wise.",
+ 18,
+ "However, repentance is not accepted from those who knowingly persist in sin until they start dying, and then cry, “Now I repent!” nor those who die as disbelievers. For them We have prepared a painful punishment.",
+ 19,
+ "O believers! It is not permissible for you to inherit women against their will or mistreat them to make them return some of the dowry ˹as a ransom for divorce˺—unless they are found guilty of adultery. Treat them fairly. If you happen to dislike them, you may hate something which Allah turns into a great blessing.",
+ 20,
+ "If you desire to replace a wife with another and you have given the former ˹even˺ a stack of gold ˹as a dowry˺, do not take any of it back. Would you ˹still˺ take it unjustly and very sinfully?",
+ 21,
+ "And how could you take it back after having enjoyed each other intimately and she has taken from you a firm commitment? ",
+ 22,
+ "Do not marry former wives of your fathers—except what was done previously. It was indeed a shameful, despicable, and evil practice.",
+ 23,
+ "˹Also˺ forbidden to you for marriage are your mothers, your daughters, your sisters, your paternal and maternal aunts, your brother’s daughters, your sister’s daughters, your foster-mothers, your foster-sisters, your mothers-in-law, your stepdaughters under your guardianship if you have consummated marriage with their mothers—but if you have not, then you can marry them—nor the wives of your own sons, nor two sisters together at the same time—except what was done previously. Surely Allah is All-Forgiving, Most Merciful.",
+ 24,
+ "Also ˹forbidden are˺ married women—except ˹female˺ captives in your possession. This is Allah’s commandment to you. Lawful to you are all beyond these—as long as you seek them with your wealth in a legal marriage, not in fornication. Give those you have consummated marriage with their due dowries. It is permissible to be mutually gracious regarding the set dowry. Surely Allah is All-Knowing, All-Wise.",
+ 25,
+ "But if any of you cannot afford to marry a free believing woman, then ˹let him marry˺ a believing bondwoman possessed by one of you. Allah knows best ˹the state of˺ your faith ˹and theirs˺. You are from one another. So marry them with the permission of their owners, giving them their dowry in fairness, if they are chaste, neither promiscuous nor having secret affairs. If they commit indecency after marriage, they receive half the punishment of free women. This is for those of you who fear falling into sin. But if you are patient, it is better for you. And Allah is All-Forgiving, Most Merciful.",
+ 26,
+ "It is Allah’s Will to make things clear to you, guide you to the ˹noble˺ ways of those before you, and turn to you in mercy. For Allah is All-Knowing, All-Wise.",
+ 27,
+ "And it is Allah’s Will to turn to you in grace, but those who follow their desires wish to see you deviate entirely ˹from Allah’s Way˺.",
+ 28,
+ "And it is Allah’s Will to lighten your burdens, for humankind was created weak.",
+ 29,
+ "O believers! Do not devour one another’s wealth illegally, but rather trade by mutual consent. And do not kill ˹each other or˺ yourselves. Surely Allah is ever Merciful to you.",
+ 30,
+ "And whoever does this sinfully and unjustly, We will burn them in the Fire. That is easy for Allah.",
+ 31,
+ "If you avoid the major sins forbidden to you, We will absolve you of your ˹lesser˺ misdeeds and admit you into a place of honour. ",
+ 32,
+ "And do not crave what Allah has given some of you over others. Men will be rewarded according to their deeds and women ˹equally˺ according to theirs. Rather, ask Allah for His bounties. Surely Allah has ˹perfect˺ knowledge of all things.",
+ 33,
+ "And We have appointed heirs to what has been left by parents and next of kin. As for those you have made a pledge to, give them their share. Surely Allah is a Witness over all things.",
+ 34,
+ "Men are the caretakers of women, as men have been provisioned by Allah over women and tasked with supporting them financially. And righteous women are devoutly obedient and, when alone, protective of what Allah has entrusted them with. And if you sense ill-conduct from your women, advise them ˹first˺, ˹if they persist,˺ do not share their beds, ˹but if they still persist,˺ then discipline them ˹gently˺. But if they change their ways, do not be unjust to them. Surely Allah is Most High, All-Great.",
+ 35,
+ "If you anticipate a split between them, appoint a mediator from his family and another from hers. If they desire reconciliation, Allah will restore harmony between them. Surely Allah is All-Knowing, All-Aware.",
+ 36,
+ "Worship Allah ˹alone˺ and associate none with Him. And be kind to parents, relatives, orphans, the poor, near and distant neighbours, close friends, ˹needy˺ travellers, and those ˹bondspeople˺ in your possession. Surely Allah does not like whoever is arrogant, boastful—",
+ 37,
+ "those who are stingy, promote stinginess among people, and withhold Allah’s bounties. We have prepared for the disbelievers a humiliating punishment.",
+ 38,
+ "Likewise for those who spend their wealth to show off and do not believe in Allah or the Last Day. And whoever takes Satan as an associate—what an evil associate they have!",
+ 39,
+ "What harm could have come to them if they had believed in Allah and the Last Day and donated from what Allah has provided for them? And Allah has ˹perfect˺ knowledge of them.",
+ 40,
+ "Indeed, Allah never wrongs ˹anyone˺—even by an atom’s weight. And if it is a good deed, He will multiply it many times over and will give a great reward out of His grace.",
+ 41,
+ "So how will it be when We bring a witness from every faith-community and bring you ˹O Prophet˺ as a witness against yours?",
+ 42,
+ "On that Day, those who denied ˹Allah˺ and disobeyed the Messenger will wish they were reduced to dust. And they will never be able to hide anything from Allah. ",
+ 43,
+ "O believers! Do not approach prayer while intoxicated until you are aware of what you say, nor in a state of ˹full˺ impurity—unless you merely pass through ˹the mosque˺—until you have bathed. But if you are ill, on a journey, or have relieved yourselves, or been intimate with your wives and cannot find water, then purify yourselves with clean earth, wiping your faces and hands. And Allah is Ever-Pardoning, All-Forgiving.",
+ 44,
+ "Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet trade it for misguidance and wish to see you deviate from the ˹Right˺ Path?",
+ 45,
+ "Allah knows best who your enemies are! And Allah is sufficient as a Guardian, and He is sufficient as a Helper.",
+ 46,
+ "Some Jews take words out of context and say, “We listen and we disobey,” “Hear! May you never hear,” and “Râ’ina!” [Herd us!]—playing with words and discrediting the faith. Had they said ˹courteously˺, “We hear and obey,” “Listen to us,” and “Unẓurna,” [Tend to us!] it would have been better for them and more proper. Allah has condemned them for their disbelief, so they do not believe except for a few.",
+ 47,
+ "O you who were given the Book! Believe in what We have revealed—confirming your own Scriptures—before We wipe out ˹your˺ faces, turning them backwards, or We condemn the defiant as We did to the Sabbath-breakers. And Allah’s command is always executed!",
+ 48,
+ "Indeed, Allah does not forgive associating others with Him ˹in worship˺, but forgives anything else of whoever He wills. And whoever associates others with Allah has indeed committed a grave sin.",
+ 49,
+ "Have you ˹O Prophet˺ not seen those who ˹falsely˺ elevate themselves? It is Allah who elevates whoever He wills. And none will be wronged ˹even by the width of˺ the thread of a date stone.",
+ 50,
+ "See how they fabricate lies against Allah—this alone is a blatant sin.",
+ 51,
+ "Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet believe in idols and false gods and reassure the disbelievers that they are better guided than the believers?",
+ 52,
+ "It is they who have been condemned by Allah. And whoever is condemned by Allah will have no helper.",
+ 53,
+ "Do they have control over shares of the kingdom? If so, they would not have given anyone so much as the speck on a date stone.",
+ 54,
+ "Or do they envy the people for Allah’s bounties? Indeed, We have given the descendants of Abraham the Book and wisdom, along with great authority.",
+ 55,
+ "Yet some believed in him while others turned away from him. Hell is sufficient as a torment!",
+ 56,
+ "Surely those who reject Our signs, We will cast them into the Fire. Whenever their skin is burnt completely, We will replace it so they will ˹constantly˺ taste the punishment. Indeed, Allah is Almighty, All-Wise.",
+ 57,
+ "As for those who believe and do good, We will admit them into Gardens under which rivers flow, to stay there for ever and ever. There they will have pure spouses, and We will place them under a vast shade.",
+ 58,
+ "Indeed, Allah commands you to return trusts to their rightful owners; and when you judge between people, judge with fairness. What a noble commandment from Allah to you! Surely Allah is All-Hearing, All-Seeing.",
+ 59,
+ "O believers! Obey Allah and obey the Messenger and those in authority among you. Should you disagree on anything, then refer it to Allah and His Messenger, if you ˹truly˺ believe in Allah and the Last Day. This is the best and fairest resolution.",
+ 60,
+ "Have you ˹O Prophet˺ not seen those who claim they believe in what has been revealed to you and what was revealed before you? They seek the judgment of false judges, which they were commanded to reject. And Satan ˹only˺ desires to lead them farther away.",
+ 61,
+ "When it is said to them, “Come to Allah’s revelations and to the Messenger,” you see the hypocrites turn away from you stubbornly.",
+ 62,
+ "How ˹horrible˺ will it be if a disaster strikes them because of what their hands have done, then they come to you swearing by Allah, “We intended nothing but goodwill and reconciliation.”",
+ 63,
+ "˹Only˺ Allah knows what is in their hearts. So turn away from them, caution them, and give them advice that will shake their very souls.",
+ 64,
+ "We only sent messengers to be obeyed by Allah’s Will. If only those ˹hypocrites˺ came to you ˹O Prophet˺—after wronging themselves—seeking Allah’s forgiveness and the Messenger prayed for their forgiveness, they would have certainly found Allah ever Accepting of Repentance, Most Merciful.",
+ 65,
+ "But no! By your Lord, they will never be ˹true˺ believers until they accept you ˹O Prophet˺ as the judge in their disputes, and find no resistance within themselves against your decision and submit wholeheartedly.",
+ 66,
+ "If We had commanded them to sacrifice themselves or abandon their homes, none would have obeyed except for a few. Had they done what they were advised to do, it would have certainly been far better for them and more reassuring,",
+ 67,
+ "and We would have granted them a great reward by Our grace",
+ 68,
+ "and guided them to the Straight Path.",
+ 69,
+ "And whoever obeys Allah and the Messenger will be in the company of those blessed by Allah: the prophets, the people of truth, the martyrs, and the righteous—what honourable company!",
+ 70,
+ "This is Allah’s favour, and Allah fully knows ˹who deserves it˺.",
+ 71,
+ "O believers! Take your precautions and go forth either in groups or together.",
+ 72,
+ "There will be some among you who will lag behind so that if you face a disaster, they will say, “Allah has blessed us for not being there among them.”",
+ 73,
+ "But if you return with Allah’s bounties, they will say—as if there had been no bond between you—“We wish we had been there with them to share the great gain!”",
+ 74,
+ "Let those who would sacrifice this life for the Hereafter fight in the cause of Allah. And whoever fights in Allah’s cause—whether they achieve martyrdom or victory—We will honour them with a great reward.",
+ 75,
+ "And what is it with you? You do not fight in the cause of Allah and for oppressed men, women, and children who cry out, “Our Lord! Deliver us from this land of oppressors! Appoint for us a saviour; appoint for us a helper—all by Your grace.” ",
+ 76,
+ "Believers fight for the cause of Allah, whereas disbelievers fight for the cause of the Devil. So fight against Satan’s ˹evil˺ forces. Indeed, Satan’s schemes are ever weak.",
+ 77,
+ "Have you ˹O Prophet˺ not seen those who had been told, “Do not fight! Rather, establish prayer and pay alms-tax.”? Then once the order came to fight, a group of them feared those ˹hostile˺ people as Allah should be feared—or even more. They said, “Our Lord! Why have You ordered us to fight? If only You had delayed ˹the order for˺ us for a little while!” Say, ˹O Prophet,˺ “The enjoyment of this world is so little, whereas the Hereafter is far better for those mindful ˹of Allah˺. And none of you will be wronged ˹even by the width of˺ the thread of a date stone.",
+ 78,
+ "Wherever you may be, death will overcome you—even if you were in fortified towers.” When something good befalls them, they say, “This is from Allah,” but when something evil befalls them, they say, “This is from you.” Say, ˹O Prophet,˺ “Both have been destined by Allah.” So what is the matter with these people? They can hardly comprehend anything!",
+ 79,
+ "Whatever good befalls you is from Allah and whatever evil befalls you is from yourself. We have sent you ˹O Prophet˺ as a messenger to ˹all˺ people. And Allah is sufficient as a Witness.",
+ 80,
+ "Whoever obeys the Messenger has truly obeyed Allah. But whoever turns away, then ˹know that˺ We have not sent you ˹O Prophet˺ as a keeper over them.",
+ 81,
+ "And they say, “We obey,” but when they leave you, a group of them would spend the night contradicting what they said. Allah records all their schemes. So turn away from them, and put your trust in Allah. And Allah is sufficient as a Trustee of Affairs.",
+ 82,
+ "Do they not then reflect on the Quran? Had it been from anyone other than Allah, they would have certainly found in it many inconsistencies.",
+ 83,
+ "And when they hear news of security or fear, they publicize it. Had they referred it to the Messenger or their authorities, those with sound judgment among them would have validated it. Had it not been for Allah’s grace and mercy, you would have followed Satan—except for a few.",
+ 84,
+ "So fight in the cause of Allah ˹O Prophet˺. You are accountable for none but yourself. And motivate the believers ˹to fight˺, so perhaps Allah will curb the disbelievers’ might. And Allah is far superior in might and in punishment.",
+ 85,
+ "Whoever intercedes for a good cause will have a share in the reward, and whoever intercedes for an evil cause will have a share in the burden. And Allah is Watchful over all things.",
+ 86,
+ "And when you are greeted, respond with a better greeting or at least similarly. Surely Allah is a ˹vigilant˺ Reckoner of all things.",
+ 87,
+ "Allah, there is no god ˹worthy of worship˺ except Him. He will certainly gather ˹all of˺ you together on the Day of Judgment—about which there is no doubt. And whose word is more truthful than Allah’s?",
+ 88,
+ "Why are you ˹believers˺ divided into two groups regarding the hypocrites while Allah allowed them to regress ˹to disbelief˺ because of their misdeeds? Do you wish to guide those left by Allah to stray? And whoever Allah leaves to stray, you will never find for them a way.",
+ 89,
+ "They wish you would disbelieve as they have disbelieved, so you may all be alike. So do not take them as allies unless they emigrate in the cause of Allah. But if they turn away, then seize them and kill them wherever you find them, and do not take any of them as allies or helpers,",
+ 90,
+ "except those who are allies of a people you are bound with in a treaty or those wholeheartedly opposed to fighting either you or their own people. If Allah had willed, He would have empowered them to fight you. So if they refrain from fighting you and offer you peace, then Allah does not permit you to harm them.",
+ 91,
+ "You will find others who wish to be safe from you and their own people. Yet they cannot resist the temptation ˹of disbelief or hostility˺. If they do not keep away, offer you peace, or refrain from attacking you, then seize them and kill them wherever you find them. We have given you full permission over such people.",
+ 92,
+ "It is not lawful for a believer to kill another except by mistake. And whoever kills a believer unintentionally must free a believing slave and pay blood-money to the victim’s family—unless they waive it charitably. But if the victim is a believer from a hostile people, then a believing slave must be freed. And if the victim is from a people bound with you in a treaty, then blood-money must be paid to the family along with freeing a believing slave. Those who are unable, let them fast two consecutive months—as a means of repentance to Allah. And Allah is All-Knowing, All-Wise.",
+ 93,
+ "And whoever kills a believer intentionally, their reward will be Hell—where they will stay indefinitely. Allah will be displeased with them, condemn them, and will prepare for them a tremendous punishment.",
+ 94,
+ "O believers! When you struggle in the cause of Allah, be sure of who you fight. And do not say to those who offer you ˹greetings of˺ peace, “You are no believer!”—seeking a fleeting worldly gain. Instead, Allah has infinite bounties ˹in store˺. You were initially like them then Allah blessed you ˹with Islam˺. So be sure! Indeed, Allah is All-Aware of what you do.",
+ 95,
+ "Those who stay at home—except those with valid excuses—are not equal to those who strive in the cause of Allah with their wealth and their lives. Allah has elevated in rank those who strive with their wealth and their lives above those who stay behind ˹with valid excuses˺. Allah has promised each a fine reward, but those who strive will receive a far better reward than others—",
+ 96,
+ "far superior ranks, forgiveness, and mercy from Him. And Allah is All-Forgiving, Most Merciful.",
+ 97,
+ "When the angels seize the souls of those who have wronged themselves—scolding them, “What do you think you were doing?” they will reply, “We were oppressed in the land.” The angels will respond, “Was Allah’s earth not spacious enough for you to emigrate?” It is they who will have Hell as their home—what an evil destination!",
+ 98,
+ "Except helpless men, women, and children who cannot afford a way out—",
+ 99,
+ "it is right to hope that Allah will pardon them. For Allah is Ever-Pardoning, All-Forgiving.",
+ 100,
+ "Whoever emigrates in the cause of Allah will find many safe havens and bountiful resources throughout the earth. Those who leave their homes and die while emigrating to Allah and His Messenger—their reward has already been secured with Allah. And Allah is All-Forgiving, Most Merciful.",
+ 101,
+ "When you travel through the land, it is permissible for you to shorten the prayer—˹especially˺ if you fear an attack by the disbelievers. Indeed, the disbelievers are your sworn enemies.",
+ 102,
+ "When you ˹O Prophet˺ are ˹campaigning˺ with them and you lead them in prayer, let one group of them pray with you—while armed. When they prostrate themselves, let the other group stand guard behind them. Then the group that has not yet prayed will then join you in prayer—and let them be vigilant and armed. The disbelievers would wish to see you neglect your weapons and belongings, so they could launch a sweeping assault on you. But there is no blame if you lay aside your weapons when overcome by heavy rain or illness—but take precaution. Indeed, Allah has prepared a humiliating punishment for the disbelievers.",
+ 103,
+ "When the prayers are over, remember Allah—whether you are standing, sitting, or lying down. But when you are secure, establish regular prayers. Indeed, performing prayers is a duty on the believers at the appointed times.",
+ 104,
+ "Do not falter in pursuit of the enemy—if you are suffering, they too are suffering. But you can hope to receive from Allah what they can never hope for. And Allah is All-Knowing, All-Wise.",
+ 105,
+ "Indeed, We have sent down the Book to you ˹O Prophet˺ in truth to judge between people by means of what Allah has shown you. So do not be an advocate for the deceitful.",
+ 106,
+ "And seek Allah’s forgiveness—indeed, Allah is All-Forgiving, Most Merciful.",
+ 107,
+ "Do not advocate for those who wrong themselves. Surely Allah does not like those who are deceitful, sinful.",
+ 108,
+ "They try to hide ˹their deception˺ from people, but they can never hide it from Allah—in Whose presence they plot by night what is displeasing to Him. And Allah is Fully Aware of what they do.",
+ 109,
+ "Here you are! You ˹believers˺ are advocating for them in this life, but who will ˹dare to˺ advocate for them before Allah on the Day of Judgment? Or who will come to their defence?",
+ 110,
+ "Whoever commits evil or wrongs themselves then seeks Allah’s forgiveness will certainly find Allah All-Forgiving, Most Merciful.",
+ 111,
+ "And whoever commits a sin—it is only to their own loss. Allah is All-Knowing, All-Wise.",
+ 112,
+ "And whoever commits an evil or sinful deed then blames it on an innocent person, they will definitely bear the guilt of slander and blatant sin.",
+ 113,
+ "Had it not been for Allah’s grace and mercy, a group of them would have sought to deceive you ˹O Prophet˺. Yet they would deceive none but themselves, nor can they harm you in the least. Allah has revealed to you the Book and wisdom and taught you what you never knew. Great ˹indeed˺ is Allah’s favour upon you!",
+ 114,
+ "There is no good in most of their secret talks—except those encouraging charity, kindness, or reconciliation between people. And whoever does this seeking Allah’s pleasure, We will grant them a great reward.",
+ 115,
+ "And whoever defies the Messenger after guidance has become clear to them and follows a path other than that of the believers, We will let them pursue what they have chosen, then burn them in Hell—what an evil end!",
+ 116,
+ "Surely Allah does not forgive associating ˹others˺ with Him ˹in worship˺, but forgives anything else of whoever He wills. Indeed, whoever associates ˹others˺ with Allah has clearly gone far astray.",
+ 117,
+ "Instead of Allah, they only invoke female gods and they ˹actually˺ invoke none but a rebellious Satan—",
+ 118,
+ "cursed by Allah—who said, “I will surely take hold of a certain number of Your servants.",
+ 119,
+ "I will certainly mislead them and delude them with empty hopes. Also, I will order them and they will slit the ears of cattle and alter Allah’s creation.” And whoever takes Satan as a guardian instead of Allah has certainly suffered a tremendous loss.",
+ 120,
+ "Satan only makes them ˹false˺ promises and deludes them with ˹empty˺ hopes. Truly Satan promises them nothing but delusion.",
+ 121,
+ "It is they who will have Hell as their home, and they will find no escape from it!",
+ 122,
+ "And those who believe and do good, We will soon admit them into Gardens under which rivers flow, to stay there for ever and ever. Allah’s promise is ˹always˺ true. And whose word is more truthful than Allah’s?",
+ 123,
+ "˹Divine grace is˺ neither by your wishes nor those of the People of the Book! Whoever commits evil will be rewarded accordingly, and they will find no protector or helper besides Allah.",
+ 124,
+ "But those who do good—whether male or female—and have faith will enter Paradise and will never be wronged ˹even as much as˺ the speck on a date stone.",
+ 125,
+ "And who is better in faith than those who ˹fully˺ submit themselves to Allah, do good, and follow the Way of Abraham, the upright? Allah chose Abraham as a close friend.",
+ 126,
+ "To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is Fully Aware of everything.",
+ 127,
+ "They ask you ˹O Prophet˺ regarding women. Say, “It is Allah Who instructs you regarding them. Instruction has ˹already˺ been revealed in the Book concerning the orphan women you deprive of their due rights but still wish to marry, also helpless children, as well as standing up for orphans’ rights. And whatever good you do is certainly well known to Allah.”",
+ 128,
+ "If a woman fears indifference or neglect from her husband, there is no blame on either of them if they seek ˹fair˺ settlement, which is best. Humans are ever inclined to selfishness. But if you are gracious and mindful ˹of Allah˺, surely Allah is All-Aware of what you do.",
+ 129,
+ "You will never be able to maintain ˹emotional˺ justice between your wives—no matter how keen you are. So do not totally incline towards one leaving the other in suspense. And if you do what is right and are mindful ˹of Allah˺, surely Allah is All-Forgiving, Most Merciful.",
+ 130,
+ "But if they choose to separate, Allah will enrich both of them from His bounties. And Allah is Ever-Bountiful, All-Wise.",
+ 131,
+ "To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Indeed, We have commanded those given the Scripture before you, as well as you, to be mindful of Allah. But if you disobey, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is Self-Sufficient, Praiseworthy.",
+ 132,
+ "To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.",
+ 133,
+ "If it is His Will, He can remove you altogether, O humanity, and replace you with others. And Allah is Most Capable to do so.",
+ 134,
+ "Whoever desires the reward of this world, then ˹let them know that˺ with Allah are the rewards of this world and the Hereafter. And Allah is All-Hearing, All-Seeing.",
+ 135,
+ "O believers! Stand firm for justice as witnesses for Allah even if it is against yourselves, your parents, or close relatives. Be they rich or poor, Allah is best to ensure their interests. So do not let your desires cause you to deviate ˹from justice˺. If you distort the testimony or refuse to give it, then ˹know that˺ Allah is certainly All-Aware of what you do.",
+ 136,
+ "O believers! Have faith in Allah, His Messenger, the Book He has revealed to His Messenger, and the Scriptures He revealed before. Indeed, whoever denies Allah, His angels, His Books, His messengers, and the Last Day has clearly gone far astray.",
+ 137,
+ "Indeed, those who believed then disbelieved, then believed and again disbelieved—˹only˺ increasing in disbelief—Allah will neither forgive them nor guide them to the ˹Right˺ Way.",
+ 138,
+ "Give good news of a painful punishment to hypocrites,",
+ 139,
+ "who choose disbelievers as allies instead of the believers. Do they seek honour and power through that company? Surely all honour and power belongs to Allah.",
+ 140,
+ "He has already revealed to you in the Book that when you hear Allah’s revelations being denied or ridiculed, then do not sit in that company unless they engage in a different topic, or else you will be like them. Surely Allah will gather the hypocrites and disbelievers all together in Hell.",
+ 141,
+ "˹The hypocrites are˺ those who wait to see what happens to you. So if Allah grants you victory, they say ˹to you˺, “Were we not on your side?” But if the disbelievers have a share ˹of victory˺, they say ˹to them˺, “Did we not have the advantage over you, yet we protected you from the believers?” Allah will judge between ˹all of˺ you on the Day of Judgment. And Allah will never grant the disbelievers a way over the believers.",
+ 142,
+ "Surely the hypocrites seek to deceive Allah, but He outwits them. When they stand up for prayer, they do it half-heartedly only to be seen by people—hardly remembering Allah at all.",
+ 143,
+ "Torn between belief and disbelief—belonging neither to these ˹believers˺ nor those ˹disbelievers˺. And whoever Allah leaves to stray, you will never find for them a way.",
+ 144,
+ "O believers! Do not take disbelievers as allies instead of the believers. Would you like to give Allah solid proof against yourselves?",
+ 145,
+ "Surely the hypocrites will be in the lowest depths of the Fire—and you will never find for them any helper—",
+ 146,
+ "except those who repent, mend their ways, hold fast to Allah, and are sincere in their devotion to Allah; they will be with the believers. And Allah will grant the believers a great reward.",
+ 147,
+ "Why should Allah punish you if you are grateful and faithful? Allah is ever Appreciative, All-Knowing.",
+ 148,
+ "Allah does not like negative thoughts to be voiced—except by those who have been wronged. Allah is All-Hearing, All-Knowing.",
+ 149,
+ "Whether you reveal or conceal a good or pardon an evil—surely Allah is Ever-Pardoning, Most Capable.",
+ 150,
+ "Surely those who deny Allah and His messengers and wish to make a distinction between Allah and His messengers, saying, “We believe in some and disbelieve in others,” desiring to forge a compromise,",
+ 151,
+ "they are indeed the true disbelievers. And We have prepared for the disbelievers a humiliating punishment.",
+ 152,
+ "As for those who believe in Allah and His messengers—accepting all; rejecting none—He will surely give them their rewards. And Allah is All-Forgiving, Most Merciful.",
+ 153,
+ "The People of the Book demand that you ˹O Prophet˺ bring down for them a revelation in writing from heaven. They demanded what is even greater than this from Moses, saying, “Make Allah visible to us!” So a thunderbolt struck them for their wrongdoing. Then they took the calf for worship after receiving clear signs. Still We forgave them for that ˹after their repentance˺ and gave Moses compelling proof.",
+ 154,
+ "We raised the Mount over them ˹as a warning˺ for ˹breaking˺ their covenant and said, “Enter the gate ˹of Jerusalem˺ with humility.” We also warned them, “Do not break the Sabbath,” and took from them a firm covenant.",
+ 155,
+ "˹They were condemned˺ for breaking their covenant, rejecting Allah’s signs, killing the prophets unjustly, and for saying, “Our hearts are unreceptive!”—it is Allah Who has sealed their hearts for their disbelief, so they do not believe except for a few—",
+ 156,
+ "and for their denial and outrageous accusation against Mary,",
+ 157,
+ "and for boasting, “We killed the Messiah, Jesus, son of Mary, the messenger of Allah.” But they neither killed nor crucified him—it was only made to appear so. Even those who argue for this ˹crucifixion˺ are in doubt. They have no knowledge whatsoever—only making assumptions. They certainly did not kill him.",
+ 158,
+ "Rather, Allah raised him up to Himself. And Allah is Almighty, All-Wise.",
+ 159,
+ "Every one of the People of the Book will definitely believe in him before his death. And on the Day of Judgment Jesus will be a witness against them.",
+ 160,
+ "We forbade the Jews certain foods that had been lawful to them for their wrongdoing, and for hindering many from the Way of Allah,",
+ 161,
+ "taking interest despite its prohibition, and consuming people’s wealth unjustly. We have prepared for the disbelievers among them a painful punishment.",
+ 162,
+ "But those of them well-grounded in knowledge, the faithful ˹who˺ believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you—˹especially˺ those who establish prayer—and those who pay alms-tax and believe in Allah and the Last Day, to these ˹people˺ We will grant a great reward.",
+ 163,
+ "Indeed, We have sent revelation to you ˹O Prophet˺ as We sent revelation to Noah and the prophets after him. We also sent revelation to Abraham, Ishmael, Isaac, Jacob, and his descendants, ˹as well as˺ Jesus, Job, Jonah, Aaron, and Solomon. And to David We gave the Psalms.",
+ 164,
+ "There are messengers whose stories We have told you already and others We have not. And to Moses Allah spoke directly.",
+ 165,
+ "˹All were˺ messengers delivering good news and warnings so humanity should have no excuse before Allah after ˹the coming of˺ the messengers. And Allah is Almighty, All-Wise.",
+ 166,
+ "Yet ˹if you are denied, O Prophet,˺ Allah bears witness to what He has sent down to you—He has sent it with His knowledge. The angels too bear witness. And Allah ˹alone˺ is sufficient as a Witness.",
+ 167,
+ "Those who disbelieve and hinder ˹others˺ from the Way of Allah have certainly strayed far away.",
+ 168,
+ "Those who disbelieve and wrong themselves—surely Allah will neither forgive them nor guide them to any path",
+ 169,
+ "except that of Hell, to stay there for ever and ever. And that is easy for Allah.",
+ 170,
+ "O humanity! The Messenger has certainly come to you with the truth from your Lord, so believe for your own good. But if you disbelieve, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is All-Knowing, All-Wise.",
+ 171,
+ "O People of the Book! Do not go to extremes regarding your faith; say nothing about Allah except the truth. The Messiah, Jesus, son of Mary, was no more than a messenger of Allah and the fulfilment of His Word through Mary and a spirit ˹created by a command˺ from Him. So believe in Allah and His messengers and do not say, “Trinity.” Stop!—for your own good. Allah is only One God. Glory be to Him! He is far above having a son! To Him belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.",
+ 172,
+ "The Messiah would never be too proud to be a servant of Allah, nor would the angels nearest to Allah. Those who are too proud and arrogant to worship Him will be brought before Him all together.",
+ 173,
+ "As for those who believe and do good, He will reward them in full and increase them out of His grace. But those who are too proud and arrogant, He will subject them to a painful punishment. And besides Allah they will find no protector or helper.",
+ 174,
+ "O humanity! There has come to you conclusive evidence from your Lord. And We have sent down to you a brilliant light.",
+ 175,
+ "As for those who believe in Allah and hold fast to Him, He will admit them into His mercy and grace and guide them to Himself through the Straight Path.",
+ 176,
+ "They ask you ˹for a ruling, O Prophet˺. Say, “Allah gives you a ruling regarding those who die without children or parents.” If a man dies childless and leaves behind a sister, she will inherit one-half of his estate, whereas her brother will inherit all of her estate if she dies childless. If this person leaves behind two sisters, they together will inherit two-thirds of the estate. But if the deceased leaves male and female siblings, a male’s share will be equal to that of two females. Allah makes ˹this˺ clear to you so you do not go astray. And Allah has ˹perfect˺ knowledge of all things."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/40.json b/share/quran-json/TheQuran/en/40.json
new file mode 100644
index 0000000..5f0e7fa
--- /dev/null
+++ b/share/quran-json/TheQuran/en/40.json
@@ -0,0 +1,186 @@
+[
+ {
+ "id": "40",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ghafir",
+ "translated_name": "The Forgiver",
+ "verse_count": 85,
+ "slug": "ghafir",
+ "codepoints": [
+ 1594,
+ 1575,
+ 1601,
+ 1585
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "The revelation of this Book is from Allah—the Almighty, All-Knowing,",
+ 3,
+ "the Forgiver of sin and Accepter of repentance, the Severe in punishment, and Infinite in bounty. There is no god ˹worthy of worship˺ except Him. To Him ˹alone˺ is the final return.",
+ 4,
+ "None disputes the signs of Allah except the disbelievers, so do not be deceived by their prosperity throughout the land.",
+ 5,
+ "Before them, the people of Noah denied ˹the truth˺, as did ˹other˺ enemy forces afterwards. Every community plotted against its prophet to seize him, and argued in falsehood, ˹hoping˺ to discredit the truth with it. So I seized them. And how ˹horrible˺ was My punishment!",
+ 6,
+ "And so your Lord’s decree has been proven true against the disbelievers—that they will be the inmates of the Fire.",
+ 7,
+ "Those ˹angels˺ who carry the Throne and those around it glorify the praises of their Lord, have faith in Him, and seek forgiveness for the believers, ˹praying:˺ “Our Lord! You encompass everything in ˹Your˺ mercy and knowledge. So forgive those who repent and follow Your Way, and protect them from the torment of the Hellfire.",
+ 8,
+ "Our Lord! Admit them into the Gardens of Eternity which You have promised them, along with the righteous among their parents, spouses, and descendants. You ˹alone˺ are truly the Almighty, All-Wise.",
+ 9,
+ "And protect them from ˹the consequences of their˺ evil deeds. For whoever You protect from the evil of their deeds on that Day will have been shown Your mercy. That is ˹truly˺ the ultimate triumph.”",
+ 10,
+ "Indeed, it will be announced to the disbelievers, “Allah’s contempt for you—as you disbelieved when invited to belief—was far worse than your contempt for one another ˹Today˺.”",
+ 11,
+ "They will plead, “Our Lord! You made us lifeless twice, and gave us life twice. Now we confess our sins. So is there any way out?”",
+ 12,
+ "˹They will be told,˺ “˹No!˺ This is because when Allah alone was invoked, you ˹staunchly˺ disbelieved. But when others were associated with Him ˹in worship˺, you ˹readily˺ believed. So ˹Today˺ judgment belongs to Allah ˹alone˺—the Most High, All-Great.”",
+ 13,
+ "He is the One Who shows you His signs and sends down ˹rain as˺ a provision for you from the sky. ˹But˺ none will be mindful except those who turn ˹to Him˺.",
+ 14,
+ "So call upon Allah with sincere devotion, even to the dismay of the disbelievers.",
+ 15,
+ "˹He is˺ Highly Exalted in rank, Lord of the Throne. He sends down the revelation by His command to whoever He wills of His servants to warn ˹all˺ of the Day of Meeting—",
+ 16,
+ "the Day all will appear ˹before Allah˺. Nothing about them will be hidden from Him. ˹He will ask,˺ “Who does all authority belong to this Day? To Allah—the One, the Supreme!",
+ 17,
+ "Today every soul will be rewarded for what it has done. No injustice Today! Surely Allah is swift in reckoning.”",
+ 18,
+ "Warn them ˹O Prophet˺ of the approaching Day when the hearts will jump into the throats, suppressing distress. The wrongdoers will have neither a close friend nor intercessor to be heard.",
+ 19,
+ "Allah ˹even˺ knows the sly glances of the eyes and whatever the hearts conceal.",
+ 20,
+ "And Allah judges with the truth, while those ˹idols˺ they invoke besides Him cannot judge at all. Indeed, Allah ˹alone˺ is the All-Hearing, All-Seeing.",
+ 21,
+ "Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land. But Allah seized them for their sins, and they had no protector from Allah.",
+ 22,
+ "That was because their messengers used to come to them with clear proofs, but they persisted in disbelief. So Allah seized them. Surely He is All-Powerful, severe in punishment.",
+ 23,
+ "Indeed, We sent Moses with Our signs and compelling proof",
+ 24,
+ "to Pharaoh, Hamân, and Korah. But they responded: “Magician! Total liar!”",
+ 25,
+ "Then, when he came to them with the truth from Us, they said, “Kill the sons of those who believe with him and keep their women.” But the plotting of the disbelievers was only in vain.",
+ 26,
+ "And Pharaoh said, “Let me kill Moses, and let him call upon his Lord! I truly fear that he may change your traditions or cause mischief in the land.”",
+ 27,
+ "Moses replied, “I seek refuge in my Lord and your Lord from every arrogant person who does not believe in the Day of Reckoning.”",
+ 28,
+ "A believing man from Pharaoh’s people, who was hiding his faith, argued, “Will you kill a man ˹only˺ for saying: ‘My Lord is Allah,’ while he has in fact come to you with clear proofs from your Lord? If he is a liar, it will be to his own loss. But if he is truthful, then you will be afflicted with some of what he is threatening you with. Surely Allah does not guide whoever is a transgressor, a total liar.",
+ 29,
+ "O my people! Authority belongs to you today, reigning supreme in the land. But who would help us against the torment of Allah, if it were to befall us?” Pharaoh assured ˹his people˺, “I am telling you only what I believe, and I am leading you only to the way of guidance.”",
+ 30,
+ "And the man who believed cautioned, “O my people! I truly fear for you the doom of ˹earlier˺ enemy forces—",
+ 31,
+ "like the fate of the people of Noah, ’Ȃd, Thamûd, and those after them. For Allah would never will to wrong ˹His˺ servants.",
+ 32,
+ "O my people! I truly fear for you the Day all will be crying out ˹to each other˺—",
+ 33,
+ "the Day you will ˹try in vain to˺ turn your backs and run away, with no one to protect you from Allah. And whoever Allah leaves to stray will be left with no guide.",
+ 34,
+ "Joseph already came to you earlier with clear proofs, yet you never ceased to doubt what he came to you with. When he died you said, ‘Allah will never send a messenger after him.’ This is how Allah leaves every transgressor and doubter to stray—",
+ 35,
+ "those who dispute Allah’s signs with no proof given to them. How despicable is that for Allah and the believers! This is how Allah seals the heart of every arrogant tyrant.”",
+ 36,
+ "Pharaoh ordered, “O Hamân! Build me a high tower so I may reach the pathways",
+ 37,
+ "leading up to the heavens and look for the God of Moses, although I am sure he is a liar.” And so Pharaoh’s evil deeds were made so appealing to him that he was hindered from the ˹Right˺ Way. But the plotting of Pharaoh was only in vain.",
+ 38,
+ "And the man who believed urged, “O my people! Follow me, ˹and˺ I will lead you to the Way of Guidance.",
+ 39,
+ "O my people! This worldly life is only ˹a fleeting˺ enjoyment, whereas the Hereafter is truly the home of settlement.",
+ 40,
+ "Whoever does an evil deed will only be paid back with its equivalent. And whoever does good, whether male or female, and is a believer, they will enter Paradise, where they will be provided for without limit.",
+ 41,
+ "O my people! How is it that I invite you to salvation, while you invite me to the Fire!",
+ 42,
+ "You invite me to disbelieve in Allah and associate with Him what I have no knowledge of, while I invite you to the Almighty, Most Forgiving.",
+ 43,
+ "There is no doubt that whatever ˹idols˺ you invite me to ˹worship˺ are not worthy to be invoked either in this world or the Hereafter. ˹Undoubtedly,˺ our return is to Allah, and the transgressors will be the inmates of the Fire.",
+ 44,
+ "You will remember what I say to you, and I entrust my affairs to Allah. Surely Allah is All-Seeing of all ˹His˺ servants.”",
+ 45,
+ "So Allah protected him from the evil of their schemes. And Pharaoh’s people were overwhelmed by an evil punishment:",
+ 46,
+ "they are exposed to the Fire ˹in their graves˺ morning and evening. And on the Day the Hour will be established ˹it will be said˺, “Admit Pharaoh’s people into the harshest punishment ˹of Hell˺.”",
+ 47,
+ "˹Consider the Day˺ when they will dispute in the Fire, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, “We were your ˹dedicated˺ followers, will you then shield us from a portion of the Fire?”",
+ 48,
+ "The arrogant will say, “We are all in it! ˹For˺ Allah has already passed judgment over ˹His˺ servants.”",
+ 49,
+ "And those in the Fire will cry out to the keepers of Hell, “Pray to your Lord to lighten the torment for us ˹even˺ for one day!”",
+ 50,
+ "The keepers will reply, “Did your messengers not ˹constantly˺ come to you with clear proofs?” They will say, “Yes ˹they did˺.” The keepers will say, “Then pray! Though the prayer of the disbelievers is only in vain.”",
+ 51,
+ "We certainly help Our messengers and the believers, ˹both˺ in this worldly life and on the Day the witnesses will stand forth ˹for testimony˺—",
+ 52,
+ "the Day the wrongdoers’ excuses will be of no benefit to them. They will be condemned, and will have the worst outcome. ",
+ 53,
+ "And indeed, We gave Moses ˹true˺ guidance, and made the Children of Israel inherit the Scripture—",
+ 54,
+ "a guide and a reminder to people of reason.",
+ 55,
+ "So be patient ˹O Prophet˺, ˹for˺ Allah’s promise is certainly true. Seek forgiveness for your shortcomings. And glorify the praises of your Lord morning and evening.",
+ 56,
+ "Surely those who dispute Allah’s signs—with no proof given to them—have nothing in their hearts but greed for dominance, which they will never attain. So seek refuge in Allah. Indeed, He alone is the All-Hearing, All-Seeing.",
+ 57,
+ "The creation of the heavens and the earth is certainly greater than the re-creation of humankind, but most people do not know.",
+ 58,
+ "Those blind ˹to the truth˺ and those who can see are not equal, nor are those who believe and do good ˹equal˺ to those who do evil. Yet you are hardly mindful.",
+ 59,
+ "The Hour is certainly coming, there is no doubt about it. But most people do not believe.",
+ 60,
+ "Your Lord has proclaimed, “Call upon Me, I will respond to you. Surely those who are too proud to worship Me will enter Hell, fully humbled.”",
+ 61,
+ "It is Allah Who has made the night for you to rest in and the day bright. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.",
+ 62,
+ "That is Allah, your Lord, the Creator of all things. There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?",
+ 63,
+ "This is how those who used to reject Allah’s signs were ˹also˺ deluded.",
+ 64,
+ "It is Allah Who made the earth a place of settlement for you and the sky a canopy. He shaped you ˹in the womb˺, perfecting your form. And He has provided you with what is good and lawful. That is Allah—your Lord. So Blessed is Allah, Lord of all worlds.",
+ 65,
+ "He is the Ever-Living. There is no god ˹worthy of worship˺ except Him. So call upon Him with sincere devotion, ˹saying,˺ “All praise is for Allah—Lord of all worlds.”",
+ 66,
+ "Say, ˹O Prophet,˺ “I have been forbidden to worship those ˹idols˺ you worship besides Allah, since clear proofs have come to me from my Lord. And I have been commanded to ˹fully˺ submit to the Lord of all worlds.”",
+ 67,
+ "He is the One Who created you from dust, then from a sperm-drop, then ˹developed you into˺ a clinging clot ˹of blood˺, then He brings you forth as infants, so that you may reach your prime, and become old—though some of you ˹may˺ die sooner—reaching an appointed time, so perhaps you may understand ˹Allah’s power˺.",
+ 68,
+ "He is the One Who gives life and causes death. When He decrees a matter, He simply tells it, “Be!” And it is!",
+ 69,
+ "Have you not seen how those who dispute Allah’s signs are turned away?",
+ 70,
+ "˹They are˺ the ones who reject this Book and all ˹scriptures˺ We sent Our messengers with. So they will know ˹the consequences˺",
+ 71,
+ "when shackles will be around their necks and chains ˹on their legs˺. They will be dragged",
+ 72,
+ "through boiling water, then burned in the Fire ˹as fuel˺.",
+ 73,
+ "Then they will be asked, “Where are those ˹idols˺ you used to associate",
+ 74,
+ "with Allah?” They will cry, “They have ˹all˺ failed us. In fact, we did not invoke anything ˹real˺ before.” This is how Allah leaves the disbelievers to stray.",
+ 75,
+ "˹They will be told,˺ “This ˹punishment˺ is for being prideful on earth unjustly and for acting arrogantly.",
+ 76,
+ "Enter the gates of Hell, to stay there forever. What an evil home for the arrogant!”",
+ 77,
+ "So be patient ˹O Prophet˺. Surely Allah’s promise is true. Whether We show you some of what We threaten them with, or cause you to die ˹before that˺, to Us they will ˹all˺ be returned.",
+ 78,
+ "We already sent messengers before you. We have told you the stories of some of them, while others We have not. It was not for any messenger to bring a sign without Allah’s permission. But when Allah’s decree comes, judgment will be passed with fairness, and the people of falsehood will then be in ˹total˺ loss.",
+ 79,
+ "It is Allah Who made cattle for you so that you may ride some and eat others.",
+ 80,
+ "Also, you find in them ˹other˺ benefits. And by means of them you may reach destinations you desire. And you are carried upon ˹some of˺ them and upon ships.",
+ 81,
+ "And He shows you His signs. Now which of Allah’s signs will you deny?",
+ 82,
+ "Have they not travelled throughout the land to see what was the end of those who were ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land, but their ˹worldly˺ gains were of no benefit to them.",
+ 83,
+ "When their messengers came to them with clear proofs, they were prideful in whatever ˹worldly˺ knowledge they had, and were ˹ultimately˺ overwhelmed by what they used to ridicule.",
+ 84,
+ "When they saw Our punishment, they cried, “˹Now˺ we believe in Allah alone and reject what we had been associating with Him!”",
+ 85,
+ "But their faith was of no benefit to them when they saw Our torment. This has ˹always˺ been Allah’s way ˹of dealing˺ with His ˹wicked˺ servants. Then and there the disbelievers were in ˹total˺ loss."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/41.json b/share/quran-json/TheQuran/en/41.json
new file mode 100644
index 0000000..e19cea7
--- /dev/null
+++ b/share/quran-json/TheQuran/en/41.json
@@ -0,0 +1,124 @@
+[
+ {
+ "id": "41",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Fussilat",
+ "translated_name": "Explained in Detail",
+ "verse_count": 54,
+ "slug": "fussilat",
+ "codepoints": [
+ 1601,
+ 1589,
+ 1604,
+ 1578
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "˹This is˺ a revelation from the Most Compassionate, Most Merciful.",
+ 3,
+ "˹It is˺ a Book whose verses are perfectly explained—a Quran in Arabic for people who know,",
+ 4,
+ "delivering good news and warning. Yet most of them turn away, so they do not hear.",
+ 5,
+ "They say, “Our hearts are veiled against what you are calling us to, there is deafness in our ears, and there is a barrier between us and you. So do ˹whatever you want˺ and so shall we!”",
+ 6,
+ "Say, ˹O Prophet,˺ “I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So take the Straight Way towards Him, and seek His forgiveness. And woe to the polytheists—",
+ 7,
+ "those who do not pay alms-tax and are in denial of the Hereafter.",
+ 8,
+ "˹But˺ those who believe and do good will certainly have a never-ending reward.",
+ 9,
+ "Ask ˹them, O Prophet˺, “How can you disbelieve in the One Who created the earth in two Days? And how can you set up equals with Him? That is the Lord of all worlds.",
+ 10,
+ "He placed on the earth firm mountains, standing high, showered His blessings upon it, and ordained ˹all˺ its means of sustenance—totaling four Days exactly—for all who ask.",
+ 11,
+ "Then He turned towards the heaven when it was ˹still like˺ smoke, saying to it and to the earth, ‘Submit, willingly or unwillingly.’ They both responded, ‘We submit willingly.’",
+ 12,
+ "So He formed the heaven into seven heavens in two Days, assigning to each its mandate. And We adorned the lowest heaven with ˹stars like˺ lamps ˹for beauty˺ and for protection. That is the design of the Almighty, All-Knowing.” ",
+ 13,
+ "If they turn away, then say, ˹O Prophet,˺ “I warn you of a ˹mighty˺ blast, like the one that befell ’Ȃd and Thamûd.”",
+ 14,
+ "The messengers had come to them from all angles, ˹proclaiming,˺ “Worship none but Allah.” They responded, “Had our Lord willed, He could have easily sent down angels ˹instead˺. So we totally reject what you have been sent with.”",
+ 15,
+ "As for ’Ȃd, they acted arrogantly throughout the land with no right, boasting, “Who is superior to us in might?” Did they not see that Allah ˹Himself˺, Who created them, was far superior to them in might? Still they persisted in denying Our signs.",
+ 16,
+ "So We sent against them a furious wind, for ˹several˺ miserable days, to make them taste a humiliating punishment in this worldly life. But far more humiliating will be the punishment of the Hereafter. And they will not be helped.",
+ 17,
+ "As for Thamûd, We showed them guidance, but they preferred blindness over guidance. So the blast of a disgracing punishment overtook them for what they used to commit.",
+ 18,
+ "And We delivered those who were faithful and were mindful ˹of Allah˺.",
+ 19,
+ "˹Consider˺ the Day ˹when˺ the enemies of Allah will be gathered for the Fire, all driven in ranks.",
+ 20,
+ "When they reach it, their ears, eyes, and skin will testify against what they used to do.",
+ 21,
+ "They will ask their skin ˹furiously˺, “Why have you testified against us?” It will say, “We have been made to speak by Allah, Who causes all things to speak. He ˹is the One Who˺ created you the first time, and to Him you were bound to return.",
+ 22,
+ "You did not ˹bother to˺ hide yourselves from your ears, eyes, and skin to prevent them from testifying against you. Rather, you assumed that Allah did not know much of what you used to do.",
+ 23,
+ "It was that ˹false˺ assumption you entertained about your Lord that has brought about your doom, so you have become losers.”",
+ 24,
+ "Even if they endure patiently, the Fire will ˹always˺ be their home. And if they ˹beg to˺ appease ˹their Lord˺, they will never be allowed to.",
+ 25,
+ "We placed at their disposal ˹evil˺ associates who made their past and future ˹misdeeds˺ appealing to them. ˹So˺ the fate of earlier communities of jinn and humans has been justified against them ˹as well˺, ˹for˺ they were truly losers.",
+ 26,
+ "The disbelievers advised ˹one another˺, “Do not listen to this Quran but drown it out so that you may prevail.”",
+ 27,
+ "So We will certainly make the disbelievers taste a severe punishment, and We will surely repay them according to the worst of their deeds.",
+ 28,
+ "That is the reward of Allah’s enemies: the Fire, which will be their eternal home—a ˹fitting˺ reward for their denial of Our revelations.",
+ 29,
+ "The disbelievers will ˹then˺ cry, “Our Lord! Show us those jinn and humans who led us astray: we will put them under our feet so that they will be among the lowest ˹in Hell˺.”",
+ 30,
+ "Surely those who say, “Our Lord is Allah,” and then remain steadfast, the angels descend upon them, ˹saying,˺ “Do not fear, nor grieve. Rather, rejoice in the good news of Paradise, which you have been promised.",
+ 31,
+ "We are your supporters in this worldly life and in the Hereafter. There you will have whatever your souls desire, and there you will have whatever you ask for:",
+ 32,
+ "an accommodation from the All-Forgiving, Most Merciful ˹Lord˺.”",
+ 33,
+ "And whose words are better than someone who calls ˹others˺ to Allah, does good, and says, “I am truly one of those who submit.”?",
+ 34,
+ "Good and evil cannot be equal. Respond ˹to evil˺ with what is best, then the one you are in a feud with will be like a close friend.",
+ 35,
+ "But this cannot be attained except by those who are patient and who are truly fortunate.",
+ 36,
+ "And if you are tempted by Satan, then seek refuge with Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.",
+ 37,
+ "Among His signs are the day and the night, the sun and the moon. Do not prostrate to the sun or the moon, but prostrate to Allah, Who created them ˹all˺, if you ˹truly˺ worship Him ˹alone˺.",
+ 38,
+ "But if the pagans are too proud, then ˹let them know that˺ those ˹angels˺ nearest to your Lord glorify Him day and night, and never grow weary.",
+ 39,
+ "And among His signs is that you see the earth devoid of life, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell. Indeed, the One Who revives it can easily revive the dead. He is certainly Most Capable of everything.",
+ 40,
+ "Indeed, those who abuse Our revelations are not hidden from Us. Who is better: the one who will be cast into the Fire or the one who will be secure on Judgment Day? Do whatever you want. He is certainly All-Seeing of what you do.",
+ 41,
+ "Indeed, those who deny the Reminder after it has come to them ˹are doomed˺, for it is truly a mighty Book.",
+ 42,
+ "It cannot be proven false from any angle. ˹It is˺ a revelation from the ˹One Who is˺ All-Wise, Praiseworthy.",
+ 43,
+ "˹O Prophet!˺ Nothing is said to you ˹by the deniers˺ except what was already said to the messengers before you. Surely your Lord is ˹the Lord˺ of forgiveness and painful punishment.",
+ 44,
+ "Had We revealed it as a non-Arabic Quran, they would have certainly argued, “If only its verses were made clear ˹in our language˺. What! A non-Arabic revelation for an Arab audience!” Say, ˹O Prophet,˺ “It is a guide and a healing to the believers. As for those who disbelieve, there is deafness in their ears and blindness to it ˹in their hearts˺. It is as if they are being called from a faraway place.” ",
+ 45,
+ "Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.",
+ 46,
+ "Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Your Lord is never unjust to ˹His˺ creation.",
+ 47,
+ "With Him ˹alone˺ is the knowledge of the Hour. No fruit comes out of its husk, nor does a female conceive or deliver without His knowledge. And ˹consider˺ the Day He will call to them, “Where are My ˹so-called˺ associate-gods?” They will cry, “We declare before you that none of us testifies to that ˹any longer˺.”",
+ 48,
+ "Whatever ˹idols˺ they used to invoke besides Allah will fail them. And they will realize that they will have no escape.",
+ 49,
+ "One never tires of praying for good. And if touched with evil, they become desperate and hopeless.",
+ 50,
+ "And if We let them taste a mercy from Us after being touched with adversity, they will certainly say, “This is what I deserve. I do not think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, the finest reward with Him will definitely be mine.” But We will surely inform the disbelievers of what they used to do. And We will certainly make them taste a harsh torment.",
+ 51,
+ "When We show favour to someone, they turn away, acting arrogantly. And when touched with evil, they make endless prayers ˹for good˺.",
+ 52,
+ "Ask ˹them, O Prophet˺, “Imagine if this ˹Quran˺ is ˹truly˺ from Allah and you deny it: who can be more astray than those who have gone too far in opposition ˹to the truth˺?”",
+ 53,
+ "We will show them Our signs in the universe and within themselves until it becomes clear to them that this ˹Quran˺ is the truth. Is it not enough that your Lord is a Witness over all things?",
+ 54,
+ "They are truly in doubt of the meeting with their Lord! ˹But˺ He is indeed Fully Aware of everything."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/42.json b/share/quran-json/TheQuran/en/42.json
new file mode 100644
index 0000000..1014788
--- /dev/null
+++ b/share/quran-json/TheQuran/en/42.json
@@ -0,0 +1,124 @@
+[
+ {
+ "id": "42",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ash-Shuraa",
+ "translated_name": "The Consultation",
+ "verse_count": 53,
+ "slug": "ash-shuraa",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1588,
+ 1608,
+ 1585,
+ 1609
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "’Aĩn-Sĩn-Qãf.",
+ 3,
+ "And so you ˹O Prophet˺ are sent revelation, just like those before you, by Allah—the Almighty, All-Wise.",
+ 4,
+ "To Him belongs whatever is in the heavens and whatever is on the earth. And He is the Most High, the Greatest.",
+ 5,
+ "The heavens nearly burst, one above the other, ˹in awe of Him˺. And the angels glorify the praises of their Lord, and seek forgiveness for those on earth. Surely Allah alone is the All-Forgiving, Most Merciful.",
+ 6,
+ "As for those who take other protectors besides Him, Allah is Watchful over them. And you ˹O Prophet˺ are not a keeper over them.",
+ 7,
+ "And so We have revealed to you a Quran in Arabic, so you may warn the Mother of Cities and everyone around it, and warn of the Day of Gathering—about which there is no doubt—˹when˺ a group will be in Paradise and another in the Blaze.",
+ 8,
+ "Had Allah willed, He could have easily made all ˹humanity˺ into a single community ˹of believers˺. But He admits into His mercy whoever He wills. And the wrongdoers will have no protector or helper.",
+ 9,
+ "How can they take protectors besides Him? Allah alone is the Protector. He ˹alone˺ gives life to the dead. And He ˹alone˺ is Most Capable of everything.",
+ 10,
+ "˹Say to the believers, O Prophet,˺ “Whatever you may differ about, its judgment rests with Allah. That is Allah—my Lord. In Him I put my trust, and to Him I ˹always˺ turn.”",
+ 11,
+ "˹He is˺ the Originator of the heavens and the earth. He has made for you spouses from among yourselves, and ˹made˺ mates for cattle ˹as well˺—multiplying you ˹both˺. There is nothing like Him, for He ˹alone˺ is the All-Hearing, All-Seeing.",
+ 12,
+ "To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. He gives abundant or limited provisions to whoever He wills. Indeed, He has ˹perfect˺ knowledge of all things.",
+ 13,
+ "He has ordained for you ˹believers˺ the Way which He decreed for Noah, and what We have revealed to you ˹O Prophet˺ and what We decreed for Abraham, Moses, and Jesus, ˹commanding:˺ “Uphold the faith, and make no divisions in it.” What you call the polytheists to is unbearable for them. Allah chooses for Himself whoever He wills, and guides to Himself whoever turns ˹to Him˺.",
+ 14,
+ "They did not split ˹into sects˺ out of mutual envy until knowledge came to them. Had it not been for a prior decree from your Lord for an appointed term, the matter would have certainly been settled between them ˹at once˺. And surely those who were made to inherit the Scripture after them are truly in alarming doubt about this ˹Quran˺.",
+ 15,
+ "Because of that, you ˹O Prophet˺ will invite ˹all˺. Be steadfast as you are commanded, and do not follow their desires. And say, “I believe in every Scripture Allah has revealed. And I am commanded to judge fairly among you. Allah is our Lord and your Lord. We will be accountable for our deeds and you for yours. There is no ˹need for˺ contention between us. Allah will gather us together ˹for judgment˺. And to Him is the final return.”",
+ 16,
+ "As for those who dispute about Allah after He is ˹already˺ acknowledged ˹by many˺, their argument is futile in the sight of their Lord. Upon them is wrath, and they will suffer a severe punishment.",
+ 17,
+ "It is Allah Who has revealed the Book with the truth and the balance ˹of justice˺. You never know, perhaps the Hour is near.",
+ 18,
+ "Those who disbelieve in it ˹ask to˺ hasten it ˹mockingly˺. But the believers are fearful of it, knowing that it is the truth. Surely those who dispute about the Hour have gone far astray.",
+ 19,
+ "Allah is Ever Kind to His servants. He provides ˹abundantly˺ to whoever He wills. And He is the All-Powerful, Almighty.",
+ 20,
+ "Whoever desires the harvest of the Hereafter, We will increase their harvest. And whoever desires ˹only˺ the harvest of this world, We will give them some of it, but they will have no share in the Hereafter.",
+ 21,
+ "Or do they have associate-gods who have ordained for them some ˹polytheistic˺ beliefs, which Allah has not authorized? Had it not been for ˹prior˺ decree on Judgment, the matter would have certainly been settled between them ˹at once˺. And surely the wrongdoers will suffer a painful punishment.",
+ 22,
+ "You will see the wrongdoers fearful ˹of the punishment˺ for what they committed but it will be inevitable for them, whereas those who believe and do good will be in the lush Gardens of Paradise. They will have whatever they desire from their Lord. That is ˹truly˺ the greatest bounty.",
+ 23,
+ "That ˹reward˺ is the good news which Allah gives to His servants who believe and do good. Say, ˹O Prophet,˺ “I do not ask you for a reward for this ˹message˺—only honour for ˹our˺ kinship.” Whoever earns a good deed, We will increase it in goodness for them. Surely Allah is All-Forgiving, Most Appreciative.",
+ 24,
+ "Or do they say, “He has fabricated a lie about Allah!”? ˹If you had,˺ Allah would have sealed your heart, if He willed. And Allah wipes out falsehood and establishes the truth by His Words. He certainly knows best what is ˹hidden˺ in the heart.",
+ 25,
+ "He is the One Who accepts repentance from His servants and pardons ˹their˺ sins. And He knows whatever you do.",
+ 26,
+ "He responds to those who believe and do good, and increases their reward out of His grace. As for the disbelievers, they will suffer a severe punishment.",
+ 27,
+ "Had Allah given abundant provisions to ˹all˺ His servants, they would have certainly transgressed throughout the land. But He sends down whatever He wills in perfect measure. He is truly All-Aware, All-Seeing of His servants.",
+ 28,
+ "He is the One Who sends down rain after people have given up hope, spreading out His mercy. He is the Guardian, the Praiseworthy.",
+ 29,
+ "And among His signs is the creation of the heavens and the earth, and all living beings He dispersed throughout both. And He is Most Capable of bringing all together whenever He wills.",
+ 30,
+ "Whatever affliction befalls you is because of what your own hands have committed. And He pardons much.",
+ 31,
+ "You can never escape ˹Him˺ on earth, nor do you have any protector or helper besides Allah.",
+ 32,
+ "And among His signs are the ships like mountains ˹sailing˺ in the sea.",
+ 33,
+ "If He wills, He can calm the wind, leaving the ships motionless on the water. Surely in this are signs for whoever is steadfast, grateful.",
+ 34,
+ "Or He can wreck the ships for what the people have committed—though He forgives much—",
+ 35,
+ "so those who dispute about Our signs may know that they have no refuge.",
+ 36,
+ "Whatever ˹pleasure˺ you have been given is ˹no more than a fleeting˺ enjoyment of this worldly life. But what is with Allah is far better and more lasting for those who believe and put their trust in their Lord;",
+ 37,
+ "who avoid major sins and shameful deeds, and forgive when angered;",
+ 38,
+ "who respond to their Lord, establish prayer, conduct their affairs by mutual consultation, and donate from what We have provided for them;",
+ 39,
+ "and who enforce justice when wronged.",
+ 40,
+ "The reward of an evil deed is its equivalent. But whoever pardons and seeks reconciliation, then their reward is with Allah. He certainly does not like the wrongdoers.",
+ 41,
+ "There is no blame on those who enforce justice after being wronged.",
+ 42,
+ "Blame is only on those who wrong people and transgress in the land unjustly. It is they who will suffer a painful punishment.",
+ 43,
+ "And whoever endures patiently and forgives—surely this is a resolve to aspire to.",
+ 44,
+ "And whoever Allah leaves to stray will have no guide after Him. You will see the wrongdoers, when they face the torment, pleading, “Is there any way back ˹to the world˺?”",
+ 45,
+ "And you will see them exposed to the Fire, fully humbled out of disgrace, stealing glances ˹at it˺. And the believers will say, “The ˹true˺ losers are those who have lost themselves and their families on Judgment Day.” The wrongdoers will certainly be in everlasting torment.",
+ 46,
+ "They will have no protectors to help them against Allah. And whoever Allah leaves to stray, for them there is no way.",
+ 47,
+ "Respond to your Lord before the coming of a Day from Allah that cannot be averted. There will be no refuge for you then, nor ˹grounds for˺ denial ˹of sins˺.",
+ 48,
+ "But if they turn away, We have not sent you ˹O Prophet˺ as a keeper over them. Your duty is only to deliver ˹the message˺. And indeed, when We let someone taste a mercy from Us, they become prideful ˹because˺ of it. But when afflicted with evil because of what their hands have done, then one becomes totally ungrateful. ",
+ 49,
+ "To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He creates whatever He wills. He blesses whoever He wills with daughters, and blesses whoever He wills with sons,",
+ 50,
+ "or grants both, sons and daughters, ˹to whoever He wills˺, and leaves whoever He wills infertile. He is indeed All-Knowing, Most Capable.",
+ 51,
+ "It is not ˹possible˺ for a human being to have Allah communicate with them, except through inspiration, or from behind a veil, or by sending a messenger-angel to reveal whatever He wills by His permission. He is surely Most High, All-Wise.",
+ 52,
+ "And so We have sent to you ˹O Prophet˺ a revelation by Our command. You did not know of ˹this˺ Book and faith ˹before˺. But We have made it a light, by which We guide whoever We will of Our servants. And you are truly leading ˹all˺ to the Straight Path—",
+ 53,
+ "the Path of Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. Surely to Allah all matters will return ˹for judgment˺."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/43.json b/share/quran-json/TheQuran/en/43.json
new file mode 100644
index 0000000..f387fc8
--- /dev/null
+++ b/share/quran-json/TheQuran/en/43.json
@@ -0,0 +1,196 @@
+[
+ {
+ "id": "43",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Az-Zukhruf",
+ "translated_name": "The Ornaments of Gold",
+ "verse_count": 89,
+ "slug": "az-zukhruf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1586,
+ 1582,
+ 1585,
+ 1601
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "By the clear Book!",
+ 3,
+ "Certainly, We have made it a Quran in Arabic so perhaps you will understand.",
+ 4,
+ "And indeed, it is—in the Master Record with Us—highly esteemed, rich in wisdom.",
+ 5,
+ "Should We then turn the ˹Quranic˺ Reminder away from you ˹simply˺ because you have been a transgressing people?",
+ 6,
+ "˹Imagine˺ how many prophets We sent to those ˹destroyed˺ before!",
+ 7,
+ "But no prophet ever came to them without being mocked.",
+ 8,
+ "So We destroyed those who were far mightier than these ˹Meccans˺. The examples of ˹their˺ predecessors have ˹already˺ been related. ",
+ 9,
+ "If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, “The Almighty, All-Knowing did.”",
+ 10,
+ "˹He is the One˺ Who has laid out the earth for you, and set in it pathways for you so that you may find your way.",
+ 11,
+ "And ˹He is the One˺ Who sends down rain from the sky in perfect measure, with which We give life to a lifeless land. And so will you be brought forth ˹from the grave˺.",
+ 12,
+ "And ˹He is the One˺ Who created all ˹things in˺ pairs, and made for you ships and animals to ride",
+ 13,
+ "so that you may sit firmly on their backs, and remember your Lord’s blessings once you are settled on them, saying, “Glory be to the One Who has subjected these for us, for we could have never done so ˹on our own˺.",
+ 14,
+ "And surely to our Lord we will ˹all˺ return.”",
+ 15,
+ "Still the pagans have made some of His creation out to be a part of Him. Indeed, humankind is clearly ungrateful.",
+ 16,
+ "Has He taken ˹angels as His˺ daughters from what He created, and favoured you ˹O pagans˺ with sons?",
+ 17,
+ "Whenever one of them is given the good news of what they attribute to the Most Compassionate, his face grows gloomy, as he suppresses his rage.",
+ 18,
+ "˹Do they attribute to Him˺ those who are brought up in fineries and are not commanding in disputes?",
+ 19,
+ "Still they have labelled the angels, who are servants of the Most Compassionate, as female. Did they witness their creation? Their statement will be recorded, and they will be questioned!",
+ 20,
+ "And they argue, “Had the Most Compassionate willed, we would have never worshipped them.” They have no knowledge ˹in support˺ of this ˹claim˺. They do nothing but lie.",
+ 21,
+ "Or have We given them a Book ˹for proof˺, before this ˹Quran˺, to which they are holding firm?",
+ 22,
+ "In fact, they say, “We found our forefathers following a ˹particular˺ way, and we are following in their footsteps.”",
+ 23,
+ "Similarly, whenever We sent a warner to a society before you ˹O Prophet˺, its ˹spoiled˺ elite would say, “We found our forefathers following a ˹particular˺ way, and we are walking in their footsteps.”",
+ 24,
+ "Each ˹warner˺ asked, “Even if what I brought you is better guidance than what you found your forefathers practicing?” They replied, “We totally reject whatever you have been sent with.”",
+ 25,
+ "So We inflicted punishment upon them. See then what was the fate of the deniers!",
+ 26,
+ "˹Remember, O Prophet˺ when Abraham declared to his father and his people, “I am totally free of whatever ˹gods˺ you worship,",
+ 27,
+ "except the One Who originated me, and He will surely guide me.”",
+ 28,
+ "And he left this enduring declaration among his descendants, so they may ˹always˺ turn back ˹to Allah˺. ",
+ 29,
+ "In fact, I had allowed enjoyment for these ˹Meccans˺ and their forefathers, until the truth came to them along with a messenger making things clear.",
+ 30,
+ "˹But˺ when the truth came to them, they said, “This is magic, and we totally reject it.”",
+ 31,
+ "And they exclaimed, “If only this Quran was revealed to a great man from ˹one of˺ the two cities!”",
+ 32,
+ "Is it they who distribute your Lord’s mercy? We ˹alone˺ have distributed their ˹very˺ livelihood among them in this worldly life and raised some of them in rank above others so that some may employ others in service. ˹But˺ your Lord’s mercy is far better than whatever ˹wealth˺ they amass.",
+ 33,
+ "Were it not that people might ˹be tempted to˺ become one community ˹of disbelievers˺, We would have supplied the homes of ˹only˺ those who disbelieve in the Most Compassionate with silver roofs and ˹silver˺ stairways to ascend,",
+ 34,
+ "as well as ˹silver˺ gates and thrones to recline on,",
+ 35,
+ "and ornaments ˹of gold˺. Yet all this is no more than a ˹fleeting˺ enjoyment in this worldly life. ˹But˺ the Hereafter with your Lord is ˹only˺ for those mindful ˹of Him˺.",
+ 36,
+ "And whoever turns a blind eye to the Reminder of the Most Compassionate, We place at the disposal of each a devilish one as their close associate,",
+ 37,
+ "who will certainly hinder them from the ˹Right˺ Way while they think they are ˹rightly˺ guided.",
+ 38,
+ "But when such a person comes to Us, one will say ˹to their associate˺, “I wish you were as distant from me as the east is from the west! What an evil associate ˹you were˺!”",
+ 39,
+ "˹It will be said to both,˺ “Since you all did wrong, sharing in the punishment will be of no benefit to you this Day.” ",
+ 40,
+ "Can you make the deaf hear, or guide the blind or those clearly astray?",
+ 41,
+ "Even if We take you away ˹from this world˺, We will surely inflict punishment upon them.",
+ 42,
+ "Or if We show you what We threaten them with, We certainly have full power over them.",
+ 43,
+ "So hold firmly to what has been revealed to you ˹O Prophet˺. You are truly on the Straight Path.",
+ 44,
+ "Surely this ˹Quran˺ is a glory for you and your people. And you will ˹all˺ be questioned ˹about it˺.",
+ 45,
+ "Ask ˹the followers of˺ the messengers that We already sent before you if We ˹ever˺ appointed ˹other˺ gods to be worshipped besides the Most Compassionate.",
+ 46,
+ "Indeed, We sent Moses with Our signs to Pharaoh and his chiefs, and he said: “I am a messenger of the Lord of all worlds.”",
+ 47,
+ "But as soon as he came to them with Our signs, they laughed at them,",
+ 48,
+ "although every sign We showed them was greater than the one before. Ultimately, We seized them with torments so that they might return ˹to the Right Path˺.",
+ 49,
+ "˹Then˺ they pleaded, “O ˹mighty˺ magician! Pray to your Lord on our behalf, by virtue of the covenant He made with you. We will certainly accept guidance.”",
+ 50,
+ "But as soon as We removed the torments from them, they broke their promise.",
+ 51,
+ "And Pharaoh called out to his people, boasting, “O my people! Am I not sovereign over Egypt as well as ˹all˺ these streams flowing at my feet? Can you not see?",
+ 52,
+ "Am I not better than this nobody who can hardly express himself?",
+ 53,
+ "Why then have no golden bracelets ˹of kingship˺ been granted to him or angels come with him as escorts!”",
+ 54,
+ "And so he fooled his people, and they obeyed him. They were truly a rebellious people.",
+ 55,
+ "So when they enraged Us, We inflicted punishment upon them, drowning them all.",
+ 56,
+ "And We made them an example and a lesson for those after them.",
+ 57,
+ "When the son of Mary was cited as an example ˹in argument˺, your people ˹O Prophet˺ broke into ˹joyful˺ applause.",
+ 58,
+ "They exclaimed, “Which is better: our gods or Jesus?” They cite him only to argue. In fact, they are a people prone to dispute.",
+ 59,
+ "He was only a servant We showed favour to, and made as an example for the Children of Israel.",
+ 60,
+ "Had We willed, We could have easily replaced you ˹all˺ with angels, succeeding one another on earth.",
+ 61,
+ "And his ˹second˺ coming is truly a sign for the Hour. So have no doubt about it, and follow me. This is the Straight Path.",
+ 62,
+ "And do not let Satan hinder you, ˹for˺ he is certainly your sworn enemy.",
+ 63,
+ "When Jesus came with clear proofs, he declared, “I have come to you with wisdom, and to clarify to you some of what you differ about. So fear Allah, and obey me.",
+ 64,
+ "Surely Allah ˹alone˺ is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path.”",
+ 65,
+ "Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the wrongdoers when they face the torment of a painful Day!",
+ 66,
+ "Are they waiting for the Hour to take them by surprise when they least expect ˹it˺?",
+ 67,
+ "Close friends will be enemies to one another on that Day, except the righteous,",
+ 68,
+ "˹who will be told,˺ “O My servants! There is no fear for you Today, nor will you grieve—",
+ 69,
+ "˹those˺ who believed in Our signs and ˹fully˺ submitted ˹to Us˺.",
+ 70,
+ "Enter Paradise, you and your spouses, rejoicing.”",
+ 71,
+ "Golden trays and cups will be passed around to them. There will be whatever the souls desire and the eyes delight in. And you will be there forever.",
+ 72,
+ "That is the Paradise which you will be awarded for what you used to do.",
+ 73,
+ "There you will have abundant fruit to eat from.",
+ 74,
+ "Indeed, the wicked will be in the torment of Hell forever.",
+ 75,
+ "It will never be lightened for them, and there they will be overwhelmed with despair.",
+ 76,
+ "We did not wrong them, but it was they who were the wrongdoers.",
+ 77,
+ "They will cry, “O Mâlik! Let your Lord finish us off.” He will answer, “You are definitely here to stay.”",
+ 78,
+ "We certainly brought the truth to you, but most of you were resentful of the truth.",
+ 79,
+ "Or have they mastered some ˹evil˺ plan? Then We ˹too˺ are surely planning.",
+ 80,
+ "Or do they think that We do not hear their ˹evil˺ thoughts and secret talks? Yes ˹We do˺! And Our messenger-angels are in their presence, recording ˹it all˺.",
+ 81,
+ "Say, ˹O Prophet,˺ “If the Most Compassionate ˹really˺ had offspring, I would be the first worshipper.”",
+ 82,
+ "Glorified is the Lord of the heavens and the earth, the Lord of the Throne, far above what they claim.",
+ 83,
+ "So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been warned of.",
+ 84,
+ "It is He Who is ˹the only˺ God in the heavens and ˹the only˺ God on the earth. For He is the All-Wise, All-Knowing.",
+ 85,
+ "And Blessed is the One to Whom belongs the kingdom of the heavens and the earth and everything in between! With Him ˹alone˺ is the knowledge of the Hour. And to Him you will ˹all˺ be returned.",
+ 86,
+ "˹But˺ those ˹objects of worship˺ they invoke besides Him have no power to intercede, except those who testify to the truth knowingly.",
+ 87,
+ "If you ask them ˹O Prophet˺ who created them, they will certainly say, “Allah!” How can they then be deluded ˹from the truth˺?",
+ 88,
+ "˹Allah is Aware of˺ the Prophet’s cry: “O my Lord! Indeed, these are a people who persist in disbelief.”",
+ 89,
+ "So bear with them and respond with peace. They will soon come to know."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/44.json b/share/quran-json/TheQuran/en/44.json
new file mode 100644
index 0000000..b17231b
--- /dev/null
+++ b/share/quran-json/TheQuran/en/44.json
@@ -0,0 +1,136 @@
+[
+ {
+ "id": "44",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ad-Dukhan",
+ "translated_name": "The Smoke",
+ "verse_count": 59,
+ "slug": "ad-dukhan",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1583,
+ 1582,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "By the clear Book!",
+ 3,
+ "Indeed, We sent it down on a blessed night, for We always warn ˹against evil˺.",
+ 4,
+ "On that night every matter of wisdom is ordained",
+ 5,
+ "by a command from Us, for We have always sent ˹messengers˺",
+ 6,
+ "as a mercy from your Lord. He ˹alone˺ is truly the All-Hearing, All-Knowing—",
+ 7,
+ "the Lord of the heavens and the earth and everything in between, if only you had sure faith.",
+ 8,
+ "There is no god ˹worthy of worship˺ except Him. He ˹alone˺ gives life and causes death. ˹He is˺ your Lord, and the Lord of your forefathers.",
+ 9,
+ "In fact, they are in doubt, amusing themselves.",
+ 10,
+ "Wait then ˹O Prophet˺ for the day ˹when˺ the sky will be veiled in haze, clearly visible,",
+ 11,
+ "overwhelming the people. ˹They will cry,˺ “This is a painful torment.",
+ 12,
+ "Our Lord! Remove ˹this˺ torment from us, ˹and˺ we will certainly believe.”",
+ 13,
+ "How can they be reminded when a messenger has already come to them, making things clear,",
+ 14,
+ "then they turned away from him, saying, “A madman, taught by others!”?",
+ 15,
+ "Indeed, We will remove ˹that˺ torment for a while, and you ˹Meccans˺ will return ˹to disbelief˺.",
+ 16,
+ "˹Then˺ on the Day We will deal ˹you˺ the fiercest blow, We will surely inflict punishment.",
+ 17,
+ "Indeed, before them We tested Pharaoh’s people: a noble messenger came to them,",
+ 18,
+ "˹proclaiming,˺ “Hand over the servants of Allah to me. I am truly a trustworthy messenger to you.",
+ 19,
+ "And do not be arrogant with Allah. I have certainly come to you with a compelling proof.",
+ 20,
+ "And indeed, I seek refuge with my Lord and your Lord so you do not stone me ˹to death˺.",
+ 21,
+ "˹But˺ if you do not believe me, then let me be.”",
+ 22,
+ "Ultimately, he cried out to his Lord, “These are a wicked people!”",
+ 23,
+ "˹Allah responded,˺ “Leave with My servants at night, for you will surely be pursued.",
+ 24,
+ "And leave the sea parted, for they are certainly an army bound to drown.”",
+ 25,
+ "˹Imagine˺ how many gardens and springs the tyrants left behind,",
+ 26,
+ "as well as ˹various˺ crops and splendid residences,",
+ 27,
+ "and luxuries which they fully enjoyed.",
+ 28,
+ "So it was. And We awarded it ˹all˺ to another people.",
+ 29,
+ "Neither heaven nor earth wept over them, nor was their fate delayed.",
+ 30,
+ "And We certainly delivered the Children of Israel from the humiliating torment",
+ 31,
+ "of Pharaoh. He was truly a tyrant, a transgressor.",
+ 32,
+ "And indeed, We chose the Israelites knowingly above the others.",
+ 33,
+ "And We showed them signs in which there was a clear test.",
+ 34,
+ "Indeed, these ˹Meccans˺ say,",
+ 35,
+ "“There is nothing beyond our first death, and we will never be resurrected.",
+ 36,
+ "Bring ˹back˺ our forefathers, if what you say is true.”",
+ 37,
+ "Are they superior to the people of Tubba’ and those before them? We destroyed them ˹all˺, ˹for˺ they were truly wicked.",
+ 38,
+ "We did not create the heavens and the earth and everything in between for sport.",
+ 39,
+ "We only created them for a purpose, but most of these ˹pagans˺ do not know.",
+ 40,
+ "Surely the Day of ˹Final˺ Decision is the time appointed for all—",
+ 41,
+ "the Day no kith or kin will be of benefit to another whatsoever, nor will they be helped,",
+ 42,
+ "except those shown mercy by Allah. He is truly the Almighty, Most Merciful.",
+ 43,
+ "Surely ˹the fruit of˺ the tree of Zaqqûm",
+ 44,
+ "will be the food of the evildoer.",
+ 45,
+ "Like molten metal, it will boil in the bellies",
+ 46,
+ "like the boiling of hot water.",
+ 47,
+ "˹It will be said,˺ “Seize them and drag them into the depths of the Hellfire.",
+ 48,
+ "Then pour over their heads the torment of boiling water.”",
+ 49,
+ "˹The wicked will be told,˺ “Taste this. You mighty, noble one!",
+ 50,
+ "This is truly what you ˹all˺ used to doubt.”",
+ 51,
+ "Indeed, the righteous will be in a secure place,",
+ 52,
+ "amid Gardens and springs,",
+ 53,
+ "dressed in fine silk and rich brocade, facing one another.",
+ 54,
+ "So it will be. And We will pair them to maidens with gorgeous eyes.",
+ 55,
+ "There they will call for every fruit in serenity.",
+ 56,
+ "There they will never taste death, beyond the first death. And He will protect them from the punishment of the Hellfire—",
+ 57,
+ "as ˹an act of˺ grace from your Lord. That is ˹truly˺ the ultimate triumph.",
+ 58,
+ "Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so perhaps they will be mindful.",
+ 59,
+ "Wait then! They too are certainly waiting."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/45.json b/share/quran-json/TheQuran/en/45.json
new file mode 100644
index 0000000..262212a
--- /dev/null
+++ b/share/quran-json/TheQuran/en/45.json
@@ -0,0 +1,93 @@
+[
+ {
+ "id": "45",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Jathiyah",
+ "translated_name": "The Crouching",
+ "verse_count": 37,
+ "slug": "al-jathiyah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1580,
+ 1575,
+ 1579,
+ 1610,
+ 1577
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "The revelation of this Book is from Allah—the Almighty, All-Wise.",
+ 3,
+ "Surely in ˹the creation of˺ the heavens and the earth are signs for the believers.",
+ 4,
+ "And in your own creation, and whatever living beings He dispersed, are signs for people of sure faith.",
+ 5,
+ "And ˹in˺ the alternation of the day and the night, the provision sent down from the skies by Allah—reviving the earth after its death—and the shifting of the winds, are signs for people of understanding.",
+ 6,
+ "These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. So what message will they believe in after ˹denying˺ Allah and His revelations?",
+ 7,
+ "Woe to every sinful liar.",
+ 8,
+ "They hear Allah’s revelations recited to them, then persist ˹in denial˺ arrogantly as if they did not hear them. So give them good news of a painful punishment.",
+ 9,
+ "And whenever they learn anything of Our revelations, they make a mockery of it. It is they who will suffer a humiliating punishment.",
+ 10,
+ "Awaiting them is Hell. Their ˹worldly˺ gains will not be of any benefit to them whatsoever, nor will those protectors they have taken besides Allah. And they will suffer a tremendous punishment.",
+ 11,
+ "This ˹Quran˺ is ˹true˺ guidance. And those who deny their Lord’s revelations will suffer the ˹worst˺ torment of agonizing pain.",
+ 12,
+ "Allah is the One Who has subjected the sea for you so that ships may sail upon it by His command, and that you may seek His bounty, and that perhaps you will be grateful.",
+ 13,
+ "He ˹also˺ subjected for you whatever is in the heavens and whatever is on the earth—all by His grace. Surely in this are signs for people who reflect.",
+ 14,
+ "˹O Prophet!˺ Tell the believers to forgive those who do not fear Allah’s days ˹of torment˺, so that He will reward each group for what they used to commit.",
+ 15,
+ "Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Then to your Lord you will ˹all˺ be returned.",
+ 16,
+ "Indeed, We gave the Children of Israel the Scripture, wisdom, and prophethood; granted them good, lawful provisions; and favoured them above the others.",
+ 17,
+ "We ˹also˺ gave them clear commandments regarding ˹their˺ faith. But it was not until knowledge came to them that they differed out of mutual envy. Surely your Lord will judge between them on the Day of Judgment regarding their differences.",
+ 18,
+ "Now We have set you ˹O Prophet˺ on the ˹clear˺ Way of faith. So follow it, and do not follow the desires of those who do not know ˹the truth˺.",
+ 19,
+ "They certainly can be of no benefit to you against Allah whatsoever. Surely the wrongdoers are patrons of each other, whereas Allah is the Patron of the righteous.",
+ 20,
+ "This ˹Quran˺ is an insight for humanity—a guide and mercy for people of sure faith.",
+ 21,
+ "Or do those who commit evil deeds ˹simply˺ think that We will make them equal—in their life and after their death—to those who believe and do good? How wrong is their judgment!",
+ 22,
+ "For Allah created the heavens and the earth for a purpose, so that every soul may be paid back for what it has committed. And none will be wronged.",
+ 23,
+ "Have you seen ˹O Prophet˺ those who have taken their own desires as their god? ˹And so˺ Allah left them to stray knowingly, sealed their hearing and hearts, and placed a cover on their sight. Who then can guide them after Allah? Will you ˹all˺ not then be mindful?",
+ 24,
+ "And they argue, “There is nothing beyond our worldly life. We die; others are born. And nothing destroys us but ˹the passage of˺ time.” Yet they have no knowledge ˹in support˺ of this ˹claim˺. They only speculate.",
+ 25,
+ "And whenever Our clear revelations are recited to them, their only argument is to say: “Bring our forefathers back, if what you say is true!”",
+ 26,
+ "Say, ˹O Prophet,˺ “˹It is˺ Allah ˹Who˺ gives you life, then causes you to die, then will gather you ˹all˺ on the Day of Judgment, about which there is no doubt. But most people do not know.”",
+ 27,
+ "To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. On the Day the Hour will be established, the people of falsehood will then be in ˹total˺ loss.",
+ 28,
+ "And you will see every faith-community on its knees. Every community will be summoned to its record ˹of deeds˺. ˹They all will be told,˺ “This Day you will be rewarded for what you used to do.",
+ 29,
+ "This record of Ours speaks the truth about you. Indeed, We always had your deeds recorded ˹by the angels˺.”",
+ 30,
+ "As for those who believed and did good, their Lord will admit them into His mercy. That is ˹truly˺ the absolute triumph.",
+ 31,
+ "And as for those who disbelieved, ˹they will be told,˺ “Were My revelations not recited to you, yet you acted arrogantly and were a wicked people?",
+ 32,
+ "And whenever it was said ˹to you˺, ‘Surely Allah’s promise ˹of judgment˺ is true and there is no doubt about the Hour,’ you said ˹mockingly˺, ‘We do not know what the Hour is! We think it is no more than speculation, and we are not convinced ˹that it will ever come˺.’”",
+ 33,
+ "And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.",
+ 34,
+ "It will be said, “This Day We will neglect you as you neglected the meeting of this Day of yours! Your home will be the Fire, and you will have no helpers.",
+ 35,
+ "This is because you made a mockery of Allah’s revelations, and were deluded by ˹your˺ worldly life.” So ˹from˺ that Day ˹on˺ they will not be taken out of the Fire, nor will they be allowed to appease ˹their Lord˺.",
+ 36,
+ "So all praise is for Allah—Lord of the heavens and Lord of the earth, Lord of all worlds.",
+ 37,
+ "To Him belongs ˹all˺ Majesty in the heavens and the earth. And He is the Almighty, All-Wise."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/46.json b/share/quran-json/TheQuran/en/46.json
new file mode 100644
index 0000000..5bfb794
--- /dev/null
+++ b/share/quran-json/TheQuran/en/46.json
@@ -0,0 +1,89 @@
+[
+ {
+ "id": "46",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Ahqaf",
+ "translated_name": "The Wind-Curved Sandhills",
+ "verse_count": 35,
+ "slug": "al-ahqaf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1581,
+ 1602,
+ 1575,
+ 1601
+ ]
+ },
+ 1,
+ "Ḥâ-Mĩm.",
+ 2,
+ "The revelation of this Book is from Allah—the Almighty, All-Wise.",
+ 3,
+ "We only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet the disbelievers are turning away from what they have been warned about.",
+ 4,
+ "Ask ˹them, O Prophet˺, “Have you considered whatever ˹idols˺ you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Bring me a scripture ˹revealed˺ before this ˹Quran˺ or a shred of knowledge, if what you say is true.”",
+ 5,
+ "And who could be more astray than those who call upon others besides Allah—˹others˺ that cannot respond to them until the Day of Judgment, and are ˹even˺ unaware of their calls?",
+ 6,
+ "And when ˹such˺ people will be gathered together, those ˹gods˺ will be their enemies and will disown their worship.",
+ 7,
+ "Whenever Our clear revelations are recited to them, the disbelievers say of the truth when it has come to them, “This is pure magic.”",
+ 8,
+ "Or do they say, “He has fabricated this ˹Quran˺!”? Say, ˹O Prophet,˺ “If I have done so, then there is nothing whatsoever you can do to save me from Allah. He knows best what ˹slurs˺ you indulge about it. Sufficient is He as a Witness between you and me. And He is the All-Forgiving, Most Merciful.”",
+ 9,
+ "Say, “I am not the first messenger ever sent, nor do I know what will happen to me or you. I only follow what is revealed to me. And I am only sent with a clear warning.”",
+ 10,
+ "Ask ˹them, O Prophet˺, “Consider if this ˹Quran˺ is ˹truly˺ from Allah and you deny it, and a witness from the Children of Israel attests to it and then believes, whereas you act arrogantly. Surely Allah does not guide the wrongdoing people.”",
+ 11,
+ "The disbelievers say of the believers, “Had it been ˹something˺ good, they would not have beaten us to it.” Now since they reject its guidance, they will say, “˹This is˺ an ancient fabrication!”",
+ 12,
+ "And before this ˹Quran˺ the Book of Moses was ˹revealed as˺ a guide and mercy. And this Book is a confirmation, in the Arabic tongue, to warn those who do wrong, and as good news to those who do good.",
+ 13,
+ "Surely those who say, “Our Lord is Allah,” and then remain steadfast—there will be no fear for them, nor will they grieve.",
+ 14,
+ "It is they who will be the residents of Paradise, staying there forever, as a reward for what they used to do.",
+ 15,
+ "We have commanded people to honour their parents. Their mothers bore them in hardship and delivered them in hardship. Their ˹period of˺ bearing and weaning is thirty months. In time, when the child reaches their prime at the age of forty, they pray, “My Lord! Inspire me to ˹always˺ be thankful for Your favours which You blessed me and my parents with, and to do good deeds that please You. And instil righteousness in my offspring. I truly repent to You, and I truly submit ˹to Your Will˺.”",
+ 16,
+ "It is from these ˹people˺ that We will accept the good they did, and overlook their misdeeds—along with the residents of Paradise, ˹in fulfilment of˺ the true promise they have been given.",
+ 17,
+ "But some scold their parents, “Enough with you! Are you warning me that I will be brought forth ˹from the grave˺, while many generations had already perished before me ˹for good˺?” The parents cry to Allah for help, ˹and warn their child,˺ “Pity you. Have faith! Surely Allah’s promise is true.” But the deniers insist, “This is nothing but ancient fables.”",
+ 18,
+ "These are the ones against whom the fate of earlier communities of jinn and humans has been justified, ˹for˺ they were truly losers.",
+ 19,
+ "Each ˹of the two groups˺ will be ranked according to what they have done so He may fully reward all. And none will be wronged.",
+ 20,
+ "˹Watch for˺ the Day ˹when˺ the disbelievers will be exposed to the Fire. ˹They will be told,˺ “You ˹already˺ exhausted your ˹share of˺ pleasures during your worldly life, and ˹fully˺ enjoyed them. So Today you will be rewarded with the torment of disgrace for your arrogance throughout the land with no right, and for your rebelliousness.”",
+ 21,
+ "And remember the brother of ’Ȃd, when he warned his people, who inhabited the sand-hills—there were certainly warners before and after him—˹saying,˺ “Worship none but Allah. I truly fear for you the torment of a tremendous day.”",
+ 22,
+ "They argued, “Have you come to turn us away from our gods? Bring us then whatever you threaten us with, if what you say is true.”",
+ 23,
+ "He responded, “The knowledge ˹of its time˺ is only with Allah. I only convey to you what I have been sent with. But I can see that you are a people acting ignorantly.”",
+ 24,
+ "Then when they saw the torment as a ˹dense˺ cloud approaching their valleys, they said ˹happily˺, “This is a cloud bringing us rain.” ˹But Hûd replied,˺ “No, it is what you sought to hasten: a ˹fierce˺ wind carrying a painful punishment!”",
+ 25,
+ "It destroyed everything by the command of its Lord, leaving nothing visible except their ruins. This is how We reward the wicked people.",
+ 26,
+ "Indeed, We had established them in a way We have not established you ˹Meccans˺. And We gave them hearing, sight, and intellect. But neither their hearing, sight, nor intellect were of any benefit to them whatsoever, since they persisted in denying Allah’s signs. And ˹so˺ they were overwhelmed by what they used to ridicule.",
+ 27,
+ "We certainly destroyed the societies around you after having varied the signs so perhaps they would return ˹to the Right Path˺.",
+ 28,
+ "Why then did those ˹idols˺ they took as gods—hoping to get closer ˹to Him˺—not come to their aid? Instead, they failed them. That is ˹the result of˺ their lies and their fabrications.",
+ 29,
+ "˹Remember, O Prophet,˺ when We sent a group of jinn your way to listen to the Quran. Then, upon hearing it, they said ˹to one another˺, “Listen quietly!” Then when it was over, they returned to their fellow jinn as warners.",
+ 30,
+ "They declared, “O our fellow jinn! We have truly heard a scripture revealed after Moses, confirming what came before it. It guides to the truth and the Straight Way.",
+ 31,
+ "O our fellow jinn! Respond to the caller of Allah and believe in him, He will forgive your sins and protect you from a painful punishment.",
+ 32,
+ "And whoever does not respond to the caller of Allah will have no escape on earth, nor will they have any protectors against Him. It is they who are clearly astray.”",
+ 33,
+ "Do they not realize that Allah, Who created the heavens and the earth and did not tire in creating them, is able to give life to the dead? Yes ˹indeed˺! He is certainly Most Capable of everything.",
+ 34,
+ "And on the Day the disbelievers will be exposed to the Fire, ˹they will be asked,˺ “Is this ˹Hereafter˺ not the truth?” They will cry, “Absolutely, by our Lord!” It will be said, “Then taste the punishment for your disbelief.”",
+ 35,
+ "So endure patiently, as did the Messengers of Firm Resolve. And do not ˹seek to˺ hasten ˹the torment˺ for the deniers. On the Day they see what they have been threatened with, it will be as if they had only stayed ˹in this world˺ for an hour of a day. ˹This is˺ a ˹sufficient˺ warning! Then, will anyone be destroyed except the rebellious people?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/47.json b/share/quran-json/TheQuran/en/47.json
new file mode 100644
index 0000000..1810445
--- /dev/null
+++ b/share/quran-json/TheQuran/en/47.json
@@ -0,0 +1,92 @@
+[
+ {
+ "id": "47",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Muhammad",
+ "translated_name": "Muhammad",
+ "verse_count": 38,
+ "slug": "muhammad",
+ "codepoints": [
+ 1605,
+ 1581,
+ 1605,
+ 1583
+ ]
+ },
+ 1,
+ "Those who disbelieve and hinder ˹others˺ from the Way of Allah, He will render their deeds void.",
+ 2,
+ "As for those who believe, do good, and have faith in what has been revealed to Muḥammad—which is the truth from their Lord—He will absolve them of their sins and improve their condition.",
+ 3,
+ "This is because the disbelievers follow falsehood, while the believers follow the truth from their Lord. This is how Allah shows people their true state ˹of faith˺.",
+ 4,
+ "So when you meet the disbelievers ˹in battle˺, strike ˹their˺ necks until you have thoroughly subdued them, then bind them firmly. Later ˹free them either as˺ an act of grace or by ransom until the war comes to an end. So will it be. Had Allah willed, He ˹Himself˺ could have inflicted punishment on them. But He does ˹this only to˺ test some of you by means of others. And those who are martyred in the cause of Allah, He will never render their deeds void.",
+ 5,
+ "He will guide them ˹to their reward˺, improve their condition,",
+ 6,
+ "and admit them into Paradise, having made it known to them. ",
+ 7,
+ "O believers! If you stand up for Allah, He will help you and make your steps firm.",
+ 8,
+ "As for the disbelievers, may they be doomed and may He render their deeds void.",
+ 9,
+ "That is because they detest what Allah has revealed, so He has rendered their deeds void.",
+ 10,
+ "Have they not travelled throughout the land to see what was the end of those before them? Allah annihilated them, and a similar fate awaits the disbelievers.",
+ 11,
+ "This is because Allah is the Patron of the believers while the disbelievers have no patron.",
+ 12,
+ "Surely Allah will admit those who believe and do good into Gardens under which rivers flow. As for the disbelievers, they enjoy themselves and feed like cattle. But the Fire will be their home.",
+ 13,
+ "˹Imagine, O Prophet,˺ how many societies We destroyed that were far superior in might than your society—which drove you out—and there was none to help them!",
+ 14,
+ "Can those ˹believers˺ who stand on clear proof from their Lord be like those whose evil deeds are made appealing to them and ˹only˺ follow their desires?",
+ 15,
+ "The description of the Paradise promised to the righteous is that in it are rivers of fresh water, rivers of milk that never changes in taste, rivers of wine delicious to drink, and rivers of pure honey. There they will ˹also˺ have all kinds of fruit, and forgiveness from their Lord. ˹Can they be˺ like those who will stay in the Fire forever, left to drink boiling water that will tear apart their insides?",
+ 16,
+ "There are some of them who listen to you ˹O Prophet˺, but when they depart from you, they say ˹mockingly˺ to those ˹believers˺ gifted with knowledge, “What did he just say?” These are the ones whose hearts Allah has sealed and who ˹only˺ follow their desires.",
+ 17,
+ "As for those who are ˹rightly˺ guided, He increases them in guidance and blesses them with righteousness.",
+ 18,
+ "Are they only waiting for the Hour to take them by surprise? Yet ˹some of˺ its signs have already come. Once it actually befalls them, will it not be too late to be mindful?",
+ 19,
+ "So, know ˹well, O Prophet,˺ that there is no god ˹worthy of worship˺ except Allah. And seek forgiveness for your shortcomings and for ˹the sins of˺ the believing men and women. For Allah ˹fully˺ knows your movements and places of rest ˹O people˺.",
+ 20,
+ "And the believers say, “If only a sûrah was revealed ˹allowing self-defence˺!” Yet when a precise sûrah is revealed, in which fighting is ˹explicitly˺ mentioned, you see those with sickness in their hearts staring at you like someone in the throes of death. It would have been better for them",
+ 21,
+ "to obey and speak rightly. Then when fighting was ordained, it surely would have been better for them if they were true to Allah.",
+ 22,
+ "Now if you ˹hypocrites˺ turn away, perhaps you would then spread corruption throughout the land and sever your ˹ties of˺ kinship!",
+ 23,
+ "These are the ones who Allah has condemned, deafening them and blinding their eyes.",
+ 24,
+ "Do they not then reflect on the Quran? Or are there locks upon their hearts?",
+ 25,
+ "Indeed, those who relapse ˹into disbelief˺ after ˹true˺ guidance has become clear to them, ˹it is˺ Satan ˹that˺ has tempted them, luring them with false hopes.",
+ 26,
+ "That is because they said ˹privately˺ to those who ˹also˺ detest what Allah has revealed, “We will obey you in some matters.” But Allah ˹fully˺ knows what they are hiding.",
+ 27,
+ "Then how ˹horrible˺ will it be when the angels take their souls, beating their faces and backs!",
+ 28,
+ "This is because they follow whatever displeases Allah and hate whatever pleases Him, so He has rendered their deeds void.",
+ 29,
+ "Or do those with sickness in their hearts think that Allah will not ˹be able to˺ expose their malice?",
+ 30,
+ "Had We willed, We could have truly shown them to you ˹O Prophet˺, and you would have certainly recognized them by their appearance. But you will surely recognize them by their tone of speech. And Allah ˹fully˺ knows your doings ˹O people˺.",
+ 31,
+ "We will certainly test you ˹believers˺ until We prove those of you who ˹truly˺ struggle ˹in Allah’s cause˺ and remain steadfast, and reveal how you conduct yourselves.",
+ 32,
+ "Indeed, those who disbelieve, hinder ˹others˺ from the Way of Allah, and defy the Messenger after ˹true˺ guidance has become clear to them; they will not harm Allah in the least, but He will render their deeds void.",
+ 33,
+ "O believers! Obey Allah and obey the Messenger, and do not let your deeds be in vain.",
+ 34,
+ "Surely those who disbelieve, hinder ˹others˺ from the Way of Allah, and then die as disbelievers; Allah will never forgive them.",
+ 35,
+ "So do not falter or cry for peace, for you will have the upper hand and Allah is with you. And He will never let your deeds go to waste.",
+ 36,
+ "This worldly life is no more than play and amusement. But if you are faithful and mindful ˹of Allah˺, He will grant you your ˹full˺ reward, and will not ask you ˹to donate all˺ your wealth.",
+ 37,
+ "If He were to do so and pressure you, you would withhold and He would bring out your resentment.",
+ 38,
+ "Here you are, being invited to donate ˹a little˺ in the cause of Allah. Still some of you withhold. And whoever does so, it is only to their own loss. For Allah is the Self-Sufficient, whereas you stand in need ˹of Him˺. If you ˹still˺ turn away, He will replace you with another people. And they will not be like you."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/48.json b/share/quran-json/TheQuran/en/48.json
new file mode 100644
index 0000000..fc27052
--- /dev/null
+++ b/share/quran-json/TheQuran/en/48.json
@@ -0,0 +1,75 @@
+[
+ {
+ "id": "48",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Fath",
+ "translated_name": "The Victory",
+ "verse_count": 29,
+ "slug": "al-fath",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1578,
+ 1581
+ ]
+ },
+ 1,
+ "Indeed, We have granted you a clear triumph ˹O Prophet˺",
+ 2,
+ "so that Allah may forgive you for your past and future shortcomings, perfect His favour upon you, guide you along the Straight Path,",
+ 3,
+ "and so that Allah will help you tremendously.",
+ 4,
+ "He is the One Who sent down serenity upon the hearts of the believers so that they may increase even more in their faith. To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is All-Knowing, All-Wise.",
+ 5,
+ "So He may admit believing men and women into Gardens under which rivers flow—to stay there forever—and absolve them of their sins. And that is a supreme achievement in the sight of Allah.",
+ 6,
+ "Also ˹so that˺ He may punish hypocrite men and women and polytheistic men and women, who harbour evil thoughts of Allah. May ill-fate befall them! Allah is displeased with them. He has condemned them and prepared for them Hell. What an evil destination!",
+ 7,
+ "To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is Almighty, All-Wise.",
+ 8,
+ "Indeed, ˹O Prophet,˺ We have sent you as a witness, a deliverer of good news, and a warner,",
+ 9,
+ "so that you ˹believers˺ may have faith in Allah and His Messenger, support and honour him, and glorify Allah morning and evening. ",
+ 10,
+ "Surely those who pledge allegiance to you ˹O Prophet˺ are actually pledging allegiance to Allah. Allah’s Hand is over theirs. Whoever breaks their pledge, it will only be to their own loss. And whoever fulfils their pledge to Allah, He will grant them a great reward.",
+ 11,
+ "The nomadic Arabs, who stayed behind, will say to you ˹O Prophet˺, “We were preoccupied with our wealth and families, so ask for forgiveness for us.” They say with their tongues what is not in their hearts. Say, “Who then can stand between you and Allah in any way, if He intends harm or benefit for you? In fact, Allah is All-Aware of what you do.",
+ 12,
+ "The truth is: you thought that the Messenger and the believers would never return to their families again. And that was made appealing in your hearts. You harboured evil thoughts ˹about Allah˺, and ˹so˺ became a doomed people.”",
+ 13,
+ "And whoever does not believe in Allah and His Messenger, then We surely have prepared for the disbelievers a blazing Fire.",
+ 14,
+ "To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.",
+ 15,
+ "Those who stayed behind will say, when you ˹believers˺ set out to take the spoils of war, “Let us accompany you.” They wish to change Allah’s promise. Say, ˹O Prophet,˺ “You will not accompany us. This is what Allah has said before.” They will then say, “In fact, you are driven by jealousy against us!” The truth is: they can hardly comprehend.",
+ 16,
+ "Say to nomadic Arabs, who stayed behind, “You will be called ˹to fight˺ against a people of great might, who you will fight unless they submit. If you then obey, Allah will grant you a fine reward. But if you turn away as you did before, He will inflict upon you a painful punishment.”",
+ 17,
+ "There is no blame on the blind, or the disabled, or the sick ˹for staying behind˺. And whoever obeys Allah and His Messenger will be admitted by Him into Gardens under which rivers flow. But whoever turns away will be subjected by Him to a painful punishment.",
+ 18,
+ "Indeed, Allah was pleased with the believers when they pledged allegiance to you ˹O Prophet˺ under the tree. He knew what was in their hearts, so He sent down serenity upon them and rewarded them with a victory at hand,",
+ 19,
+ "and many spoils of war they will gain. For Allah is Almighty, All-Wise.",
+ 20,
+ "Allah has promised you ˹believers˺ abundant spoils, which you will gain, so He hastened this ˹truce˺ for you. And He has held people’s hands back from ˹harming˺ you, so it may be a sign for the believers, and so He may guide you along the Straight Path.",
+ 21,
+ "And ˹there are˺ other gains which are beyond your reach that Allah is keeping in store ˹for you˺. For Allah is Most Capable of everything.",
+ 22,
+ "If the disbelievers were to fight you, they would certainly flee. Then they would never find any protector or helper.",
+ 23,
+ "˹This is˺ Allah’s way, already long established ˹in the past˺. And you will find no change in Allah’s way.",
+ 24,
+ "He is the One Who held back their hands from you and your hands from them in the valley of ˹Ḥudaibiyah, near˺ Mecca, after giving you the upper hand over ˹a group of˺ them. And Allah is All-Seeing of what you do.",
+ 25,
+ "They are the ones who persisted in disbelief and hindered you from the Sacred Mosque, preventing the sacrificial animals from reaching their destination. ˹We would have let you march through Mecca,˺ had there not been believing men and women, unknown to you. You might have trampled them underfoot, incurring guilt for ˹what you did to˺ them unknowingly. That was so Allah may admit into His mercy whoever He wills. Had those ˹unknown˺ believers stood apart, We would have certainly inflicted a painful punishment on the disbelievers.",
+ 26,
+ "˹Remember˺ when the disbelievers had filled their hearts with pride—the pride of ˹pre-Islamic˺ ignorance—then Allah sent down His serenity upon His Messenger and the believers, inspiring them to uphold the declaration of faith, for they were better entitled and more worthy of it. And Allah has ˹perfect˺ knowledge of all things.",
+ 27,
+ "Indeed, Allah will fulfil His Messenger’s vision in all truth: Allah willing, you will surely enter the Sacred Mosque, in security—˹some with˺ heads shaved and ˹others with˺ hair shortened—without fear. He knew what you did not know, so He first granted you the triumph at hand.",
+ 28,
+ "He is the One Who has sent His Messenger with ˹right˺ guidance and the religion of truth, making it prevail over all others. And sufficient is Allah as a Witness.",
+ 29,
+ "Muḥammad is the Messenger of Allah. And those with him are firm with the disbelievers and compassionate with one another. You see them bowing and prostrating ˹in prayer˺, seeking Allah’s bounty and pleasure. The sign ˹of brightness can be seen˺ on their faces from the trace of prostrating ˹in prayer˺. This is their description in the Torah. And their parable in the Gospel is that of a seed that sprouts its ˹tiny˺ branches, making it strong. Then it becomes thick, standing firmly on its stem, to the delight of the planters—in this way Allah makes the believers a source of dismay for the disbelievers. To those of them who believe and do good, Allah has promised forgiveness and a great reward."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/49.json b/share/quran-json/TheQuran/en/49.json
new file mode 100644
index 0000000..655fc6c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/49.json
@@ -0,0 +1,55 @@
+[
+ {
+ "id": "49",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Hujurat",
+ "translated_name": "The Rooms",
+ "verse_count": 18,
+ "slug": "al-hujurat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1580,
+ 1585,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "O believers! Do not proceed ˹in any matter˺ before ˹a decree from˺ Allah and His Messenger. And fear Allah. Surely Allah is All-Hearing, All-Knowing.",
+ 2,
+ "O believers! Do not raise your voices above the voice of the Prophet, nor speak loudly to him as you do to one another, or your deeds will become void while you are unaware.",
+ 3,
+ "Indeed, those who lower their voices in the presence of Allah’s Messenger are the ones whose hearts Allah has refined for righteousness. They will have forgiveness and a great reward.",
+ 4,
+ "Indeed, most of those who call out to you ˹O Prophet˺ from outside ˹your˺ private quarters have no understanding ˹of manners˺.",
+ 5,
+ "Had they been patient until you could come out to them, it would have certainly been better for them. And Allah is All-Forgiving, Most Merciful.",
+ 6,
+ "O believers, if an evildoer brings you any news, verify ˹it˺ so you do not harm people unknowingly, becoming regretful for what you have done.",
+ 7,
+ "And keep in mind that Allah’s Messenger is ˹still˺ in your midst. If he were to yield to you in many matters, you would surely suffer ˹the consequences˺. But Allah has endeared faith to you, making it appealing in your hearts. And He has made disbelief, rebelliousness, and disobedience detestable to you. Those are the ones rightly guided.",
+ 8,
+ "˹This is˺ a bounty and a blessing from Allah. And Allah is All-Knowing, All-Wise.",
+ 9,
+ "And if two groups of believers fight each other, then make peace between them. But if one of them transgresses against the other, then fight against the transgressing group until they ˹are willing to˺ submit to the rule of Allah. If they do so, then make peace between both ˹groups˺ in all fairness and act justly. Surely Allah loves those who uphold justice.",
+ 10,
+ "The believers are but one brotherhood, so make peace between your brothers. And be mindful of Allah so you may be shown mercy.",
+ 11,
+ "O believers! Do not let some ˹men˺ ridicule others, they may be better than them, nor let ˹some˺ women ridicule other women, they may be better than them. Do not defame one another, nor call each other by offensive nicknames. How evil it is to act rebelliously after having faith! And whoever does not repent, it is they who are the ˹true˺ wrongdoers.",
+ 12,
+ "O believers! Avoid many suspicions, ˹for˺ indeed, some suspicions are sinful. And do not spy, nor backbite one another. Would any of you like to eat the flesh of their dead brother? You would despise that! And fear Allah. Surely Allah is ˹the˺ Accepter of Repentance, Most Merciful.",
+ 13,
+ "O humanity! Indeed, We created you from a male and a female, and made you into peoples and tribes so that you may ˹get to˺ know one another. Surely the most noble of you in the sight of Allah is the most righteous among you. Allah is truly All-Knowing, All-Aware. ",
+ 14,
+ "˹Some of˺ the nomadic Arabs say, “We believe.” Say, ˹O Prophet,˺ “You have not believed. But say, ‘We have submitted,’ for faith has not yet entered your hearts. But if you obey Allah and His Messenger ˹wholeheartedly˺, He will not discount anything from ˹the reward of˺ your deeds. Allah is truly All-Forgiving, Most Merciful.”",
+ 15,
+ "The ˹true˺ believers are only those who believe in Allah and His Messenger—never doubting—and strive with their wealth and their lives in the cause of Allah. They are the ones true in faith.",
+ 16,
+ "Say, “Do you inform Allah of your faith, when Allah ˹already˺ knows whatever is in the heavens and whatever is on the earth? And Allah has ˹perfect˺ knowledge of all things.”",
+ 17,
+ "They regard their acceptance of Islam as a favour to you. Tell ˹them, O Prophet˺, “Do not regard your Islam as a favour to me. Rather, it is Allah Who has done you a favour by guiding you to the faith, if ˹indeed˺ you are faithful.",
+ 18,
+ "Surely Allah knows the unseen of the heavens and earth. And Allah is All-Seeing of what you do.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/5.json b/share/quran-json/TheQuran/en/5.json
new file mode 100644
index 0000000..3c092f3
--- /dev/null
+++ b/share/quran-json/TheQuran/en/5.json
@@ -0,0 +1,259 @@
+[
+ {
+ "id": "5",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Ma'idah",
+ "translated_name": "The Table Spread",
+ "verse_count": 120,
+ "slug": "al-maidah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1575,
+ 1574,
+ 1583,
+ 1577
+ ]
+ },
+ 1,
+ "O believers! Honour your obligations. All grazing livestock has been made lawful to you—except what is hereby announced to you and hunting while on pilgrimage. Indeed, Allah commands what He wills.",
+ 2,
+ "O believers! Do not violate Allah’s rituals ˹of pilgrimage˺, the sacred months, the sacrificial animals, the ˹offerings decorated with˺ garlands, nor those ˹pilgrims˺ on their way to the Sacred House seeking their Lord’s bounty and pleasure. When pilgrimage has ended, you are allowed to hunt. Do not let the hatred of a people who once barred you from the Sacred Mosque provoke you to transgress. Cooperate with one another in goodness and righteousness, and do not cooperate in sin and transgression. And be mindful of Allah. Surely Allah is severe in punishment.",
+ 3,
+ "Forbidden to you are carrion, blood, and swine; what is slaughtered in the name of any other than Allah; what is killed by strangling, beating, a fall, or by being gored to death; what is partly eaten by a predator unless you slaughter it; and what is sacrificed on altars. You are also forbidden to draw lots for decisions. This is all evil. Today the disbelievers have given up all hope of ˹undermining˺ your faith. So do not fear them; fear Me! Today I have perfected your faith for you, completed My favour upon you, and chosen Islam as your way. But whoever is compelled by extreme hunger—not intending to sin—then surely Allah is All-Forgiving, Most Merciful.",
+ 4,
+ "They ask you, ˹O Prophet,˺ what is permissible for them ˹to eat˺. Say, “What is good and lawful. Also what is caught by your hunting animals and birds of prey which you have trained as instructed by Allah. So eat what they catch for you, but mention the Name of Allah over it ˹first˺.” And be mindful of Allah. Surely Allah is swift in reckoning.",
+ 5,
+ "Today all good, pure foods have been made lawful for you. Similarly, the food of the People of the Book is permissible for you and yours is permissible for them. And ˹permissible for you in marriage˺ are chaste believing women as well as chaste women of those given the Scripture before you—as long as you pay them their dowries in wedlock, neither fornicating nor taking them as mistresses. And whoever rejects the faith, all their good deeds will be void ˹in this life˺ and in the Hereafter they will be among the losers.",
+ 6,
+ "O believers! When you rise up for prayer, wash your faces and your hands up to the elbows, wipe your heads, and wash your feet to the ankles. And if you are in a state of ˹full˺ impurity, then take a full bath. But if you are ill, on a journey, or have relieved yourselves, or have been intimate with your wives and cannot find water, then purify yourselves with clean earth by wiping your faces and hands. It is not Allah’s Will to burden you, but to purify you and complete His favour upon you, so perhaps you will be grateful.",
+ 7,
+ "Remember Allah’s favour upon you and the covenant He made with you when you said, “We hear and obey.” And be mindful of Allah. Surely Allah knows best what is ˹hidden˺ in the heart.",
+ 8,
+ "O believers! Stand firm for Allah and bear true testimony. Do not let the hatred of a people lead you to injustice. Be just! That is closer to righteousness. And be mindful of Allah. Surely Allah is All-Aware of what you do.",
+ 9,
+ "Allah has promised those who believe and do good ˹His˺ forgiveness and a great reward.",
+ 10,
+ "As for those who disbelieve and deny Our signs, they are the residents of the Hellfire.",
+ 11,
+ "O believers! Remember Allah’s favour upon you: when a people sought to harm you, but He held their hands back from you. Be mindful of Allah. And in Allah let the believers put their trust.",
+ 12,
+ "Allah made a covenant with the Children of Israel and appointed twelve leaders from among them and ˹then˺ said, “I am truly with you. If you establish prayer, pay alms-tax, believe in My messengers, support them, and lend to Allah a good loan, I will certainly forgive your sins and admit you into Gardens under which rivers flow. And whoever among you disbelieves afterwards has truly strayed from the Right Way.”",
+ 13,
+ "But for breaking their covenant We condemned them and hardened their hearts. They distorted the words of the Scripture and neglected a portion of what they had been commanded to uphold. You ˹O Prophet˺ will always find deceit on their part, except for a few. But pardon them and bear with them. Indeed, Allah loves the good-doers.",
+ 14,
+ "And from those who say, “We are Christians,” We took their covenant, but they neglected a portion of what they had been commanded to uphold. So We let hostility and enmity arise between them until the Day of Judgment, and soon Allah will inform them of all they have done.",
+ 15,
+ "O People of the Book! Now Our Messenger has come to you, revealing much of what you have hidden of the Scriptures and disregarding much. There certainly has come to you from Allah a light and a clear Book",
+ 16,
+ "through which Allah guides those who seek His pleasure to the ways of peace, brings them out of darkness and into light by His Will, and guides them to the Straight Path.",
+ 17,
+ "Indeed, those who say, “Allah is the Messiah, son of Mary,” have fallen into disbelief. Say, ˹O Prophet,˺ “Who has the power to prevent Allah if He chose to destroy the Messiah, son of Mary, his mother, and everyone in the world all together?” To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. He creates whatever He wills. And Allah is Most Capable of everything.",
+ 18,
+ "The Jews and the Christians each say, “We are the children of Allah and His most beloved!” Say, ˹O Prophet,˺ “Why then does He punish you for your sins? No! You are only humans like others of His Own making. He forgives whoever He wills and punishes whoever He wills. To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. And to Him is the final return.”",
+ 19,
+ "O People of the Book! Our Messenger has indeed come to you, making things clear to you after an interval between the messengers so you do not say, “There has never come to us a deliverer of good news or a warner.” Now there has come to you a deliverer of good news and a warner. And Allah is Most Capable of everything.",
+ 20,
+ "And ˹remember˺ when Moses said to his people, “O my people! Remember Allah’s favours upon you when He raised prophets from among you, made you sovereign, and gave you what He had never given anyone in the world.",
+ 21,
+ "O my people! Enter the Holy Land which Allah has destined for you ˹to enter˺. And do not turn back or else you will become losers.”",
+ 22,
+ "They replied, “O Moses! There is an enormously powerful people there, so we will never ˹be able to˺ enter it until they leave. If they do, then we will enter!”",
+ 23,
+ "Two God-fearing men—who had been blessed by Allah—said, “Surprise them through the gate. If you do, you will certainly prevail. Put your trust in Allah if you are ˹truly˺ believers.”",
+ 24,
+ "˹Yet˺ they said, “O Moses! ˹Still˺ we will never enter as long as they remain there. So go—both you and your Lord—and fight; we are staying right here!”",
+ 25,
+ "Moses pleaded, “My Lord! I have no control over anyone except myself and my brother. So set us apart from the rebellious people.”",
+ 26,
+ "Allah replied, “Then this land is forbidden to them for forty years, during which they will wander through the land. So do not grieve for the rebellious people.”",
+ 27,
+ "Relate to them in truth ˹O Prophet˺ the story of Adam’s two sons—how each offered a sacrifice: Abel’s offering was accepted while Cain’s was not. So Cain threatened, “I will kill you!” His brother replied, “Allah only accepts ˹the offering˺ of the sincerely devout.",
+ 28,
+ "If you raise your hand to kill me, I will not raise mine to kill you, because I fear Allah—the Lord of all worlds.",
+ 29,
+ "I want to let you bear your sin against me along with your other sins, then you will be one of those destined to the Fire. And that is the reward of the wrongdoers.”",
+ 30,
+ "Yet Cain convinced himself to kill his brother, so he killed him—becoming a loser.",
+ 31,
+ "Then Allah sent a crow digging ˹a grave˺ in the ground ˹for a dead crow˺, in order to show him how to bury the corpse of his brother. He cried, “Alas! Have I ˹even˺ failed to be like this crow and bury the corpse of my brother?” So he became regretful. ",
+ 32,
+ "That is why We ordained for the Children of Israel that whoever takes a life—unless as a punishment for murder or mischief in the land—it will be as if they killed all of humanity; and whoever saves a life, it will be as if they saved all of humanity. ˹Although˺ Our messengers already came to them with clear proofs, many of them still transgressed afterwards through the land.",
+ 33,
+ "Indeed, the penalty for those who wage war against Allah and His Messenger and spread mischief in the land is death, crucifixion, cutting off their hands and feet on opposite sides, or exile from the land. This ˹penalty˺ is a disgrace for them in this world, and they will suffer a tremendous punishment in the Hereafter.",
+ 34,
+ "As for those who repent before you seize them, then know that Allah is All-Forgiving, Most Merciful.",
+ 35,
+ "O believers! Be mindful of Allah and seek what brings you closer to Him and struggle in His Way, so you may be successful.",
+ 36,
+ "As for the disbelievers, even if they were to possess everything in the world twice over ˹and offer it all˺ to ransom themselves from the punishment of the Day of Judgment, it would never be accepted from them. And they will suffer a painful punishment.",
+ 37,
+ "They will be desperate to get out of the Fire but they will never be able to. And they will suffer an everlasting punishment.",
+ 38,
+ "As for male and female thieves, cut off their hands for what they have done—a deterrent from Allah. And Allah is Almighty, All-Wise.",
+ 39,
+ "But whoever repents after their wrongdoing and mends their ways, Allah will surely turn to them in forgiveness. Indeed, Allah is All-Forgiving, Most Merciful.",
+ 40,
+ "Do you not know that the kingdom of the heavens and the earth belongs to Allah ˹alone˺? He punishes whoever He wills and forgives whoever He wills. And Allah is Most Capable of everything.",
+ 41,
+ "O Messenger! Do not grieve for those who race to disbelieve—those who say, “We believe” with their tongues, but their hearts are in disbelief. Nor those among the Jews who eagerly listen to lies, attentive to those who are too arrogant to come to you. They distort the Scripture, taking rulings out of context, then say, “If this is the ruling you get ˹from Muḥammad˺, accept it. If not, beware!” Whoever Allah allows to be deluded, you can never be of any help to them against Allah. It is not Allah’s Will to purify their hearts. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.",
+ 42,
+ "They eagerly listen to falsehood and consume forbidden gain. So if they come to you ˹O Prophet˺, either judge between them or turn away from them. If you turn away from them, they cannot harm you whatsoever. But if you judge between them, then do so with justice. Surely Allah loves those who are just.",
+ 43,
+ "But why do they come to you for judgment when they ˹already˺ have the Torah containing Allah’s judgment, then they turn away after all? They are not ˹true˺ believers.",
+ 44,
+ "Indeed, We revealed the Torah, containing guidance and light, by which the prophets, who submitted themselves to Allah, made judgments for Jews. So too did the rabbis and scholars judge according to Allah’s Book, with which they were entrusted and of which they were made keepers. So do not fear the people; fear Me! Nor trade my revelations for a fleeting gain. And those who do not judge by what Allah has revealed are ˹truly˺ the disbelievers.",
+ 45,
+ "We ordained for them in the Torah, “A life for a life, an eye for an eye, a nose for a nose, an ear for an ear, a tooth for a tooth—and for wounds equal retaliation.” But whoever waives it charitably, it will be atonement for them. And those who do not judge by what Allah has revealed are ˹truly˺ the wrongdoers.",
+ 46,
+ "Then in the footsteps of the prophets, We sent Jesus, son of Mary, confirming the Torah revealed before him. And We gave him the Gospel containing guidance and light and confirming what was revealed in the Torah—a guide and a lesson to the God-fearing.",
+ 47,
+ "So let the people of the Gospel judge by what Allah has revealed in it. And those who do not judge by what Allah has revealed are ˹truly˺ the rebellious.",
+ 48,
+ "We have revealed to you ˹O Prophet˺ this Book with the truth, as a confirmation of previous Scriptures and a supreme authority on them. So judge between them by what Allah has revealed, and do not follow their desires over the truth that has come to you. To each of you We have ordained a code of law and a way of life. If Allah had willed, He would have made you one community, but His Will is to test you with what He has given ˹each of˺ you. So compete with one another in doing good. To Allah you will all return, then He will inform you ˹of the truth˺ regarding your differences.",
+ 49,
+ "And judge between them ˹O Prophet˺ by what Allah has revealed, and do not follow their desires. And beware, so they do not lure you away from some of what Allah has revealed to you. If they turn away ˹from Allah’s judgment˺, then know that it is Allah’s Will to repay them for some of their sins, and that many people are indeed rebellious.",
+ 50,
+ "Is it the judgment of ˹pre-Islamic˺ ignorance they seek? Who could be a better judge than Allah for people of sure faith?",
+ 51,
+ "O believers! Take neither Jews nor Christians as guardians—they are guardians of each other. Whoever does so will be counted as one of them. Surely Allah does not guide the wrongdoing people.",
+ 52,
+ "You see those with sickness in their hearts racing for their guardianship, saying ˹in justification˺, “We fear a turn of fortune will strike us.” But perhaps Allah will bring about ˹your˺ victory or another favour by His command, and they will regret what they have hidden in their hearts.",
+ 53,
+ "˹Only then,˺ the believers will ask ˹one another˺, “Are these the ones who swore solemn oaths by Allah that they were with you?” Their deeds have been in vain, so they have become losers.",
+ 54,
+ "O believers! Whoever among you abandons their faith, Allah will replace them with others who love Him and are loved by Him. They will be humble with the believers but firm towards the disbelievers, struggling in the Way of Allah; fearing no blame from anyone. This is the favour of Allah. He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing.",
+ 55,
+ "Your only guardians are Allah, His Messenger, and fellow believers—who establish prayer and pay alms-tax with humility.",
+ 56,
+ "Whoever allies themselves with Allah, His Messenger, and fellow believers, then it is certainly Allah’s party that will prevail.",
+ 57,
+ "O believers! Do not seek the guardianship of those given the Scripture before you and the disbelievers who have made your faith a mockery and amusement. And be mindful of Allah if you are ˹truly˺ believers.",
+ 58,
+ "When you call to prayer, they mock it in amusement. This is because they are a people without understanding.",
+ 59,
+ "Say, ˹O Prophet,˺ “O People of the Book! Do you resent us only because we believe in Allah and what has been revealed to us and what was revealed before—while most of you are rebellious?”",
+ 60,
+ "Say, ˹O Prophet,˺ “Shall I inform you of those who deserve a worse punishment from Allah ˹than the rebellious˺? It is those who earned Allah’s condemnation and displeasure—some being reduced to apes and pigs and worshippers of false gods. These are far worse in rank and farther astray from the Right Way.”",
+ 61,
+ "When they come to you ˹believers˺ they say, “We believe.” But they are committed to disbelief when they enter and when they leave. And Allah knows what they hide.",
+ 62,
+ "You see many of them racing towards sin, transgression, and consumption of forbidden gain. Evil indeed are their actions!",
+ 63,
+ "Why do their rabbis and scholars not forbid them from saying what is sinful and consuming what is unlawful? Evil indeed is their inaction!",
+ 64,
+ "˹Some among˺ the Jews said, “Allah is tight-fisted.” May their fists be tied and they be condemned for what they said. Rather, He is open-handed, giving freely as He pleases. That which has been revealed to you ˹O Prophet˺ from your Lord will only cause many of them to increase in wickedness and disbelief. We have stirred among them hostility and hatred until the Day of Judgment. Whenever they kindle the fire of war, Allah puts it out. And they strive to spread corruption in the land. And Allah does not like corruptors.",
+ 65,
+ "Had the People of the Book only been faithful and mindful ˹of Allah˺, We would have certainly absolved them of their sins and admitted them into the Gardens of Bliss.",
+ 66,
+ "And had they observed the Torah, the Gospel, and what has been revealed to them from their Lord, they would have been overwhelmed with provisions from above and below. Some among them are upright, yet many do nothing but evil.",
+ 67,
+ "O Messenger! Convey everything revealed to you from your Lord. If you do not, then you have not delivered His message. Allah will ˹certainly˺ protect you from the people. Indeed, Allah does not guide the people who disbelieve.",
+ 68,
+ "Say, ˹O Prophet,˺ “O People of the Book! You have nothing to stand on unless you observe the Torah, the Gospel, and what has been revealed to you from your Lord.” And your Lord’s revelation to you ˹O Prophet˺ will only cause many of them to increase in wickedness and disbelief. So do not grieve for the people who disbelieve.",
+ 69,
+ "Indeed, the believers, Jews, Sabians and Christians—whoever ˹truly˺ believes in Allah and the Last Day and does good, there will be no fear for them, nor will they grieve.",
+ 70,
+ "Indeed, We took a covenant from the Children of Israel and sent them messengers. Whenever a messenger came to them with what they did not desire, they denied some and killed others.",
+ 71,
+ "They thought there would be no consequences, so they turned a blind eye and a deaf ear. Yet Allah turned to them in forgiveness ˹after their repentance˺, but again many became blind and deaf. And Allah is All-Seeing of what they do.",
+ 72,
+ "Those who say, “Allah is the Messiah, son of Mary,” have certainly fallen into disbelief. The Messiah ˹himself˺ said, “O Children of Israel! Worship Allah—my Lord and your Lord.” Whoever associates others with Allah ˹in worship˺ will surely be forbidden Paradise by Allah. Their home will be the Fire. And the wrongdoers will have no helpers.",
+ 73,
+ "Those who say, “Allah is one in a Trinity,” have certainly fallen into disbelief. There is only One God. If they do not stop saying this, those who disbelieve among them will be afflicted with a painful punishment.",
+ 74,
+ "Will they not turn to Allah in repentance and seek His forgiveness? And Allah is All-Forgiving, Most Merciful.",
+ 75,
+ "The Messiah, son of Mary, was no more than a messenger. ˹Many˺ messengers had ˹come and˺ gone before him. His mother was a woman of truth. They both ate food. See how We make the signs clear to them, yet see how they are deluded ˹from the truth˺!",
+ 76,
+ "Say, ˹O Prophet,˺ “How can you worship besides Allah those who can neither harm nor benefit you? And Allah ˹alone˺ is the All-Hearing, All-Knowing.”",
+ 77,
+ "Say, “O People of the Book! Do not go to extremes in your faith beyond the truth, nor follow the vain desires of those who went astray before ˹you˺. They misled many and strayed from the Right Way.”",
+ 78,
+ "The disbelievers among the Children of Israel were condemned in the revelations of David and Jesus, son of Mary. That was for their disobedience and violations.",
+ 79,
+ "They did not forbid one another from doing evil. Evil indeed was what they did!",
+ 80,
+ "You see many of them taking the disbelievers as allies. Truly wicked are their misdeeds, which have earned them Allah’s wrath. And they will be in everlasting torment.",
+ 81,
+ "Had they believed in Allah, the Prophet, and what has been revealed to him, they would have never taken those ˹pagans˺ as allies. But most of them are rebellious.",
+ 82,
+ "You will surely find the most bitter towards the believers to be the Jews and polytheists and the most gracious to be those who call themselves Christian. That is because there are priests and monks among them and because they are not arrogant.",
+ 83,
+ "When they listen to what has been revealed to the Messenger, you see their eyes overflowing with tears for recognizing the truth. They say, “Our Lord! We believe, so count us among the witnesses.",
+ 84,
+ "Why should we not believe in Allah and the truth that has come to us? And we long for our Lord to include us in the company of the righteous.”",
+ 85,
+ "So Allah will reward them for what they said with Gardens under which rivers flow, to stay there forever. And that is the reward of the good-doers.",
+ 86,
+ "As for those who disbelieve and reject Our signs, they will be the residents of the Hellfire.",
+ 87,
+ "O believers! Do not forbid the good things which Allah has made lawful for you, and do not transgress. Indeed, Allah does not like transgressors.",
+ 88,
+ "Eat of the good, lawful things provided to you by Allah. And be mindful of Allah in Whom you believe.",
+ 89,
+ "Allah will not call you to account for your thoughtless oaths, but He will hold you accountable for deliberate oaths. The penalty for a broken oath is to feed ten poor people from what you normally feed your own family, or to clothe them, or to free a bondsperson. But if none of this is affordable, then you must fast three days. This is the penalty for breaking your oaths. So be mindful of your oaths. This is how Allah makes things clear to you, so perhaps you will be grateful.",
+ 90,
+ "O believers! Intoxicants, gambling, idols, and drawing lots for decisions are all evil of Satan’s handiwork. So shun them so you may be successful.",
+ 91,
+ "Satan’s plan is to stir up hostility and hatred between you with intoxicants and gambling and to prevent you from remembering Allah and praying. Will you not then abstain?",
+ 92,
+ "Obey Allah and obey the Messenger and beware! But if you turn away, then know that Our Messenger’s duty is only to deliver ˹the message˺ clearly.",
+ 93,
+ "There is no blame on those who believe and do good for what they had consumed before ˹the prohibition˺, as long as they fear Allah, have faith, and do what is good; then they believe and act virtuously, then become fully mindful ˹of Allah˺ and do righteous deeds. For Allah loves the good-doers.",
+ 94,
+ "O believers! Allah will surely test you with game within the reach of your hands and spears to distinguish those who fear Him in secret. Whoever transgresses from now on will suffer a painful punishment.",
+ 95,
+ "O believers! Do not kill game while on pilgrimage. Whoever kills game intentionally must compensate by offering its equivalence—as judged by two just men among you—to be offered at the Sacred House, or by feeding the needy, or by fasting so that they may taste the consequences of their violations. Allah has forgiven what has been done. But those who persist will be punished by Allah. And Allah is Almighty, capable of punishment.",
+ 96,
+ "It is lawful for you to hunt and eat seafood, as a provision for you and for travellers. But hunting on land is forbidden to you while on pilgrimage. Be mindful of Allah to Whom you all will be gathered.",
+ 97,
+ "Allah has made the Ka’bah—the Sacred House—a sanctuary of well-being for all people, along with the sacred months, the sacrificial animals, and the ˹offerings decorated with˺ garlands. All this so you may know that Allah knows whatever is in the heavens and whatever is on the earth, and that He has ˹perfect˺ knowledge of everything.",
+ 98,
+ "Know that Allah is severe in punishment and that He is All-Forgiving, Most Merciful.",
+ 99,
+ "The Messenger’s duty is only to deliver ˹the message˺. And Allah ˹fully˺ knows what you reveal and what you conceal.",
+ 100,
+ "Say, ˹O Prophet,˺ “Good and evil are not equal, though you may be dazzled by the abundance of evil. So be mindful of Allah, O people of reason, so you may be successful.”",
+ 101,
+ "O believers! Do not ask about any matter which, if made clear to you, may disturb you. But if you inquire about what is being revealed in the Quran, it will be made clear to you. Allah has forgiven what was done ˹in the past˺. And Allah is All-Forgiving, Most Forbearing.",
+ 102,
+ "Some people before you asked such questions then denied their answers.",
+ 103,
+ "Allah has never ordained the ˹so-called˺ baḥîrah, sâ'ibah, waṣîlah, and ḥâm camels. But the disbelievers just fabricate lies about Allah, and most of them lack understanding.",
+ 104,
+ "When it is said to them, “Come to Allah’s revelations and to the Messenger,” they reply, “What we found our forefathers practicing is good enough for us.” ˹Would they still do so,˺ even if their forefathers had absolutely no knowledge or guidance?",
+ 105,
+ "O believers! You are accountable only for yourselves. It will not harm you if someone chooses to deviate—as long as you are ˹rightly˺ guided. To Allah you will all return, and He will inform you of what you used to do.",
+ 106,
+ "O believers! When death approaches any of you, call upon two just Muslim men to witness as you make a bequest; otherwise, two non-Muslims if you are afflicted with death while on a journey. If you doubt ˹their testimony˺, keep them after prayer and let them testify under oath ˹saying˺, “By Allah! We would never sell our testimony for any price, even in favour of a close relative, nor withhold the testimony of Allah. Otherwise, we would surely be sinful.”",
+ 107,
+ "If they are found guilty ˹of false testimony˺, let the deceased’s two closest heirs affected by the bequest replace the witnesses and testify under oath ˹saying˺, “By Allah! Our testimony is truer than theirs. We have not transgressed. Otherwise, we would surely be wrongdoers.”",
+ 108,
+ "In this way it is more likely that witnesses will give true testimony or else fear that their oaths could be refuted by those of the heirs. Be mindful of Allah and obey. For Allah does not guide the rebellious people.",
+ 109,
+ "˹Consider˺ the Day Allah will gather the messengers and say, “What response did you receive?” They will reply, “We have no knowledge ˹compared to You˺! You ˹alone˺ are indeed the Knower of all unseen.”",
+ 110,
+ "And ˹on Judgment Day˺ Allah will say, “O Jesus, son of Mary! Remember My favour upon you and your mother: how I supported you with the holy spirit so you spoke to people in ˹your˺ infancy and adulthood. How I taught you writing, wisdom, the Torah, and the Gospel. How you moulded a bird from clay—by My Will—and breathed into it and it became a ˹real˺ bird—by My Will. How you healed the blind and the lepers—by My Will. How you brought the dead to life—by My Will. How I prevented the Children of Israel from harming you when you came to them with clear proofs and the disbelievers among them said, “This is nothing but pure magic.”",
+ 111,
+ "And how I inspired the disciples, “Believe in Me and My messenger!” They declared, “We believe and bear witness that we fully submit ˹to Allah˺.” ",
+ 112,
+ "˹Remember˺ when the disciples asked, “O Jesus, son of Mary! Would your Lord be willing to send down to us a table spread with food from heaven?” Jesus answered, “Fear Allah if you are ˹truly˺ believers.”",
+ 113,
+ "They said, “We ˹only˺ wish to eat from it to reassure our hearts, to verify you are indeed truthful to us, and to become its witnesses.”",
+ 114,
+ "Jesus, son of Mary, prayed, “O Allah, our Lord! Send us from heaven a table spread with food as a feast for us—the first and last of us—and as a sign from You. Provide for us! You are indeed the Best Provider.”",
+ 115,
+ "Allah answered, “I am sending it down to you. But whoever among you denies afterwards will be subjected to a torment I have never inflicted on anyone of My creation.”",
+ 116,
+ "And ˹on Judgment Day˺ Allah will say, “O Jesus, son of Mary! Did you ever ask the people to worship you and your mother as gods besides Allah?” He will answer, “Glory be to You! How could I ever say what I had no right to say? If I had said such a thing, you would have certainly known it. You know what is ˹hidden˺ within me, but I do not know what is within You. Indeed, You ˹alone˺ are the Knower of all unseen.",
+ 117,
+ "I never told them anything except what You ordered me to say: “Worship Allah—my Lord and your Lord!” And I was witness over them as long as I remained among them. But when You took me, You were the Witness over them—and You are a Witness over all things.",
+ 118,
+ "If You punish them, they belong to You after all. But if You forgive them, You are surely the Almighty, All-Wise.”",
+ 119,
+ "Allah will declare, “This is the Day when ˹only˺ the faithful will benefit from their faithfulness. Theirs are Gardens under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. That is the ultimate triumph.”",
+ 120,
+ "To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything within. And He is Most Capable of everything."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/50.json b/share/quran-json/TheQuran/en/50.json
new file mode 100644
index 0000000..00ea7d1
--- /dev/null
+++ b/share/quran-json/TheQuran/en/50.json
@@ -0,0 +1,103 @@
+[
+ {
+ "id": "50",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Qaf",
+ "translated_name": "The Letter \"Qaf\"",
+ "verse_count": 45,
+ "slug": "qaf",
+ "codepoints": [
+ 1602
+ ]
+ },
+ 1,
+ "Qãf. By the glorious Quran!",
+ 2,
+ "˹All will be resurrected,˺ yet the deniers are astonished that a warner has come to them from among themselves ˹warning of resurrection˺. So the disbelievers say, “This is an astonishing thing!",
+ 3,
+ "˹Will we be returned to life,˺ when we are dead and reduced to dust? Such a return is impossible.”",
+ 4,
+ "We certainly know what the earth consumes of them ˹after their death˺, and with us is a well-preserved Record.",
+ 5,
+ "In fact, they reject the truth when it has come to them, so they are in a confused state. ",
+ 6,
+ "Have they not then looked at the sky above them: how We built it and adorned it ˹with stars˺, leaving it flawless?",
+ 7,
+ "As for the earth, We spread it out and placed upon it firm mountains, and produced in it every type of pleasant plant—",
+ 8,
+ "˹all as˺ an insight and a reminder to every servant who turns ˹to Allah˺.",
+ 9,
+ "And We send down blessed rain from the sky, bringing forth gardens and grains for harvest,",
+ 10,
+ "and towering palm trees ˹loaded˺ with clustered fruit,",
+ 11,
+ "˹as˺ a provision for ˹Our˺ servants. And with this ˹rain˺ We revive a lifeless land. Similar is the emergence ˹from the graves˺.",
+ 12,
+ "Before them, the people of Noah denied ˹the truth,˺ as did the people of the Water-pit, Thamûd,",
+ 13,
+ "’Ȃd, Pharaoh, the kinfolk of Lot,",
+ 14,
+ "the residents of the Forest, and the people of Tubba’. Each rejected ˹their˺ messenger, so My warning was fulfilled.",
+ 15,
+ "Were We incapable of creating ˹them˺ the first time? In fact, they are in doubt about ˹their˺ re-creation.",
+ 16,
+ "Indeed, ˹it is˺ We ˹Who˺ created humankind and ˹fully˺ know what their souls whisper to them, and We are closer to them than ˹their˺ jugular vein.",
+ 17,
+ "As the two recording-angels—˹one˺ sitting to the right, and ˹the other to˺ the left—note ˹everything˺,",
+ 18,
+ "not a word does a person utter without having a ˹vigilant˺ observer ready ˹to write it down˺. ",
+ 19,
+ "˹Ultimately,˺ with the throes of death will come the truth. This is what you were trying to escape!",
+ 20,
+ "And the Trumpet will be blown. This is the Day ˹you were˺ warned of.",
+ 21,
+ "Each soul will come forth with an angel to drive it and another to testify.",
+ 22,
+ "˹It will be said to the denier,˺ “You were totally heedless of this. Now We have lifted this veil of yours, so Today your sight is sharp!”",
+ 23,
+ "And one’s accompanying-angel will say, “Here is the record ready with me.”",
+ 24,
+ "˹It will be said to both angels,˺ “Throw into Hell every stubborn disbeliever,",
+ 25,
+ "withholder of good, transgressor, and doubter,",
+ 26,
+ "who set up another god with Allah. So cast them into the severe punishment.”",
+ 27,
+ "One’s ˹devilish˺ associate will say, “Our Lord! I did not make them transgress. Rather, they were far astray ˹on their own˺.”",
+ 28,
+ "Allah will respond, “Do not dispute in My presence, since I had already given you a warning.",
+ 29,
+ "My Word cannot be changed, nor am I unjust to ˹My˺ creation.”",
+ 30,
+ "˹Beware of˺ the Day We will ask Hell, “Are you full ˹yet˺?” And it will respond, “Are there any more?”",
+ 31,
+ "And Paradise will be brought near to the righteous, not far off.",
+ 32,
+ "˹And it will be said to them,˺ “This is what you were promised, for whoever ˹constantly˺ turned ˹to Allah˺ and kept up ˹His commandments˺—",
+ 33,
+ "who were in awe of the Most Compassionate without seeing ˹Him˺, and have come with a heart turning ˹only to Him˺.",
+ 34,
+ "Enter it in peace. This is the Day of eternal life!”",
+ 35,
+ "There they will have whatever they desire, and with Us is ˹even˺ more. ",
+ 36,
+ "˹Imagine˺ how many peoples We destroyed before them, who were far mightier than them. Then ˹when the torment came,˺ they ˹desperately˺ sought refuge in the land. ˹But˺ was there any escape?",
+ 37,
+ "Surely in this is a reminder for whoever has a ˹mindful˺ heart and lends an attentive ear.",
+ 38,
+ "Indeed, We created the heavens and the earth and everything in between in six Days, and We were not ˹even˺ touched with fatigue.",
+ 39,
+ "So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset.",
+ 40,
+ "And glorify Him during part of the night and after the prayers.",
+ 41,
+ "And listen! On the Day the caller will call out from a near place,",
+ 42,
+ "the Day all will hear the ˹mighty˺ Blast in ˹all˺ truth, that will be the Day of emergence ˹from the graves˺.",
+ 43,
+ "It is certainly We Who give life and cause death. And to Us is the final return.",
+ 44,
+ "˹Beware of˺ the Day the earth will split open, letting them rush forth. That will be an easy gathering for Us.",
+ 45,
+ "We know best what they say. And you ˹O Prophet˺ are not ˹there˺ to compel them ˹to believe˺. So remind with the Quran ˹only˺ those who fear My warning."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/51.json b/share/quran-json/TheQuran/en/51.json
new file mode 100644
index 0000000..71866c4
--- /dev/null
+++ b/share/quran-json/TheQuran/en/51.json
@@ -0,0 +1,140 @@
+[
+ {
+ "id": "51",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Adh-Dhariyat",
+ "translated_name": "The Winnowing Winds",
+ "verse_count": 60,
+ "slug": "adh-dhariyat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1584,
+ 1575,
+ 1585,
+ 1610,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "By the winds scattering ˹dust˺,",
+ 2,
+ "and ˹the clouds˺ loaded with rain,",
+ 3,
+ "and ˹the ships˺ gliding with ease,",
+ 4,
+ "and ˹the angels˺ administering affairs by ˹Allah’s˺ command!",
+ 5,
+ "Indeed, what you are promised is true.",
+ 6,
+ "And the Judgment will certainly come to pass.",
+ 7,
+ "˹And˺ by the heavens in their marvellous design!",
+ 8,
+ "Surely you are ˹lost˺ in conflicting views ˹regarding the truth˺.",
+ 9,
+ "Only those ˹destined to be˺ deluded are turned away from it.",
+ 10,
+ "Condemned are the liars—",
+ 11,
+ "those who are ˹steeped˺ in ignorance, totally heedless.",
+ 12,
+ "They ask ˹mockingly˺, “When is this Day of Judgment?”",
+ 13,
+ "˹It is˺ the Day they will be tormented over the Fire.",
+ 14,
+ "˹They will be told,˺ “Taste your torment! This is what you sought to hasten.”",
+ 15,
+ "Indeed, the righteous will be amid Gardens and springs,",
+ 16,
+ "˹joyfully˺ receiving what their Lord will grant them. Before this ˹reward˺ they were truly good-doers ˹in the world˺:",
+ 17,
+ "they used to sleep only little in the night,",
+ 18,
+ "and pray for forgiveness before dawn.",
+ 19,
+ "And in their wealth there was a rightful share ˹fulfilled˺ for the beggar and the poor.",
+ 20,
+ "There are ˹countless˺ signs on earth for those with sure faith,",
+ 21,
+ "as there are within yourselves. Can you not see?",
+ 22,
+ "In heaven is your sustenance and whatever you are promised.",
+ 23,
+ "Then by the Lord of heaven and earth! ˹All˺ this is certainly as true as ˹the fact that˺ you can speak!",
+ 24,
+ "Has the story of Abraham’s honoured guests reached you ˹O Prophet˺?",
+ 25,
+ "˹Remember˺ when they entered his presence and greeted ˹him with˺, “Peace!” He replied, “Peace ˹be upon you˺!” ˹Then he said to himself,˺ “˹These are˺ an unfamiliar people.”",
+ 26,
+ "Then he slipped off to his family and brought a fat ˹roasted˺ calf,",
+ 27,
+ "and placed it before them, asking, “Will you not eat?”",
+ 28,
+ "˹They did not eat,˺ so he grew fearful of them. They reassured ˹him˺, “Do not be afraid,” and gave him good news of a knowledgeable son.",
+ 29,
+ "Then his wife came forward with a cry, clasping her forehead ˹in astonishment˺, exclaiming, “˹A baby from˺ a barren, old woman!”",
+ 30,
+ "They replied, “Such has your Lord decreed. He is truly the All-Wise, All-Knowing.”",
+ 31,
+ "˹Later,˺ Abraham asked, “What is your mission, O messengers?”",
+ 32,
+ "They replied, “We have actually been sent to a wicked people,",
+ 33,
+ "to send upon them stones of ˹baked˺ clay,",
+ 34,
+ "marked by your Lord for the transgressors.”",
+ 35,
+ "Then ˹before the torment˺ We evacuated the believers from the city.",
+ 36,
+ "But We only found one family that had submitted ˹to Allah˺.",
+ 37,
+ "And We have left a sign there ˹as a lesson˺ for those who fear the painful punishment.",
+ 38,
+ "And in ˹the story of˺ Moses ˹was another lesson,˺ when We sent him to Pharaoh with compelling proof,",
+ 39,
+ "but Pharaoh was carried away by his power, saying ˹of Moses˺, “A magician or a madman!”",
+ 40,
+ "So We seized him and his soldiers, casting them into the sea while he was blameworthy. ",
+ 41,
+ "And in ˹the story of˺ ’Âd ˹was another lesson,˺ when We sent against them the devastating wind.",
+ 42,
+ "There was nothing it came upon that it did not reduce to ashes.",
+ 43,
+ "And in ˹the story of˺ Thamûd ˹was another lesson,˺ when they were told, “Enjoy yourselves ˹only˺ for a ˹short˺ while.”",
+ 44,
+ "Still they persisted in defying the commands of their Lord, so they were overtaken by a ˹mighty˺ blast while they were looking on.",
+ 45,
+ "Then they were not able to rise up, nor were they helped.",
+ 46,
+ "And the people of Noah ˹had also been destroyed˺ earlier. They were truly a rebellious people.",
+ 47,
+ "We built the universe with ˹great˺ might, and We are certainly expanding ˹it˺.",
+ 48,
+ "As for the earth, We spread it out. How superbly did We smooth it out!",
+ 49,
+ "And We created pairs of all things so perhaps you would be mindful.",
+ 50,
+ "So ˹proclaim, O Prophet˺: “Flee to Allah! I am truly sent by Him with a clear warning to you.",
+ 51,
+ "And do not set up another god with Allah. I am truly sent by Him with a clear warning to you.”",
+ 52,
+ "Similarly, no messenger came to those before them without being told: “A magician or a madman!”",
+ 53,
+ "Have they passed this ˹cliché˺ down to one another? In fact, they have ˹all˺ been a transgressing people.",
+ 54,
+ "So ˹now˺ turn away from them ˹O Prophet˺, for you will not be blamed.",
+ 55,
+ "But ˹continue to˺ remind. For certainly reminders benefit the believers.",
+ 56,
+ "I did not create jinn and humans except to worship Me.",
+ 57,
+ "I seek no provision from them, nor do I need them to feed Me.",
+ 58,
+ "Indeed, Allah ˹alone˺ is the Supreme Provider—Lord of all Power, Ever Mighty.",
+ 59,
+ "The wrongdoers will certainly have a share ˹of the torment˺ like that of their predecessors. So do not let them ask Me to hasten ˹it˺.",
+ 60,
+ "Woe then to the disbelievers when they face their Day which they are warned of!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/52.json b/share/quran-json/TheQuran/en/52.json
new file mode 100644
index 0000000..77f551c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/52.json
@@ -0,0 +1,115 @@
+[
+ {
+ "id": "52",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "At-Tur",
+ "translated_name": "The Mount",
+ "verse_count": 49,
+ "slug": "at-tur",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1591,
+ 1608,
+ 1585
+ ]
+ },
+ 1,
+ "By Mount Ṭûr!",
+ 2,
+ "And by the Book written",
+ 3,
+ "on open pages ˹for all to read˺!",
+ 4,
+ "And by the ˹Sacred˺ House frequently visited!",
+ 5,
+ "And by the canopy raised ˹high˺!",
+ 6,
+ "And by the seas set on fire!",
+ 7,
+ "Indeed, the punishment of your Lord will come to pass—",
+ 8,
+ "none will avert it—",
+ 9,
+ "on the Day the heavens will be shaken violently,",
+ 10,
+ "and the mountains will be blown away entirely.",
+ 11,
+ "Then woe on that Day to the deniers—",
+ 12,
+ "those who amuse themselves with falsehood!",
+ 13,
+ "˹It is˺ the Day they will be fiercely shoved into the Fire of Hell.",
+ 14,
+ "˹They will be told,˺ “This is the Fire which you used to deny.",
+ 15,
+ "Is this magic, or do you not see?",
+ 16,
+ "Burn in it! It is the same whether you endure ˹it˺ patiently or not. You are only rewarded for what you used to do.”",
+ 17,
+ "Indeed, the righteous will be in Gardens and bliss,",
+ 18,
+ "enjoying whatever their Lord will have granted them. And their Lord will have protected them from the torment of the Hellfire.",
+ 19,
+ "˹They will be told,˺ “Eat and drink happily for what you used to do.”",
+ 20,
+ "They will be reclining on thrones, ˹neatly˺ lined up ˹facing each other˺. And We will pair them to maidens with gorgeous eyes.",
+ 21,
+ "As for those who believe and whose descendants follow them in faith, We will elevate their descendants to their rank, never discounting anything ˹of the reward˺ of their deeds. Every person will reap only what they sowed.",
+ 22,
+ "And We will ˹continually˺ provide them with whatever fruit or meat they desire.",
+ 23,
+ "They will pass around to each other a drink ˹of pure wine,˺ which leads to no idle talk or sinfulness.",
+ 24,
+ "And they will be waited on by their youthful servants like spotless pearls. ",
+ 25,
+ "They will turn to one another inquisitively.",
+ 26,
+ "They will say, “Before ˹this reward˺ we used to be in awe ˹of Allah˺ in the midst of our people.",
+ 27,
+ "So Allah has graced us and protected us from the torment of ˹Hell’s˺ scorching heat.",
+ 28,
+ "Indeed, we used to call upon Him ˹alone˺ before. He is truly the Most Kind, Most Merciful.”",
+ 29,
+ "So ˹continue to˺ remind ˹all, O Prophet˺. For you, by the grace of your Lord, are not a fortune-teller or a madman.",
+ 30,
+ "Or do they say, “˹He is˺ a poet, for whom we ˹eagerly˺ await an ill-fate!”?",
+ 31,
+ "Say, “Keep waiting! I too am waiting with you.”",
+ 32,
+ "Or do their ˹intelligent˺ minds prompt them to this ˹paradox˺? Or are they ˹just˺ a transgressing people?",
+ 33,
+ "Or do they say, “He made this ˹Quran˺ up!”? In fact, they have no faith.",
+ 34,
+ "Let them then produce something like it, if what they say is true!",
+ 35,
+ "Or were they created by nothing, or are they ˹their own˺ creators?",
+ 36,
+ "Or did they create the heavens and the earth? In fact, they have no firm belief ˹in Allah˺.",
+ 37,
+ "Or do they possess the treasuries of your Lord, or are they in control ˹of everything˺?",
+ 38,
+ "Or do they have a stairway, by which they eavesdrop ˹on the heavens˺? Then let those who do so bring a compelling proof.",
+ 39,
+ "Or does He have daughters ˹as you claim˺, while you ˹prefer to˺ have sons?",
+ 40,
+ "Or are you ˹O Prophet˺ asking them for a reward ˹for the message˺ so that they are overburdened by debt?",
+ 41,
+ "Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?",
+ 42,
+ "Or do they intend to scheme ˹against the Prophet˺? Then it is the disbelievers who will fall victim to ˹their˺ schemes.",
+ 43,
+ "Or do they have a god other than Allah? Glorified is Allah far above what they associate ˹with Him˺!",
+ 44,
+ "If they were to see a ˹deadly˺ piece of the sky fall down ˹upon them˺, still they would say, “˹This is just˺ a pile of clouds.”",
+ 45,
+ "So leave them until they face their Day in which they will be struck dead—",
+ 46,
+ "the Day their scheming will be of no benefit to them whatsoever, nor will they be helped.",
+ 47,
+ "Also, the wrongdoers will certainly have another torment before that ˹Day˺, but most of them do not know.",
+ 48,
+ "So be patient with your Lord’s decree, for you are truly under Our ˹watchful˺ Eyes. And glorify the praises of your Lord when you rise.",
+ 49,
+ "And glorify Him during part of the night and at the fading of the stars."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/53.json b/share/quran-json/TheQuran/en/53.json
new file mode 100644
index 0000000..66623f1
--- /dev/null
+++ b/share/quran-json/TheQuran/en/53.json
@@ -0,0 +1,141 @@
+[
+ {
+ "id": "53",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Najm",
+ "translated_name": "The Star",
+ "verse_count": 62,
+ "slug": "an-najm",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1580,
+ 1605
+ ]
+ },
+ 1,
+ "By the stars when they fade away!",
+ 2,
+ "Your fellow man is neither misguided nor astray.",
+ 3,
+ "Nor does he speak of his own whims.",
+ 4,
+ "It is only a revelation sent down ˹to him˺.",
+ 5,
+ "He has been taught by one ˹angel˺ of mighty power",
+ 6,
+ "and great perfection, who once rose to ˹his˺ true form",
+ 7,
+ "while on the highest point above the horizon,",
+ 8,
+ "then he approached ˹the Prophet˺, coming so close",
+ 9,
+ "that he was only two arms-lengths away or even less.",
+ 10,
+ "Then Allah revealed to His servant what He revealed ˹through Gabriel˺.",
+ 11,
+ "The ˹Prophet’s˺ heart did not doubt what he saw.",
+ 12,
+ "How can you ˹O pagans˺ then dispute with him regarding what he saw?",
+ 13,
+ "And he certainly saw that ˹angel descend˺ a second time",
+ 14,
+ "at the Lote Tree of the most extreme limit ˹in the seventh heaven˺—",
+ 15,
+ "near which is the Garden of ˹Eternal˺ Residence—",
+ 16,
+ "while the Lote Tree was overwhelmed with ˹heavenly˺ splendours!",
+ 17,
+ "The ˹Prophet’s˺ sight never wandered, nor did it overreach.",
+ 18,
+ "He certainly saw some of his Lord’s greatest signs. ",
+ 19,
+ "Now, have you considered ˹the idols of˺ Lât and ’Uzza,",
+ 20,
+ "and the third one, Manât, as well?",
+ 21,
+ "Do you ˹prefer to˺ have sons while ˹you attribute˺ to Him daughters?",
+ 22,
+ "Then this is ˹truly˺ a biased distribution!",
+ 23,
+ "These ˹idols˺ are mere names that you and your forefathers have made up—a practice Allah has never authorized. They follow nothing but ˹inherited˺ assumptions and whatever ˹their˺ souls desire, although ˹true˺ guidance has already come to them from their Lord.",
+ 24,
+ "Or should every person ˹simply˺ have whatever ˹intercessors˺ they desire?",
+ 25,
+ "In fact, to Allah ˹alone˺ belongs this world and the next.",
+ 26,
+ "˹Imagine˺ how many ˹noble˺ angels are in the heavens! ˹Even˺ their intercession would be of no benefit whatsoever, until Allah gives permission to whoever He wills and ˹only for the people He˺ approves.",
+ 27,
+ "Indeed, those who do not believe in the Hereafter label angels as female,",
+ 28,
+ "although they have no knowledge ˹in support˺ of this. They follow nothing but ˹inherited˺ assumptions. And surely assumptions can in no way replace the truth.",
+ 29,
+ "So turn away ˹O Prophet˺ from whoever has shunned Our Reminder, only seeking the ˹fleeting˺ life of this world.",
+ 30,
+ "This is the extent of their knowledge. Surely your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.",
+ 31,
+ "To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth so that He may reward the evildoers according to what they did, and reward the good-doers with the finest reward—",
+ 32,
+ "those who avoid major sins and shameful deeds, despite ˹stumbling on˺ minor sins. Surely your Lord is infinite in forgiveness. He knew well what would become of you as He created you from the earth and while you were ˹still˺ fetuses in the wombs of your mothers. So do not ˹falsely˺ elevate yourselves. He knows best who is ˹truly˺ righteous.",
+ 33,
+ "Have you seen the one who turned away ˹from Islam,˺",
+ 34,
+ "and ˹initially˺ paid a little ˹for his salvation˺, and then stopped?",
+ 35,
+ "Does he have the knowledge of the unseen so that he sees ˹the Hereafter˺?",
+ 36,
+ "Or has he not been informed of what is in the Scripture of Moses,",
+ 37,
+ "and ˹that of˺ Abraham, who ˹perfectly˺ fulfilled ˹his covenant˺?",
+ 38,
+ "˹They state˺ that no soul burdened with sin will bear the burden of another,",
+ 39,
+ "and that each person will only have what they endeavoured towards,",
+ 40,
+ "and that ˹the outcome of˺ their endeavours will be seen ˹in their record˺,",
+ 41,
+ "then they will be fully rewarded,",
+ 42,
+ "and that to your Lord ˹alone˺ is the ultimate return ˹of all things˺.",
+ 43,
+ "Moreover, He is the One Who brings about joy and sadness.",
+ 44,
+ "And He is the One Who gives life and causes death.",
+ 45,
+ "And He created the pairs—males and females—",
+ 46,
+ "from a sperm-drop when it is emitted.",
+ 47,
+ "And it is upon Him to bring about re-creation.",
+ 48,
+ "And He is the One Who enriches and impoverishes.",
+ 49,
+ "And He alone is the Lord of Sirius.",
+ 50,
+ "And He destroyed the first ˹people of˺ ’Ȃd,",
+ 51,
+ "and ˹then˺ Thamûd, sparing no one.",
+ 52,
+ "And before ˹that He destroyed˺ the people of Noah, who were truly far worse in wrongdoing and transgression.",
+ 53,
+ "And ˹it was˺ He ˹Who˺ turned the cities ˹of Sodom and Gomorrah˺ upside down.",
+ 54,
+ "How overwhelming was what covered ˹them˺!",
+ 55,
+ "Now, which of your Lord’s favours will you dispute?",
+ 56,
+ "This ˹Prophet˺ is a warner like earlier ones.",
+ 57,
+ "The approaching ˹Hour˺ has drawn near.",
+ 58,
+ "None but Allah can disclose it.",
+ 59,
+ "Do you find this revelation astonishing,",
+ 60,
+ "laughing ˹at it˺ and not weeping ˹in awe˺,",
+ 61,
+ "while persisting in heedlessness?",
+ 62,
+ "Instead, prostrate to Allah and worship ˹Him alone˺!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/54.json b/share/quran-json/TheQuran/en/54.json
new file mode 100644
index 0000000..7a9051f
--- /dev/null
+++ b/share/quran-json/TheQuran/en/54.json
@@ -0,0 +1,127 @@
+[
+ {
+ "id": "54",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qamar",
+ "translated_name": "The Moon",
+ "verse_count": 55,
+ "slug": "al-qamar",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1605,
+ 1585
+ ]
+ },
+ 1,
+ "The Hour has drawn near and the moon was split ˹in two˺.",
+ 2,
+ "Yet, whenever they see a sign, they turn away, saying, “Same old magic!”",
+ 3,
+ "They rejected ˹the truth˺ and followed their own desires—and every matter will be settled—",
+ 4,
+ "even though the stories ˹of destroyed nations˺ that have already come to them are a sufficient deterrent.",
+ 5,
+ "˹This Quran is˺ profound ˹in˺ wisdom, but warnings are of no benefit ˹to them˺.",
+ 6,
+ "So turn away from them ˹O Prophet˺. ˹And wait for˺ the Day ˹when˺ the caller will summon ˹them˺ for something horrifying.",
+ 7,
+ "With eyes downcast, they will come forth from the graves as if they were swarming locusts,",
+ 8,
+ "rushing towards the caller. The disbelievers will cry, “This is a difficult Day!”",
+ 9,
+ "Before them, the people of Noah denied ˹the truth˺ and rejected Our servant, calling ˹him˺ insane. And he was intimidated.",
+ 10,
+ "So he cried out to his Lord, “I am helpless, so help ˹me˺!”",
+ 11,
+ "So We opened the gates of the sky with pouring rain,",
+ 12,
+ "and caused the earth to burst with springs, so the waters met for a fate already set.",
+ 13,
+ "We carried him on that ˹Ark made˺ of planks and nails,",
+ 14,
+ "sailing under Our ˹watchful˺ Eyes—a ˹fair˺ punishment on behalf of the one ˹they˺ denied.",
+ 15,
+ "We certainly left this as a sign. So is there anyone who will be mindful?",
+ 16,
+ "Then how ˹dreadful˺ were My punishment and warnings!",
+ 17,
+ "And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?",
+ 18,
+ "’Ȃd ˹also˺ rejected ˹the truth˺. Then how ˹dreadful˺ were My punishment and warnings!",
+ 19,
+ "Indeed, We sent against them a furious wind, on a day of unrelenting misery,",
+ 20,
+ "that snatched people up, leaving them like trunks of uprooted palm trees.",
+ 21,
+ "Then how ˹dreadful˺ were My punishment and warnings!",
+ 22,
+ "And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?",
+ 23,
+ "Thamûd rejected the warnings ˹as well˺,",
+ 24,
+ "arguing, “How can we follow one ˹average˺ human being from among us? We would then truly be misguided and insane.",
+ 25,
+ "Has the revelation been sent down ˹only˺ to him out of ˹all of˺ us? In fact, he is a boastful liar.”",
+ 26,
+ "˹It was revealed to Ṣâliḥ,˺ “They will soon know who the boastful liar is.",
+ 27,
+ "We are sending the she-camel as a test for them. So watch them ˹closely˺, and have patience.",
+ 28,
+ "And tell them that the ˹drinking˺ water must be divided between them ˹and her˺, each taking a turn to drink ˹every other day˺.”",
+ 29,
+ "But they roused a companion of theirs, so he dared to kill ˹her˺.",
+ 30,
+ "Then how ˹dreadful˺ were My punishment and warnings!",
+ 31,
+ "Indeed, We sent against them ˹only˺ one ˹mighty˺ blast, leaving them like the twigs of fence-builders.",
+ 32,
+ "And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?",
+ 33,
+ "The people of Lot ˹also˺ rejected the warnings.",
+ 34,
+ "We unleashed upon them a storm of stones. As for ˹the believers of˺ Lot’s family, We delivered them before dawn",
+ 35,
+ "as a blessing from Us. This is how We reward whoever gives thanks.",
+ 36,
+ "He had already warned them of Our ˹crushing˺ blow but they disputed the warnings.",
+ 37,
+ "And they even demanded his angel-guests from him, so We blinded their eyes. ˹And they were told,˺ “Taste then My punishment and warnings!”",
+ 38,
+ "And indeed, by the early morning they were overwhelmed by an unrelenting torment.",
+ 39,
+ "˹Again they were told,˺ “Taste now My punishment and warnings!”",
+ 40,
+ "And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?",
+ 41,
+ "And indeed, the warnings ˹also˺ came to the people of Pharaoh.",
+ 42,
+ "˹But˺ they rejected all of Our signs, so We seized them with the ˹crushing˺ grip of the Almighty, Most Powerful.",
+ 43,
+ "Now, are you ˹Meccan˺ disbelievers superior to those ˹destroyed peoples˺? Or have you ˹been granted˺ immunity ˹from punishment˺ in divine Books?",
+ 44,
+ "Or do they say, “We are all ˹a˺ united ˹front˺, bound to prevail.”?",
+ 45,
+ "˹Soon˺ their united front will be defeated and ˹forced to˺ flee.",
+ 46,
+ "Better yet, the Hour is their appointed time—and the Hour will be most catastrophic and most bitter.",
+ 47,
+ "Indeed, the wicked are ˹entrenched˺ in misguidance, and ˹are bound for˺ blazes.",
+ 48,
+ "On the Day they will be dragged into the Fire on their faces, ˹they will be told,˺ “Taste the touch of Hell!”",
+ 49,
+ "Indeed, We have created everything, perfectly preordained.",
+ 50,
+ "Our command is but a single word, done in the blink of an eye.",
+ 51,
+ "We have already destroyed the likes of you. So will any ˹of you˺ be mindful?",
+ 52,
+ "Everything they have done is ˹listed˺ in ˹their˺ records.",
+ 53,
+ "Every matter, small and large, is written ˹precisely˺.",
+ 54,
+ "Indeed, the righteous will be amid Gardens and rivers,",
+ 55,
+ "at the Seat of Honour in the presence of the Most Powerful Sovereign."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/55.json b/share/quran-json/TheQuran/en/55.json
new file mode 100644
index 0000000..5f6bcf9
--- /dev/null
+++ b/share/quran-json/TheQuran/en/55.json
@@ -0,0 +1,174 @@
+[
+ {
+ "id": "55",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Ar-Rahman",
+ "translated_name": "The Beneficent",
+ "verse_count": 78,
+ "slug": "ar-rahman",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1585,
+ 1581,
+ 1605,
+ 1606
+ ]
+ },
+ 1,
+ "The Most Compassionate",
+ 2,
+ "taught the Quran,",
+ 3,
+ "created humanity,",
+ 4,
+ "˹and˺ taught them speech.",
+ 5,
+ "The sun and the moon ˹travel˺ with precision.",
+ 6,
+ "The stars and the trees bow down ˹in submission˺.",
+ 7,
+ "As for the sky, He raised it ˹high˺, and set the balance ˹of justice˺",
+ 8,
+ "so that you do not defraud the scales.",
+ 9,
+ "Weigh with justice, and do not give short measure.",
+ 10,
+ "He laid out the earth for all beings.",
+ 11,
+ "In it are fruit, palm trees with date stalks,",
+ 12,
+ "and grain with husks, and aromatic plants.",
+ 13,
+ "Then which of your Lord’s favours will you ˹humans and jinn˺ both deny? ",
+ 14,
+ "He created humankind from ˹sounding˺ clay like pottery,",
+ 15,
+ "and created jinn from a ˹smokeless˺ flame of fire.",
+ 16,
+ "Then which of your Lord’s favours will you both deny?",
+ 17,
+ "˹He is˺ Lord of the two easts and the two wests.",
+ 18,
+ "Then which of your Lord’s favours will you both deny?",
+ 19,
+ "He merges the two bodies of ˹fresh and salt˺ water,",
+ 20,
+ "yet between them is a barrier they never cross.",
+ 21,
+ "Then which of your Lord’s favours will you both deny?",
+ 22,
+ "Out of both ˹waters˺ come forth pearls and coral.",
+ 23,
+ "Then which of your Lord’s favours will you both deny?",
+ 24,
+ "To Him belong the ships with raised sails, sailing through the seas like mountains.",
+ 25,
+ "Then which of your Lord’s favours will you both deny?",
+ 26,
+ "Every being on earth is bound to perish.",
+ 27,
+ "Only your Lord Himself, full of Majesty and Honour, will remain ˹forever˺.",
+ 28,
+ "Then which of your Lord’s favours will you both deny?",
+ 29,
+ "All those in the heavens and the earth are dependent on Him. Day in and day out He has something to bring about.",
+ 30,
+ "Then which of your Lord’s favours will you both deny?",
+ 31,
+ "We will soon attend to you ˹for judgment˺, O two multitudes ˹of jinn and humans˺!",
+ 32,
+ "Then which of your Lord’s favours will you both deny?",
+ 33,
+ "O assembly of jinn and humans! If you can penetrate beyond the realms of the heavens and the earth, then do so. ˹But˺ you cannot do that without ˹Our˺ authority.",
+ 34,
+ "Then which of your Lord’s favours will you both deny?",
+ 35,
+ "Flames of fire and ˹molten˺ copper will be sent against you, and you will not be able to defend one another.",
+ 36,
+ "Then which of your Lord’s favours will you both deny?",
+ 37,
+ "˹How horrible will it be˺ when the heavens will split apart, becoming rose-red like ˹burnt˺ oil!",
+ 38,
+ "Then which of your Lord’s favours will you both deny?",
+ 39,
+ "On that Day there will be no need for any human or jinn to be asked about their sins.",
+ 40,
+ "Then which of your Lord’s favours will you both deny?",
+ 41,
+ "The wicked will be recognized by their appearance, then will be seized by ˹their˺ forelocks and feet.",
+ 42,
+ "Then which of your Lord’s favours will you both deny?",
+ 43,
+ "˹They will be told,˺ “This is the Hell which the wicked denied.”",
+ 44,
+ "They will alternate between its flames and scalding water.",
+ 45,
+ "Then which of your Lord’s favours will you both deny? ",
+ 46,
+ "And whoever is in awe of standing before their Lord will have two Gardens.",
+ 47,
+ "Then which of your Lord’s favours will you both deny?",
+ 48,
+ "˹Both will be˺ with lush branches.",
+ 49,
+ "Then which of your Lord’s favours will you both deny?",
+ 50,
+ "In each ˹Garden˺ will be two flowing springs.",
+ 51,
+ "Then which of your Lord’s favours will you both deny?",
+ 52,
+ "In each will be two types of every fruit.",
+ 53,
+ "Then which of your Lord’s favours will you both deny?",
+ 54,
+ "Those ˹believers˺ will recline on furnishings lined with rich brocade. And the fruit of both Gardens will hang within reach.",
+ 55,
+ "Then which of your Lord’s favours will you both deny?",
+ 56,
+ "In both ˹Gardens˺ will be maidens of modest gaze, who no human or jinn has ever touched before.",
+ 57,
+ "Then which of your Lord’s favours will you both deny?",
+ 58,
+ "Those ˹maidens˺ will be ˹as elegant˺ as rubies and coral.",
+ 59,
+ "Then which of your Lord’s favours will you both deny?",
+ 60,
+ "Is there any reward for goodness except goodness?",
+ 61,
+ "Then which of your Lord’s favours will you both deny?",
+ 62,
+ "And below these two ˹Gardens˺ will be two others.",
+ 63,
+ "Then which of your Lord’s favours will you both deny?",
+ 64,
+ "Both will be dark green.",
+ 65,
+ "Then which of your Lord’s favours will you both deny?",
+ 66,
+ "In each will be two gushing springs.",
+ 67,
+ "Then which of your Lord’s favours will you both deny?",
+ 68,
+ "In both will be fruit, palm trees, and pomegranates.",
+ 69,
+ "Then which of your Lord’s favours will you both deny?",
+ 70,
+ "In all Gardens will be noble, pleasant mates.",
+ 71,
+ "Then which of your Lord’s favours will you both deny?",
+ 72,
+ "˹They will be˺ maidens with gorgeous eyes, reserved in pavilions.",
+ 73,
+ "Then which of your Lord’s favours will you both deny?",
+ 74,
+ "No human or jinn has ever touched these ˹maidens˺ before.",
+ 75,
+ "Then which of your Lord’s favours will you both deny?",
+ 76,
+ "All ˹believers˺ will be reclining on green cushions and splendid carpets.",
+ 77,
+ "Then which of your Lord’s favours will you both deny?",
+ 78,
+ "Blessed is the Name of your Lord, full of Majesty and Honour."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/56.json b/share/quran-json/TheQuran/en/56.json
new file mode 100644
index 0000000..476ce5b
--- /dev/null
+++ b/share/quran-json/TheQuran/en/56.json
@@ -0,0 +1,211 @@
+[
+ {
+ "id": "56",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Waqi'ah",
+ "translated_name": "The Inevitable",
+ "verse_count": 96,
+ "slug": "al-waqiah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1608,
+ 1575,
+ 1602,
+ 1593,
+ 1577
+ ]
+ },
+ 1,
+ "When the Inevitable Event takes place,",
+ 2,
+ "then no one can deny it has come.",
+ 3,
+ "It will debase ˹some˺ and elevate ˹others˺.",
+ 4,
+ "When the earth will be violently shaken,",
+ 5,
+ "and the mountains will be crushed to pieces,",
+ 6,
+ "becoming scattered ˹particles of˺ dust,",
+ 7,
+ "you will ˹all˺ be ˹divided into˺ three groups:",
+ 8,
+ "the people of the right, how ˹blessed˺ will they be;",
+ 9,
+ "the people of the left, how ˹miserable˺ will they be;",
+ 10,
+ "and the foremost ˹in faith˺ will be the foremost ˹in Paradise˺.",
+ 11,
+ "They are the ones nearest ˹to Allah˺,",
+ 12,
+ "in the Gardens of Bliss.",
+ 13,
+ "˹They will be˺ a multitude from earlier generations",
+ 14,
+ "and a few from later generations.",
+ 15,
+ "˹All will be˺ on jewelled thrones,",
+ 16,
+ "reclining face to face.",
+ 17,
+ "They will be waited on by eternal youths",
+ 18,
+ "with cups, pitchers, and a drink ˹of pure wine˺ from a flowing stream,",
+ 19,
+ "that will cause them neither headache nor intoxication.",
+ 20,
+ "˹They will also be served˺ any fruit they choose",
+ 21,
+ "and meat from any bird they desire.",
+ 22,
+ "And ˹they will have˺ maidens with gorgeous eyes,",
+ 23,
+ "like pristine pearls,",
+ 24,
+ "˹all˺ as a reward for what they used to do.",
+ 25,
+ "There they will never hear any idle or sinful talk—",
+ 26,
+ "only good and virtuous speech. ",
+ 27,
+ "And the people of the right—how ˹blessed˺ will they be!",
+ 28,
+ "˹They will be˺ amid thornless lote trees,",
+ 29,
+ "clusters of bananas,",
+ 30,
+ "extended shade,",
+ 31,
+ "flowing water,",
+ 32,
+ "abundant fruit—",
+ 33,
+ "never out of season nor forbidden—",
+ 34,
+ "and elevated furnishings.",
+ 35,
+ "Indeed, We will have perfectly created their mates,",
+ 36,
+ "making them virgins,",
+ 37,
+ "loving and of equal age,",
+ 38,
+ "for the people of the right,",
+ 39,
+ "˹who will be˺ a multitude from earlier generations",
+ 40,
+ "and a multitude from later generations.",
+ 41,
+ "And the people of the left—how ˹miserable˺ will they be!",
+ 42,
+ "˹They will be˺ in scorching heat and boiling water,",
+ 43,
+ "in the shade of black smoke,",
+ 44,
+ "neither cool nor refreshing.",
+ 45,
+ "Indeed, before this ˹torment˺ they were spoiled by luxury,",
+ 46,
+ "and persisted in the worst of sin.",
+ 47,
+ "They used to ask ˹mockingly˺, “When we are dead and reduced to dust and bones, will we really be resurrected?",
+ 48,
+ "And our forefathers as well?”",
+ 49,
+ "Say, ˹O Prophet,˺ “Most certainly, earlier and later generations",
+ 50,
+ "will surely be gathered ˹together˺ for the appointed Day.",
+ 51,
+ "Then you, O misguided deniers,",
+ 52,
+ "will certainly eat from ˹the fruit of˺ the trees of Zaqqûm,",
+ 53,
+ "filling up ˹your˺ bellies with it.",
+ 54,
+ "Then on top of that you will drink boiling water—",
+ 55,
+ "and you will drink ˹it˺ like thirsty camels do.”",
+ 56,
+ "This will be their accommodation on the Day of Judgment.",
+ 57,
+ "It is We Who created you. Will you not then believe ˹in resurrection˺?",
+ 58,
+ "Have you considered what you ejaculate?",
+ 59,
+ "Is it you who create ˹a child out of˺ it, or is it We Who do so?",
+ 60,
+ "We have ordained death for ˹all of˺ you, and We cannot be prevented",
+ 61,
+ "from transforming and recreating you in forms unknown to you.",
+ 62,
+ "You already know how you were first created. Will you not then be mindful?",
+ 63,
+ "Have you considered what you sow?",
+ 64,
+ "Is it you who cause it to grow, or is it We Who do so?",
+ 65,
+ "If We willed, We could simply reduce this ˹harvest˺ to chaff, leaving you to lament,",
+ 66,
+ "“We have truly suffered a ˹great˺ loss.",
+ 67,
+ "In fact, we have been deprived ˹of our livelihood˺.”",
+ 68,
+ "Have you considered the water you drink?",
+ 69,
+ "Is it you who bring it down from the clouds, or is it We Who do so?",
+ 70,
+ "If We willed, We could make it salty. Will you not then give thanks?",
+ 71,
+ "Have you considered the fire you kindle?",
+ 72,
+ "Is it you who produce its trees, or is it We Who do so?",
+ 73,
+ "We have made it ˹as˺ a reminder ˹of the Hellfire˺ and a provision for the travellers.",
+ 74,
+ "So glorify the Name of your Lord, the Greatest.",
+ 75,
+ "So I do swear by the positions of the stars—",
+ 76,
+ "and this, if only you knew, is indeed a great oath—",
+ 77,
+ "that this is truly a noble Quran,",
+ 78,
+ "in a well-preserved Record,",
+ 79,
+ "touched by none except the purified ˹angels˺.",
+ 80,
+ "˹It is˺ a revelation from the Lord of all worlds.",
+ 81,
+ "How can you then take this message lightly,",
+ 82,
+ "and repay ˹Allah for˺ your provisions with denial? ",
+ 83,
+ "Why then ˹are you helpless˺ when the soul ˹of a dying person˺ reaches ˹their˺ throat,",
+ 84,
+ "while you are looking on?",
+ 85,
+ "And We are nearer to such a person than you, but you cannot see.",
+ 86,
+ "Now, if you are not subject to Our Will ˹as you claim˺,",
+ 87,
+ "bring that soul back, if what you say is true.",
+ 88,
+ "So, if the deceased is one of those brought near ˹to Us˺,",
+ 89,
+ "then ˹such a person will have˺ serenity, fragrance, and a Garden of Bliss.",
+ 90,
+ "And if the deceased is one of the people of the right,",
+ 91,
+ "then ˹they will be told,˺ “Greetings to you from the people of the right.”",
+ 92,
+ "But if such person is one of the misguided deniers,",
+ 93,
+ "then their accommodation will be boiling water ˹to drink˺",
+ 94,
+ "and burning in Hellfire.",
+ 95,
+ "Indeed, this is the absolute truth.",
+ 96,
+ "So glorify the Name of your Lord, the Greatest."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/57.json b/share/quran-json/TheQuran/en/57.json
new file mode 100644
index 0000000..25bee1c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/57.json
@@ -0,0 +1,76 @@
+[
+ {
+ "id": "57",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Hadid",
+ "translated_name": "The Iron",
+ "verse_count": 29,
+ "slug": "al-hadid",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1583,
+ 1610,
+ 1583
+ ]
+ },
+ 1,
+ "Whatever is in the heavens and the earth glorifies Allah, for He is the Almighty, All-Wise.",
+ 2,
+ "To Him belongs the kingdom of the heavens and the earth. He gives life and causes death. And He is Most Capable of everything.",
+ 3,
+ "He is the First and the Last, the Most High and Most Near, and He has ˹perfect˺ knowledge of all things.",
+ 4,
+ "He is the One Who created the heavens and the earth in six Days, then established Himself on the Throne. He knows whatever goes into the earth and whatever comes out of it, and whatever descends from the sky and whatever ascends into it. And He is with you wherever you are. For Allah is All-Seeing of what you do.",
+ 5,
+ "To Him belongs the kingdom of the heavens and the earth. And to Allah all matters are returned.",
+ 6,
+ "He merges the night into day and the day into night. And He knows best what is ˹hidden˺ in the heart.",
+ 7,
+ "Believe in Allah and His Messenger, and donate from what He has entrusted you with. So those of you who believe and donate will have a mighty reward.",
+ 8,
+ "Why do you not believe in Allah while the Messenger is inviting you to have faith in your Lord, although He has already taken your covenant, if you will ever believe.",
+ 9,
+ "He is the One Who sends down clear revelations to His servant to bring you out of darkness and into light. For indeed Allah is Ever Gracious and Most Merciful to you.",
+ 10,
+ "And why should you not spend in the cause of Allah, while Allah is the ˹sole˺ inheritor of the heavens and the earth? Those of you who donated and fought before the victory ˹over Mecca˺ are unparalleled. They are far greater in rank than those who donated and fought afterwards. Yet Allah has promised each a fine reward. And Allah is All-Aware of what you do.",
+ 11,
+ "Who is it that will lend to Allah a good loan which Allah will multiply ˹many times over˺ for them, and they will have an honourable reward?",
+ 12,
+ "On that Day you will see believing men and women with their light shining ahead of them and on their right. ˹They will be told,˺ “Today you have good news of Gardens, under which rivers flow, ˹for you˺ to stay in forever. This is ˹truly˺ the ultimate triumph.”",
+ 13,
+ "On that Day hypocrite men and women will beg the believers, “Wait for us so that we may have some of your light.” It will be said ˹mockingly˺, “Go back ˹to the world˺ and seek a light ˹there˺!” Then a ˹separating˺ wall with a gate will be erected between them. On the near side will be grace and on the far side will be torment.",
+ 14,
+ "The tormented will cry out to those graced, “Were we not with you?” They will reply, “Yes ˹you were˺. But you chose to be tempted ˹by hypocrisy˺, ˹eagerly˺ awaited ˹our demise˺, doubted ˹the truth˺, and were deluded by false hopes until Allah’s decree ˹of your death˺ came to pass. And ˹so˺ the Chief Deceiver deceived you about Allah.",
+ 15,
+ "So Today no ransom will be accepted from you ˹hypocrites˺, nor from the disbelievers. Your home is the Fire—it is the ˹only˺ fitting place for you. What an evil destination!”",
+ 16,
+ "Has the time not yet come for believers’ hearts to be humbled at the remembrance of Allah and what has been revealed of the truth, and not be like those given the Scripture before—˹those˺ who were spoiled for so long that their hearts became hardened. And many of them are ˹still˺ rebellious.",
+ 17,
+ "Know that Allah revives the earth after its death. We have certainly made the signs clear for you so perhaps you will understand.",
+ 18,
+ "Indeed, those men and women who give in charity and lend to Allah a good loan will have it multiplied for them, and they will have an honourable reward.",
+ 19,
+ "˹As for˺ those who believe in Allah and His messengers, it is they who are ˹truly˺ the people of truth. And the martyrs, with their Lord, will have their reward and their light. But ˹as for˺ those who disbelieve and reject Our signs, it is they who will be the residents of the Hellfire.",
+ 20,
+ "Know that this worldly life is no more than play, amusement, luxury, mutual boasting, and competition in wealth and children. This is like rain that causes plants to grow, to the delight of the planters. But later the plants dry up and you see them wither, then they are reduced to chaff. And in the Hereafter there will be either severe punishment or forgiveness and pleasure of Allah, whereas the life of this world is no more than the delusion of enjoyment.",
+ 21,
+ "˹So˺ compete with one another for forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those who believe in Allah and His messengers. This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.",
+ 22,
+ "No calamity ˹or blessing˺ occurs on earth or in yourselves without being ˹written˺ in a Record before We bring it into being. This is certainly easy for Allah.",
+ 23,
+ "˹We let you know this˺ so that you neither grieve over what you have missed nor boast over what He has granted you. For Allah does not like whoever is arrogant, boastful—",
+ 24,
+ "those who are stingy and promote stinginess among people. And whoever turns away ˹should know that˺ Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.",
+ 25,
+ "Indeed, We sent Our messengers with clear proofs, and with them We sent down the Scripture and the balance ˹of justice˺ so that people may administer justice. And We sent down iron with its great might, benefits for humanity, and means for Allah to prove who ˹is willing to˺ stand up for Him and His messengers without seeing Him. Surely Allah is All-Powerful, Almighty.",
+ 26,
+ "And indeed, We sent Noah and Abraham and reserved prophethood and revelation for their descendants. Some of them are ˹rightly˺ guided, while most are rebellious.",
+ 27,
+ "Then in the footsteps of these ˹prophets˺, We sent Our messengers, and ˹after them˺ We sent Jesus, son of Mary, and granted him the Gospel, and instilled compassion and mercy into the hearts of his followers. As for monasticism, they made it up—We never ordained it for them—only seeking to please Allah, yet they did not ˹even˺ observe it strictly. So We rewarded those of them who were faithful. But most of them are rebellious.",
+ 28,
+ "O people of faith! Fear Allah and believe in His Messenger. ˹And˺ He will grant you a double share of His mercy, provide you with a light to walk in ˹on Judgment Day˺, and forgive you. For Allah is All-Forgiving, Most Merciful.",
+ 29,
+ "˹This is so˺ that the People of the Book ˹who deny the Prophet˺ may know that they do not have any control over Allah’s grace, and that all grace is in Allah’s Hands. He grants it to whoever He wills. For Allah is the Lord of infinite bounty."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/58.json b/share/quran-json/TheQuran/en/58.json
new file mode 100644
index 0000000..d7782a7
--- /dev/null
+++ b/share/quran-json/TheQuran/en/58.json
@@ -0,0 +1,64 @@
+[
+ {
+ "id": "58",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Mujadila",
+ "translated_name": "The Pleading Woman",
+ "verse_count": 22,
+ "slug": "al-mujadila",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1580,
+ 1575,
+ 1583,
+ 1604,
+ 1577
+ ]
+ },
+ 1,
+ "Indeed, Allah has heard the argument of the woman who pleaded with you ˹O Prophet˺ concerning her husband, and appealed to Allah. Allah has heard your exchange. Surely Allah is All-Hearing, All-Seeing.",
+ 2,
+ "Those of you who ˹sinfully˺ divorce their wives by comparing them to their mothers ˹should know that˺ their wives are in no way their mothers. None can be their mothers except those who gave birth to them. What they say is certainly detestable and false. Yet Allah is truly Ever-Pardoning, All-Forgiving.",
+ 3,
+ "Those who divorce their wives in this manner, then ˹wish to˺ retract what they said, must free a slave before they touch each other. This ˹penalty˺ is meant to deter you. And Allah is All-Aware of what you do.",
+ 4,
+ "But if the husband cannot afford this, let him then fast two consecutive months before the couple touch each other. But if he is unable ˹to fast˺, then let him feed sixty poor people. This is to re-affirm your faith in Allah and His Messenger. These are the limits set by Allah. And the disbelievers will suffer a painful punishment.",
+ 5,
+ "Indeed, those who defy Allah and His Messenger will be debased, just like those before them. We have certainly sent down clear revelations. And the disbelievers will suffer a humiliating punishment.",
+ 6,
+ "On the Day Allah resurrects them all together, He will then inform them of what they have done. Allah has kept account of it all, while they have forgotten it. For Allah is a Witness over all things.",
+ 7,
+ "Do you not see that Allah knows whatever is in the heavens and whatever is on the earth? If three converse privately, He is their fourth. If five, He is their sixth. Whether fewer or more, He is with them wherever they may be. Then, on the Day of Judgment, He will inform them of what they have done. Surely Allah has ˹perfect˺ knowledge of all things.",
+ 8,
+ "Have you not seen those who were forbidden from secret talks, yet they ˹always˺ return to what they were forbidden from, conspiring in sin, aggression, and disobedience to the Messenger? And when they come to you ˹O Prophet˺, they greet you not as Allah greets you, and say to one another, “Why does Allah not punish us for what we say?” Hell is enough for them—they will burn in it. And what an evil destination!",
+ 9,
+ "O believers! When you converse privately, let it not be for sin, aggression, or disobedience to the Messenger, but let it be for goodness and righteousness. And fear Allah, to Whom you will ˹all˺ be gathered.",
+ 10,
+ "Secret talks are only inspired by Satan to grieve the believers. Yet he cannot harm them whatsoever except by Allah’s Will. So in Allah let the believers put their trust.",
+ 11,
+ "O believers! When you are told to make room in gatherings, then do so. Allah will make room for you ˹in His grace˺. And if you are told to rise, then do so. Allah will elevate those of you who are faithful, and ˹raise˺ those gifted with knowledge in rank. And Allah is All-Aware of what you do.",
+ 12,
+ "O believers! When you consult the Messenger privately, give something in charity before your consultation. That is better and purer for you. But if you lack the means, then Allah is truly All-Forgiving, Most Merciful.",
+ 13,
+ "Are you afraid of spending in charity before your private consultations ˹with him˺? Since you are unable to do so, and Allah has turned to you in mercy, then ˹continue to˺ establish prayer, pay alms-tax, and obey Allah and His Messenger. And Allah is All-Aware of what you do.",
+ 14,
+ "Have you not seen those ˹hypocrites˺ who ally themselves with a people with whom Allah is displeased? They are neither with you nor with them. And they swear to lies knowingly.",
+ 15,
+ "Allah has prepared for them a severe punishment. Evil indeed is what they do.",
+ 16,
+ "They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the cause of Allah. So they will suffer a humiliating punishment.",
+ 17,
+ "Neither their wealth nor children will be of any help to them against Allah whatsoever. It is they who will be the residents of the Fire. They will be there forever.",
+ 18,
+ "On the Day Allah resurrects them all, they will ˹falsely˺ swear to Him as they swear to you, thinking they have something to stand on. Indeed, it is they who are the ˹total˺ liars.",
+ 19,
+ "Satan has taken hold of them, causing them to forget the remembrance of Allah. They are the party of Satan. Surely Satan’s party is bound to lose.",
+ 20,
+ "˹As for˺ those who defy Allah and His Messenger, they will definitely be among the most debased.",
+ 21,
+ "Allah has decreed, “I and My messengers will certainly prevail.” Surely Allah is All-Powerful, Almighty.",
+ 22,
+ "You will never find a people who ˹truly˺ believe in Allah and the Last Day loyal to those who defy Allah and His Messenger, even if they were their parents, children, siblings, or extended family. For those ˹believers˺, Allah has instilled faith in their hearts and strengthened them with a spirit from Him. He will admit them into Gardens under which rivers flow, to stay there forever. Allah is pleased with them and they are pleased with Him. They are the party of Allah. Indeed, Allah’s party is bound to succeed."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/59.json b/share/quran-json/TheQuran/en/59.json
new file mode 100644
index 0000000..c045446
--- /dev/null
+++ b/share/quran-json/TheQuran/en/59.json
@@ -0,0 +1,65 @@
+[
+ {
+ "id": "59",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Hashr",
+ "translated_name": "The Exile",
+ "verse_count": 24,
+ "slug": "al-hashr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1588,
+ 1585
+ ]
+ },
+ 1,
+ "Whatever is in the heavens and whatever is on the earth glorifies Allah. For He is the Almighty, All-Wise.",
+ 2,
+ "He is the One Who expelled the disbelievers of the People of the Book from their homes for ˹their˺ first banishment ˹ever˺. You never thought they would go. And they thought their strongholds would put them out of Allah’s reach. But ˹the decree of˺ Allah came upon them from where they never expected. And He cast horror into their hearts so they destroyed their houses with their own hands and the hands of the believers. So take a lesson ˹from this˺, O people of insight!",
+ 3,
+ "Had Allah not decreed exile for them, He would have certainly punished them in this world. And in the Hereafter they will suffer the punishment of the Fire.",
+ 4,
+ "This is because they defied Allah and His Messenger. And whoever defies Allah, then Allah is truly severe in punishment.",
+ 5,
+ "Whatever palm trees you ˹believers˺ cut down or left standing intact, it was ˹all˺ by Allah’s Will, so that He might disgrace the rebellious.",
+ 6,
+ "As for the gains Allah has turned over to His Messenger from them—you did not ˹even˺ spur on any horse or camel for such gains. But Allah gives authority to His messengers over whoever He wills. For Allah is Most Capable of everything.",
+ 7,
+ "As for gains granted by Allah to His Messenger from the people of ˹other˺ lands, they are for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers so that wealth may not merely circulate among your rich. Whatever the Messenger gives you, take it. And whatever he forbids you from, leave it. And fear Allah. Surely Allah is severe in punishment.",
+ 8,
+ "˹Some of the gains will be˺ for poor emigrants who were driven out of their homes and wealth, seeking Allah’s bounty and pleasure, and standing up for Allah and His Messenger. They are the ones true in faith.",
+ 9,
+ "As for those who had settled in the city and ˹embraced˺ the faith before ˹the arrival of˺ the emigrants, they love whoever immigrates to them, never having a desire in their hearts for whatever ˹of the gains˺ is given to the emigrants. They give ˹the emigrants˺ preference over themselves even though they may be in need. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.",
+ 10,
+ "And those who come after them will pray, “Our Lord! Forgive us and our fellow believers who preceded us in faith, and do not allow bitterness into our hearts towards those who believe. Our Lord! Indeed, You are Ever Gracious, Most Merciful.”",
+ 11,
+ "Have you ˹O Prophet˺ not seen the hypocrites who say to their fellow disbelievers from the People of the Book, “If you are expelled, we will certainly leave with you, and We will never obey anyone against you. And if you are fought against, we will surely help you.”? But Allah bears witness that they are truly liars.",
+ 12,
+ "Indeed, if they are expelled, the hypocrites will never leave with them. And if they are fought against, the hypocrites will never help them. And even if the hypocrites did so, they would certainly flee, then the disbelievers would be left with no help.",
+ 13,
+ "Indeed, there is more fear in their hearts for you ˹believers˺ than for Allah. That is because they are a people who do not comprehend.",
+ 14,
+ "Even united, they would not ˹dare˺ fight against you except ˹from˺ within fortified strongholds or from behind walls. Their malice for each other is intense: you think they are united, yet their hearts are divided. That is because they are a people with no ˹real˺ understanding.",
+ 15,
+ "They are ˹both just˺ like those who recently went down before them: they tasted the evil consequences of their doings. And they will suffer a painful punishment.",
+ 16,
+ "˹They are˺ like Satan when he lures someone to disbelieve. Then after they have done so, he will say ˹on Judgment Day˺, “I have absolutely nothing to do with you. I truly fear Allah—the Lord of all worlds.”",
+ 17,
+ "So they will both end up in the Fire, staying there forever. That is the reward of the wrongdoers.",
+ 18,
+ "O believers! Be mindful of Allah and let every soul look to what ˹deeds˺ it has sent forth for tomorrow. And fear Allah, ˹for˺ certainly Allah is All-Aware of what you do.",
+ 19,
+ "And do not be like those who forgot Allah, so He made them forget themselves. It is they who are ˹truly˺ rebellious.",
+ 20,
+ "The residents of the Fire cannot be equal to the residents of Paradise. ˹Only˺ the residents of Paradise will be successful.",
+ 21,
+ "Had We sent down this Quran upon a mountain, you would have certainly seen it humbled and torn apart in awe of Allah. We set forth such comparisons for people, ˹so˺ perhaps they may reflect.",
+ 22,
+ "He is Allah—there is no god ˹worthy of worship˺ except Him: Knower of the seen and unseen. He is the Most Compassionate, Most Merciful.",
+ 23,
+ "He is Allah—there is no god except Him: the King, the Most Holy, the All-Perfect, the Source of Serenity, the Watcher ˹of all˺, the Almighty, the Supreme in Might, the Majestic. Glorified is Allah far above what they associate with Him ˹in worship˺!",
+ 24,
+ "He is Allah: the Creator, the Inventor, the Shaper. He ˹alone˺ has the Most Beautiful Names. Whatever is in the heavens and the earth ˹constantly˺ glorifies Him. And He is the Almighty, All-Wise."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/6.json b/share/quran-json/TheQuran/en/6.json
new file mode 100644
index 0000000..24fc048
--- /dev/null
+++ b/share/quran-json/TheQuran/en/6.json
@@ -0,0 +1,349 @@
+[
+ {
+ "id": "6",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-An'am",
+ "translated_name": "The Cattle",
+ "verse_count": 165,
+ "slug": "al-anam",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1606,
+ 1593,
+ 1575,
+ 1605
+ ]
+ },
+ 1,
+ "All praise is for Allah Who created the heavens and the earth and made darkness and light. Yet the disbelievers set up equals to their Lord ˹in worship˺.",
+ 2,
+ "He is the One Who created you from clay, then appointed a term ˹for your death˺ and another known only to Him ˹for your resurrection˺—yet you continue to doubt!",
+ 3,
+ "He is the Only True God in the heavens and the earth. He knows whatever you conceal and whatever you reveal, and knows whatever you do.",
+ 4,
+ "Whenever a sign comes to them from their Lord, they turn away from it.",
+ 5,
+ "They have indeed rejected the truth when it came to them, so they will soon face the consequences of their ridicule.",
+ 6,
+ "Have they not seen how many ˹disbelieving˺ peoples We destroyed before them? We had made them more established in the land than you. We sent down abundant rain for them and made rivers flow at their feet. Then We destroyed them for their sins and replaced them with other peoples.",
+ 7,
+ "Had We sent down to you ˹O Prophet˺ a revelation in writing and they were to touch it with their own hands, the disbelievers would still have said, “This is nothing but pure magic!”",
+ 8,
+ "They say, “Why has no ˹visible˺ angel come with him?” Had We sent down an angel, the matter would have certainly been settled ˹at once˺, and they would have never been given more time ˹to repent˺.",
+ 9,
+ "And if We had sent an angel, We would have certainly made it ˹assume the form of˺ a man—leaving them more confused than they already are.",
+ 10,
+ "˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.",
+ 11,
+ "Say, “Travel throughout the land and see the fate of the deniers.”",
+ 12,
+ "Ask ˹them, O Prophet˺, “To whom belongs everything in the heavens and the earth?” Say, “To Allah!” He has taken upon Himself to be Merciful. He will certainly gather ˹all of˺ you together for the Day of Judgment—about which there is no doubt. But those who have ruined themselves will never believe.",
+ 13,
+ "To Him belongs whatever exists in the day and night. And He is the All-Hearing, All-Knowing.",
+ 14,
+ "Say, ˹O Prophet,˺ “Will I take any guardian other than Allah, the Originator of the heavens and the earth, Who provides for all and is not in need of provision?” Say, “I have been commanded to be the first to submit and not be one of the polytheists.”",
+ 15,
+ "Say, “I truly fear—if I were to disobey my Lord—the torment of a tremendous Day.”",
+ 16,
+ "Whoever is spared the torment of that Day will have certainly been shown Allah’s mercy. And that is the absolute triumph.",
+ 17,
+ "If Allah touches you with harm, none can undo it except Him. And if He touches you with a blessing, He is Most Capable of everything.",
+ 18,
+ "He reigns supreme over His creation. And He is the All-Wise, All-Aware.",
+ 19,
+ "Ask ˹them, O Prophet˺, “Who is the best witness?” Say, “Allah is! He is a Witness between me and you. And this Quran has been revealed to me so that, with it, I may warn you and whoever it reaches. Do you ˹pagans˺ testify that there are other gods besides Allah?” ˹Then˺ say, “I will never testify ˹to this˺!” ˹And˺ say, “There is only One God. And I totally reject whatever ˹idols˺ you associate with Him.”",
+ 20,
+ "Those to whom We gave the Scripture recognize him ˹to be a true prophet˺ as they recognize their own children. Those who have ruined themselves will never believe.",
+ 21,
+ "Who does more wrong than those who fabricate lies against Allah or deny His signs? Indeed, the wrongdoers will never succeed.",
+ 22,
+ "˹Consider˺ the Day We will gather them all together then ask those who associated others ˹with Allah in worship˺, “Where are those gods you used to claim?”",
+ 23,
+ "Their only argument will be: “By Allah, our Lord! We were never polytheists.”",
+ 24,
+ "See how they will lie about themselves and how those ˹gods˺ they fabricated will fail them!",
+ 25,
+ "There are some of them who ˹pretend to˺ listen to your recitation ˹of the Quran˺, but We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. Even if they were to see every sign, they still would not believe in them. The disbelievers would ˹even˺ come to argue with you, saying, “This ˹Quran˺ is nothing but ancient fables!”",
+ 26,
+ "They turn others away from the Prophet and distance themselves as well. They ruin none but themselves, yet they fail to perceive it.",
+ 27,
+ "If only you could see when they will be detained before the Fire! They will cry, “Oh! If only we could be sent back, we would never deny the signs of our Lord and we would ˹surely˺ be of the believers.”",
+ 28,
+ "But no! ˹They only say this˺ because the truth they used to hide will become all too clear to them. Even if they were to be sent back, they would certainly revert to what they were forbidden. Indeed they are liars!",
+ 29,
+ "They insisted, “There is nothing beyond this worldly life and we will never be resurrected.”",
+ 30,
+ "But if only you could see when they will be detained before their Lord! He will ask ˹them˺, “Is this ˹Hereafter˺ not the truth?” They will cry, “Absolutely, by our Lord!” He will say, “Then taste the punishment for your disbelief.”",
+ 31,
+ "Losers indeed are those who deny the meeting with Allah until the Hour takes them by surprise, then they will cry, “Woe to us for having ignored this!” They will bear ˹the burden of˺ their sins on their backs. Evil indeed is their burden!",
+ 32,
+ "This worldly life is no more than play and amusement, but far better is the ˹eternal˺ Home of the Hereafter for those mindful ˹of Allah˺. Will you not then understand?",
+ 33,
+ "We certainly know that what they say grieves you ˹O Prophet˺. It is not your honesty they question—it is Allah’s signs that the wrongdoers deny.",
+ 34,
+ "Indeed, messengers before you were rejected but patiently endured rejection and persecution until Our help came to them. And Allah’s promise ˹to help˺ is never broken. And you have already received some of the narratives of these messengers.",
+ 35,
+ "If you find their denial unbearable, then build—if you can—a tunnel through the earth or stairs to the sky to bring them a ˹more compelling˺ sign. Had Allah so willed, He could have guided them all. So do not be one of those ignorant ˹of this fact˺.",
+ 36,
+ "Only the attentive will respond ˹to your call˺. As for the dead, Allah will raise them up, then to Him they will ˹all˺ be returned.",
+ 37,
+ "They ask, “Why has no ˹other˺ sign been sent down to him from his Lord?” Say, ˹O Prophet,˺ “Allah certainly has the power to send down a sign”—though most of them do not know.",
+ 38,
+ "All living beings roaming the earth and winged birds soaring in the sky are communities like yourselves. We have left nothing out of the Record. Then to their Lord they will be gathered all together.",
+ 39,
+ "Those who deny Our signs are ˹wilfully˺ deaf and dumb—lost in darkness. Allah leaves whoever He wills to stray and guides whoever He wills to the Straight Way.",
+ 40,
+ "Ask ˹them, O Prophet˺, “Imagine if you were overwhelmed by Allah’s torment or the Hour—would you call upon any other than Allah ˹for help˺? ˹Answer me˺ if your claims are true!",
+ 41,
+ "No! He is the only One you would call. And if He willed, He could remove the affliction that made you invoke Him. Only then will you forget whatever you associate with Him ˹in worship˺.”",
+ 42,
+ "Indeed, We have sent messengers before you ˹O Prophet˺ to other people who We put through suffering and adversity ˹for their denial˺, so perhaps they would be humbled.",
+ 43,
+ "Why did they not humble themselves when We made them suffer? Instead, their hearts were hardened, and Satan made their misdeeds appealing to them.",
+ 44,
+ "When they became oblivious to warnings, We showered them with everything they desired. But just as they became prideful of what they were given, We seized them by surprise, then they instantly fell into despair!",
+ 45,
+ "So the wrongdoers were utterly uprooted. And all praise is for Allah—Lord of all worlds.",
+ 46,
+ "Ask ˹them, O Prophet˺, “Imagine if Allah were to take away your hearing or sight, or seal your hearts—who else other than Allah could restore it?” See ˹O Prophet˺ how We vary the signs, yet they still turn away.",
+ 47,
+ "Ask, “Imagine if Allah’s punishment were to overwhelm you with or without warning—who would be destroyed other than the wrongdoers?”",
+ 48,
+ "We have sent messengers only as deliverers of good news and as warners. Whoever believes and does good, there will be no fear for them, nor will they grieve.",
+ 49,
+ "But those who deny Our signs will be afflicted with punishment for their rebelliousness.",
+ 50,
+ "Say, ˹O Prophet,˺ “I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel. I only follow what is revealed to me.” Say, “Are those blind ˹to the truth˺ equal to those who can see? Will you not then reflect?”",
+ 51,
+ "Warn with this ˹Quran˺ those who are awed by the prospect of being gathered before their Lord—when they will have no protector or intercessor besides Him—so perhaps they will be mindful ˹of Him˺.",
+ 52,
+ "˹O Prophet!˺ Do not dismiss those ˹poor believers˺ who invoke their Lord morning and evening, seeking His pleasure. You are not accountable for them whatsoever, nor are they accountable for you. So do not dismiss them, or you will be one of the wrongdoers.",
+ 53,
+ "In this way We have tested some by means of others, so those ˹disbelievers˺ may say, “Has Allah favoured these ˹poor believers˺ out of all of us?” Does Allah not best recognize the grateful?",
+ 54,
+ "When the believers in Our revelations come to you, say, “Peace be upon you! Your Lord has taken upon Himself to be Merciful. Whoever among you commits evil ignorantly ˹or recklessly˺ then repents afterwards and mends their ways, then Allah is truly All-Forgiving, Most Merciful.”",
+ 55,
+ "This is how We make Our signs clear, so the way of the wicked may become distinct.",
+ 56,
+ "Say, ˹O Prophet,˺ “I have been forbidden to worship those you invoke besides Allah.” Say, “I will not follow your desires, for I then would certainly be astray and not one of those ˹rightly˺ guided.”",
+ 57,
+ "Say, ˹O Prophet,˺ “Indeed, I stand on a clear proof from my Lord—yet you have denied it. That ˹torment˺ you seek to hasten is not within my power. It is only Allah Who decides ˹its time˺. He declares the truth. And He is the Best of Judges.”",
+ 58,
+ "Say ˹also˺, “If what you seek to hasten were within my power, the matter between us would have already been settled. But Allah knows the wrongdoers best.”",
+ 59,
+ "With Him are the keys of the unseen—no one knows them except Him. And He knows what is in the land and sea. Not even a leaf falls without His knowledge, nor a grain in the darkness of the earth or anything—green or dry—but is ˹written˺ in a perfect Record. ",
+ 60,
+ "He is the One Who calls back your souls by night and knows what you do by day, then revives you daily to complete your appointed term. To Him is your ˹ultimate˺ return, then He will inform you of what you used to do.",
+ 61,
+ "He reigns supreme over all of His creation, and sends recording-angels, watching over you. When death comes to any of you, Our angels take their soul, never neglecting this duty.",
+ 62,
+ "Then they are ˹all˺ returned to Allah—their True Master. Judgment is His ˹alone˺. And He is the Swiftest Reckoner.",
+ 63,
+ "Say, ˹O Prophet,˺ “Who rescues you from the darkest times on land and at sea? He ˹alone˺ you call upon with humility, openly and secretly: “If You rescue us from this, we will be ever grateful.”",
+ 64,
+ "Say, “˹Only˺ Allah rescues you from this and any other distress, yet you associate others with Him ˹in worship˺.”",
+ 65,
+ "Say, “He ˹alone˺ has the power to unleash upon you a torment from above or below you or split you into ˹conflicting˺ factions and make you taste the violence of one another.” See how We vary the signs, so perhaps they will comprehend.",
+ 66,
+ "Still your people ˹O Prophet˺ have rejected this ˹Quran˺, although it is the truth. Say, “I am not a keeper over you.”",
+ 67,
+ "Every ˹destined˺ matter has a ˹set˺ time to transpire. And you will soon come to know.",
+ 68,
+ "And when you come across those who ridicule Our revelations, do not sit with them unless they engage in a different topic. Should Satan make you forget, then once you remember, do not ˹continue to˺ sit with the wrongdoing people.",
+ 69,
+ "Those mindful ˹of Allah˺ will not be accountable for those ˹who ridicule it˺ whatsoever—their duty is to advise, so perhaps the ridiculers will abstain.",
+ 70,
+ "And leave those who take this faith ˹of Islam˺ as mere play and amusement and are deluded by ˹their˺ worldly life. Yet remind them by this ˹Quran˺, so no one should be ruined for their misdeeds. They will have no protector or intercessor other than Allah. Even if they were to offer every ˹possible˺ ransom, none will be accepted from them. Those are the ones who will be ruined for their misdeeds. They will have a boiling drink and painful punishment for their disbelief.",
+ 71,
+ "Ask ˹them, O Prophet˺, “Should we invoke, other than Allah, those ˹idols˺ which cannot benefit or harm us, and turn back to disbelief after Allah has guided us? ˹If we do so, we will be˺ like those disoriented by devils in the wilderness, while their companions call them to guidance, ˹saying˺, ‘Come to us!’ Say, ˹O Prophet,˺ “Allah’s guidance is the ˹only˺ true guidance. And we are commanded to submit to the Lord of all worlds,",
+ 72,
+ "establish prayer, and be mindful of Him. To Him you will all be gathered together.",
+ 73,
+ "He is the One Who created the heavens and the earth in truth. On the Day ˹of Judgment˺ He will say, ‘Be!’ And there will be! His command is truth. All authority is His ˹alone˺ on the Day the Trumpet will be blown. He is the Knower of all—seen or unseen. And He is the All-Wise, All-Aware.”",
+ 74,
+ "And ˹remember˺ when Abraham said to his father, Ȃzar, “Do you take idols as gods? It is clear to me that you and your people are entirely misguided.”",
+ 75,
+ "We also showed Abraham the wonders of the heavens and the earth, so he would be sure in faith.",
+ 76,
+ "When the night grew dark upon him, he saw a star and said, “This is my Lord!” But when it set, he said, “I do not love things that set.”",
+ 77,
+ "Then when he saw the moon rising, he said, “This one is my Lord!” But when it disappeared, he said, “If my Lord does not guide me, I will certainly be one of the misguided people.”",
+ 78,
+ "Then when he saw the sun shining, he said, “This must be my Lord—it is the greatest!” But again when it set, he declared, “O my people! I totally reject whatever you associate ˹with Allah in worship˺.",
+ 79,
+ "I have turned my face towards the One Who has originated the heavens and the earth—being upright—and I am not one of the polytheists.”",
+ 80,
+ "And his people argued with him. He responded, “Are you arguing with me about Allah, while He has guided me? I am not afraid of whatever ˹idols˺ you associate with Him—˹none can harm me,˺ unless my Lord so wills. My Lord encompasses everything in ˹His˺ knowledge. Will you not be mindful?",
+ 81,
+ "And how should I fear your associate-gods, while you have no fear in associating ˹others˺ with Allah—a practice He has never authorized? Which side has more right to security? ˹Tell me˺ if you really know!”",
+ 82,
+ "It is ˹only˺ those who are faithful and do not tarnish their faith with falsehood who are guaranteed security and are ˹rightly˺ guided.",
+ 83,
+ "This was the argument We gave Abraham against his people. We elevate in rank whoever We please. Surely your Lord is All-Wise, All-Knowing.",
+ 84,
+ "And We blessed him with Isaac and Jacob. We guided them all as We previously guided Noah and those among his descendants: David, Solomon, Job, Joseph, Moses, and Aaron. This is how We reward the good-doers.",
+ 85,
+ "Likewise, ˹We guided˺ Zachariah, John, Jesus, and Elias, who were all of the righteous.",
+ 86,
+ "˹We also guided˺ Ishmael, Elisha, Jonah, and Lot, favouring each over other people ˹of their time˺.",
+ 87,
+ "And ˹We favoured˺ some of their forefathers, their descendants, and their brothers. We chose them and guided them to the Straight Path.",
+ 88,
+ "This is Allah’s guidance with which He guides whoever He wills of His servants. Had they associated others with Him ˹in worship˺, their ˹good˺ deeds would have been wasted.",
+ 89,
+ "Those were the ones to whom We gave the Scripture, wisdom, and prophethood. But if these ˹pagans˺ disbelieve in this ˹message˺, then We have already entrusted it to a people who will never disbelieve in it.",
+ 90,
+ "These ˹prophets˺ were ˹rightly˺ guided by Allah, so follow their guidance. Say, “I ask no reward of you for this ˹Quran˺—it is a reminder to the whole world.”",
+ 91,
+ "And they have not shown Allah His proper reverence when they said, “Allah has revealed nothing to any human being.” Say, ˹O Prophet,˺ “Who then revealed the Book brought forth by Moses as a light and guidance for people, which you split into separate sheets—revealing some and hiding much? You have been taught ˹through this Quran˺ what neither you nor your forefathers knew.” Say, ˹O Prophet,˺ “Allah ˹revealed it˺!” Then leave them to amuse themselves with falsehood.",
+ 92,
+ "This is a blessed Book which We have revealed—confirming what came before it—so you may warn the Mother of Cities and everyone around it. Those who believe in the Hereafter ˹truly˺ believe in it and guard their prayers.",
+ 93,
+ "Who does more wrong than the one who fabricates lies against Allah or claims, “I have received revelations!”—although nothing was revealed to them—or the one who says, “I can reveal the like of Allah’s revelations!”? If you ˹O Prophet˺ could only see the wrongdoers in the throes of death while the angels are stretching out their hands ˹saying˺, “Give up your souls! Today you will be rewarded with the torment of disgrace for telling lies about Allah and for being arrogant towards His revelations!”",
+ 94,
+ "˹Today˺ you have come back to Us all alone as We created you the first time—leaving behind everything We have provided you with. We do not see your intercessors with you—those you claimed were Allah’s partners ˹in worship˺. All your ties have been broken and all your claims have let you down.”",
+ 95,
+ "Indeed, Allah is the One Who causes seeds and fruit stones to sprout. He brings forth the living from the dead and the dead from the living. That is Allah! How can you then be deluded ˹from the truth˺?",
+ 96,
+ "He causes the dawn to break, and has made the night for rest and ˹made˺ the sun and the moon ˹to travel˺ with precision. That is the design of the Almighty, All-Knowing.",
+ 97,
+ "And He is the One Who has made the stars as your guide through the darkness of land and sea. We have already made the signs clear for people who know.",
+ 98,
+ "And He is the One Who originated you all from a single soul, then assigned you a place to live and another to ˹be laid to˺ rest. We have already made the signs clear for people who comprehend.",
+ 99,
+ "And He is the One Who sends down rain from the sky—causing all kinds of plants to grow—producing green stalks from which We bring forth clustered grain. And from palm trees come clusters of dates hanging within reach. ˹There are˺ also gardens of grapevines, olives, and pomegranates, similar ˹in shape˺ but dissimilar ˹in taste˺. Look at their fruit as it yields and ripens! Indeed, in these are signs for people who believe.",
+ 100,
+ "Yet they associate the jinn with Allah ˹in worship˺, even though He created them, and they falsely attribute to Him sons and daughters out of ignorance. Glorified and Exalted is He above what they claim!",
+ 101,
+ "˹He is˺ the Originator of the heavens and earth. How could He have children when He has no mate? He created all things and has ˹perfect˺ knowledge of everything.",
+ 102,
+ "That is Allah—your Lord! There is no god ˹worthy of worship˺ except Him. ˹He is˺ the Creator of all things, so worship Him ˹alone˺. And He is the Maintainer of everything.",
+ 103,
+ "No vision can encompass Him, but He encompasses all vision. For He is the Most Subtle, All-Aware. ",
+ 104,
+ "Indeed, there have come to you insights from your Lord. So whoever chooses to see, it is for their own good. But whoever chooses to be blind, it is to their own loss. And I am not a keeper over you.",
+ 105,
+ "And so We vary our signs to the extent that they will say, “You have studied ˹previous scriptures˺,” and We make this ˹Quran˺ clear for people who know.",
+ 106,
+ "˹O Prophet!˺ Follow what is revealed to you from your Lord—there is no god ˹worthy of worship˺ except Him—and turn away from the polytheists.",
+ 107,
+ "Had Allah willed, they would not have been polytheists. We have not appointed you as their keeper, nor are you their maintainer.",
+ 108,
+ "˹O believers!˺ Do not insult what they invoke besides Allah or they will insult Allah spitefully out of ignorance. This is how We have made each people’s deeds appealing to them. Then to their Lord is their return, and He will inform them of what they used to do.",
+ 109,
+ "They swear by Allah their most solemn oaths that if a sign were to come to them, they would certainly believe in it. Say, ˹O Prophet,˺ “Signs are only with Allah.” What will make you ˹believers˺ realize that even if a sign were to come to them, they still would not believe?",
+ 110,
+ "We turn their hearts and eyes away ˹from the truth˺ as they refused to believe at first, leaving them to wander blindly in their defiance.",
+ 111,
+ "Even if We had sent them the angels, made the dead speak to them, and assembled before their own eyes every sign ˹they demanded˺, they still would not have believed—unless Allah so willed. But most of them are ignorant ˹of this˺.",
+ 112,
+ "And so We have made for every prophet enemies—devilish humans and jinn—whispering to one another with elegant words of deception. Had it been your Lord’s Will, they would not have done such a thing. So leave them and their deceit,",
+ 113,
+ "so that the hearts of those who disbelieve in the Hereafter may be receptive to it, be pleased with it, and be persistent in their evil pursuits.",
+ 114,
+ "˹Say, O Prophet,˺ “Should I seek a judge other than Allah while He is the One Who has revealed for you the Book ˹with the truth˺ perfectly explained?” Those who were given the Scripture know that it has been revealed ˹to you˺ from your Lord in truth. So do not be one of those who doubt.",
+ 115,
+ "The Word of your Lord has been perfected in truth and justice. None can change His Words. And He is the All-Hearing, All- Knowing.",
+ 116,
+ "˹O Prophet!˺ If you were to obey most of those on earth, they would lead you away from Allah’s Way. They follow nothing but assumptions and do nothing but lie.",
+ 117,
+ "Indeed, your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.",
+ 118,
+ "So eat only of what is slaughtered in Allah’s Name if you truly believe in His revelations.",
+ 119,
+ "Why should you not eat of what is slaughtered in Allah’s Name when He has already explained to you what He has forbidden to you—except when compelled by necessity? Many ˹deviants˺ certainly mislead others by their whims out of ignorance. Surely your Lord knows the transgressors best.",
+ 120,
+ "Shun all sin—open and secret. Indeed, those who commit sin will be punished for what they earn.",
+ 121,
+ "Do not eat of what is not slaughtered in Allah’s Name. For that would certainly be ˹an act of˺ disobedience. Surely the devils whisper to their ˹human˺ associates to argue with you. If you were to obey them, then you ˹too˺ would be polytheists.",
+ 122,
+ "Can those who had been dead, to whom We gave life and a light with which they can walk among people, be compared to those in complete darkness from which they can never emerge? That is how the misdeeds of the disbelievers have been made appealing to them.",
+ 123,
+ "And so We have placed in every society the most wicked to conspire in it. Yet they plot only against themselves, but they fail to perceive it.",
+ 124,
+ "Whenever a sign comes to them, they say, “We will never believe until we receive what Allah’s messengers received.” Allah knows best where to place His message. The wicked will soon be overwhelmed by humiliation from Allah and a severe punishment for their evil plots.",
+ 125,
+ "Whoever Allah wills to guide, He opens their heart to Islam. But whoever He wills to leave astray, He makes their chest tight and constricted as if they were climbing up into the sky. This is how Allah dooms those who disbelieve.",
+ 126,
+ "That is your Lord’s Path—perfectly straight. We have already made the signs clear to those who are mindful.",
+ 127,
+ "They will have the Home of Peace with their Lord, Who will be their Guardian because of what they used to do.",
+ 128,
+ "˹Consider˺ the Day He will gather them ˹all˺ together and say, “O assembly of jinn! You misled humans in great numbers.” And their human associates will say, “Our Lord! We benefited from each other’s company, but now we have reached the term which You appointed for us.” ˹Then˺ He will say, “The Fire is your home, yours to stay in forever, except whoever Allah wills to spare.” Surely your Lord is All-Wise, All-Knowing.",
+ 129,
+ "This is how We make the wrongdoers ˹destructive˺ allies of one another because of their misdeeds.",
+ 130,
+ "˹Allah will ask,˺ “O assembly of jinn and humans! Did messengers not come from among you, proclaiming My revelations and warning you of the coming of this Day of yours?” They will say, “We confess against ourselves!” For they have been deluded by ˹their˺ worldly life. And they will testify against themselves that they were disbelievers.",
+ 131,
+ "This ˹sending of the messengers˺ is because your Lord would never destroy a society for their wrongdoing while its people are unaware ˹of the truth˺.",
+ 132,
+ "They will each be assigned ranks according to their deeds. And your Lord is not unaware of what they do.",
+ 133,
+ "Your Lord is the Self-Sufficient, Full of Mercy. If He wills, He can do away with you and replace you with whoever He wills, just as He produced you from the offspring of other people.",
+ 134,
+ "Indeed, what you have been promised will certainly come to pass. And you will have no escape.",
+ 135,
+ "Say, ˹O Prophet,˺ “O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon know who will fare best in the end. Indeed, the wrongdoers will never succeed.”",
+ 136,
+ "The pagans set aside for Allah a share of the crops and cattle He created, saying, “This ˹portion˺ is for Allah,” so they claim, “and this ˹one˺ for our associate-gods.” Yet the portion of their associate-gods is not shared with Allah while Allah’s portion is shared with their associate-gods. What unfair judgment!",
+ 137,
+ "Likewise, the pagans’ evil associates have made it appealing to them to kill their own children—only leading to their destruction as well as confusion in their faith. Had it been Allah’s Will, they would not have done such a thing. So leave them and their falsehood.",
+ 138,
+ "They say, “These cattle and crops are reserved—none may eat them except those we permit,” so they claim. Some other cattle are exempted from labour and others are not slaughtered in Allah’s Name—falsely attributing lies to Him. He will repay them for their lies.",
+ 139,
+ "They ˹also˺ say, “The offspring of this cattle is reserved for our males and forbidden to our females; but if it is stillborn, they may all share it.” He will repay them for their falsehood. Surely He is All-Wise, All-Knowing.",
+ 140,
+ "Lost indeed are those who have murdered their own children foolishly out of ignorance and have forbidden what Allah has provided for them—falsely attributing lies to Allah. They have certainly strayed and are not ˹rightly˺ guided.",
+ 141,
+ "He is the One Who produces gardens—both cultivated and wild—and palm trees, crops of different flavours, olives, and pomegranates—similar ˹in shape˺, but dissimilar ˹in taste˺. Eat of the fruit they bear and pay the dues at harvest, but do not waste. Surely He does not like the wasteful.",
+ 142,
+ "Some cattle are fit for labour, others are too small. Eat of what Allah has provided for you and do not follow Satan’s footsteps. Certainly, he is your sworn enemy.",
+ 143,
+ "˹Allah has created˺ four pairs: a pair of sheep and a pair of goats—ask ˹them, O Prophet˺, “Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Tell me with knowledge, if what you say is true.”—",
+ 144,
+ "and a pair of camels and a pair of oxen. Ask ˹them˺, “Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Or were you present when Allah gave you this commandment?” Who does more wrong than those who fabricate lies against Allah to mislead others without ˹any˺ knowledge? Surely Allah does not guide the wrongdoing people.",
+ 145,
+ "Say, ˹O Prophet,˺ “I do not find in what has been revealed to me anything forbidden to eat except carrion, running blood, swine—which is impure—or a sinful offering in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely your Lord is All-Forgiving, Most Merciful.”",
+ 146,
+ "For those who are Jewish, We forbade every animal with undivided hoofs and the fat of oxen and sheep except what is joined to their backs or intestines or mixed with bone. In this way We rewarded them for their violations. And We are certainly truthful.",
+ 147,
+ "But if they deny you ˹O Prophet˺, say, “Your Lord is infinite in mercy, yet His punishment will not be averted from the wicked people.”",
+ 148,
+ "The polytheists will argue, “Had it been Allah’s Will, neither we nor our forefathers would have associated others with Him ˹in worship˺ or made anything unlawful.” Likewise, those before them rejected the truth until they tasted Our punishment. Ask ˹them, O Prophet˺, “Do you have any knowledge that you can produce for us? Surely you follow nothing but ˹false˺ assumptions and you do nothing but lie.”",
+ 149,
+ "Say, “Allah has the most conclusive argument. Had it been His Will, He would have easily imposed guidance upon all of you.”",
+ 150,
+ "Say, ˹O Prophet,˺ “Bring your witnesses who can testify that Allah has forbidden this.” If they ˹falsely˺ testify, do not testify with them. And do not follow the desires of those who deny Our proofs, disbelieve in the Hereafter, and set up equals with their Lord.",
+ 151,
+ "Say, ˹O Prophet,˺ “Come! Let me recite to you what your Lord has forbidden to you: do not associate others with Him ˹in worship˺. ˹Do not fail to˺ honour your parents. Do not kill your children for fear of poverty. We provide for you and for them. Do not come near indecencies, openly or secretly. Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. This is what He has commanded you, so perhaps you will understand.",
+ 152,
+ "And do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Give full measure and weigh with justice. We never require of any soul more than what it can afford. Whenever you speak, maintain justice—even regarding a close relative. And fulfil your covenant with Allah. This is what He has commanded you, so perhaps you will be mindful.",
+ 153,
+ "Indeed, that is My Path—perfectly straight. So follow it and do not follow other ways, for they will lead you away from His Way. This is what He has commanded you, so perhaps you will be conscious ˹of Allah˺.”",
+ 154,
+ "Additionally, We gave Moses the Scripture, completing the favour upon those who do good, detailing everything, and as a guide and a mercy, so perhaps they would be certain of the meeting with their Lord.",
+ 155,
+ "This is a blessed Book We have revealed. So follow it and be mindful ˹of Allah˺, so you may be shown mercy.",
+ 156,
+ "You ˹pagans˺ can no longer say, “Scriptures were only revealed to two groups before us and we were unaware of their teachings.”",
+ 157,
+ "Nor can you say, “If only the Scriptures had been revealed to us, we would have been better guided than they.” Now there has come to you from your Lord a clear proof—a guide and mercy. Who then does more wrong than those who deny Allah’s revelations and turn away from them? We will reward those who turn away from Our revelations with a dreadful punishment for turning away.",
+ 158,
+ "Are they awaiting the coming of the angels, or your Lord ˹Himself˺, or some of your Lord’s ˹major˺ signs? On the Day your Lord’s signs arrive, belief will not benefit those who did not believe earlier or those who did no good through their faith. Say, “Keep waiting! We too are waiting.”",
+ 159,
+ "Indeed, you ˹O Prophet˺ are not responsible whatsoever for those who have divided their faith and split into sects. Their judgment rests only with Allah. And He will inform them of what they used to do.",
+ 160,
+ "Whoever comes with a good deed will be rewarded tenfold. But whoever comes with a bad deed will be punished for only one. None will be wronged.",
+ 161,
+ "Say, ˹O Prophet,˺ “Surely my Lord has guided me to the Straight Path, a perfect way, the faith of Abraham, the upright, who was not one of the polytheists.”",
+ 162,
+ "Say, “Surely my prayer, my worship, my life, and my death are all for Allah—Lord of all worlds.",
+ 163,
+ "He has no partner. So I am commanded, and so I am the first to submit.”",
+ 164,
+ "Say, ˹O Prophet,˺ “Should I seek a lord other than Allah while He is the Lord of everything?” No one will reap except what they sow. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of your differences.",
+ 165,
+ "He is the One Who has placed you as successors on earth and elevated some of you in rank over others, so He may test you with what He has given you. Surely your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/60.json b/share/quran-json/TheQuran/en/60.json
new file mode 100644
index 0000000..06a679b
--- /dev/null
+++ b/share/quran-json/TheQuran/en/60.json
@@ -0,0 +1,46 @@
+[
+ {
+ "id": "60",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Mumtahanah",
+ "translated_name": "She that is to be examined",
+ "verse_count": 13,
+ "slug": "al-mumtahanah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1605,
+ 1578,
+ 1581,
+ 1606,
+ 1577
+ ]
+ },
+ 1,
+ "O believers! Do not take My enemies and yours as trusted allies, showing them affection even though they deny what has come to you of the truth. They drove the Messenger and yourselves out ˹of Mecca˺, simply for your belief in Allah, your Lord. If you ˹truly˺ emigrated to struggle in My cause and seek My pleasure, ˹then do not take them as allies,˺ disclosing secrets ˹of the believers˺ to the pagans out of affection for them, when I know best whatever you conceal and whatever you reveal. And whoever of you does this has truly strayed from the Right Way.",
+ 2,
+ "If they gain the upper hand over you, they would be your ˹open˺ enemies, unleashing their hands and tongues to harm you, and wishing that you would abandon faith.",
+ 3,
+ "Neither your relatives nor children will benefit you on Judgment Day—He will decide between you ˹all˺. For Allah is All-Seeing of what you do.",
+ 4,
+ "You already have an excellent example in Abraham and those with him, when they said to their people, “We totally dissociate ourselves from you and ˹shun˺ whatever ˹idols˺ you worship besides Allah. We reject you. The enmity and hatred that has arisen between us and you will last until you believe in Allah alone.” The only exception is when Abraham said to his father, “I will seek forgiveness for you,˹” adding, “but˺ I cannot protect you from Allah at all.” ˹The believers prayed,˺ “Our Lord! In You we trust. And to You we ˹always˺ turn. And to You is the final return.",
+ 5,
+ "Our Lord! Do not subject us to the persecution of the disbelievers. Forgive us, our Lord! You ˹alone˺ are truly the Almighty, All-Wise.”",
+ 6,
+ "You certainly have an excellent example in them for whoever has hope in Allah and the Last Day. But whoever turns away, then surely Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.",
+ 7,
+ "˹In time,˺ Allah may bring about goodwill between you and those of them you ˹now˺ hold as enemies. For Allah is Most Capable. And Allah is All-Forgiving, Most Merciful.",
+ 8,
+ "Allah does not forbid you from dealing kindly and fairly with those who have neither fought nor driven you out of your homes. Surely Allah loves those who are fair.",
+ 9,
+ "Allah only forbids you from befriending those who have fought you for ˹your˺ faith, driven you out of your homes, or supported ˹others˺ in doing so. And whoever takes them as friends, then it is they who are the ˹true˺ wrongdoers.",
+ 10,
+ "O believers! When the believing women come to you as emigrants, test their intentions—their faith is best known to Allah—and if you find them to be believers, then do not send them back to the disbelievers. These ˹women˺ are not lawful ˹wives˺ for the disbelievers, nor are the disbelievers lawful ˹husbands˺ for them. ˹But˺ repay the disbelievers whatever ˹dowries˺ they had paid. And there is no blame on you if you marry these ˹women˺ as long as you pay them their dowries. And do not hold on to marriage with polytheistic women. ˹But˺ demand ˹repayment of˺ whatever ˹dowries˺ you had paid, and let the disbelievers do the same. That is the judgment of Allah—He judges between you. And Allah is All-Knowing, All-Wise.",
+ 11,
+ "And if any of your wives desert you to the disbelievers, and later you take spoils from them, then pay those whose wives have gone, the equivalent of whatever ˹dowry˺ they had paid. And be mindful of Allah, in Whom you believe.",
+ 12,
+ "O Prophet! When the believing women come to you, pledging to you that they will neither associate anything with Allah ˹in worship˺, nor steal, nor fornicate, nor kill their children, nor falsely attribute ˹illegitimate˺ children to their husbands, nor disobey you in what is right, then accept their pledge, and ask Allah to forgive them. Surely Allah is All-Forgiving, Most Merciful.",
+ 13,
+ "O believers! Do not ally yourselves with a people Allah is displeased with. They already have no hope for the Hereafter, just like the disbelievers lying in ˹their˺ graves."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/61.json b/share/quran-json/TheQuran/en/61.json
new file mode 100644
index 0000000..31fad00
--- /dev/null
+++ b/share/quran-json/TheQuran/en/61.json
@@ -0,0 +1,44 @@
+[
+ {
+ "id": "61",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "As-Saf",
+ "translated_name": "The Ranks",
+ "verse_count": 14,
+ "slug": "as-saf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1589,
+ 1601
+ ]
+ },
+ 1,
+ "Whatever is in the heavens and whatever is on the earth glorifies Allah. For He ˹alone˺ is the Almighty, All-Wise.",
+ 2,
+ "O believers! Why do you say what you do not do?",
+ 3,
+ "How despicable it is in the sight of Allah that you say what you do not do!",
+ 4,
+ "Surely Allah loves those who fight in His cause in ˹solid˺ ranks as if they were one concrete structure.",
+ 5,
+ "˹Remember, O Prophet,˺ when Moses said to his people, “O my people! Why do you hurt me when you already know I am Allah’s messenger to you?” So when they ˹persistently˺ deviated, Allah caused their hearts to deviate. For Allah does not guide the rebellious people.",
+ 6,
+ "And ˹remember˺ when Jesus, son of Mary, said, “O children of Israel! I am truly Allah’s messenger to you, confirming the Torah which came before me, and giving good news of a messenger after me whose name will be Aḥmad.” Yet when the Prophet came to them with clear proofs, they said, “This is pure magic.”",
+ 7,
+ "Who does more wrong than the one who fabricates lies about Allah when invited to submit ˹to Him˺? For Allah does not guide the wrongdoing people.",
+ 8,
+ "They wish to extinguish Allah’s light with their mouths, but Allah will ˹certainly˺ perfect His light, even to the dismay of the disbelievers.",
+ 9,
+ "He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.",
+ 10,
+ "O believers! Shall I guide you to an exchange that will save you from a painful punishment?",
+ 11,
+ "˹It is to˺ have faith in Allah and His Messenger, and strive in the cause of Allah with your wealth and your lives. That is best for you, if only you knew.",
+ 12,
+ "He will forgive your sins, and admit you into Gardens under which rivers flow, and ˹house you in˺ splendid homes in the Gardens of Eternity. That is the ultimate triumph.",
+ 13,
+ "˹He will also give you˺ another favour that you long for: help from Allah and an imminent victory. ˹So˺ give good news ˹O Prophet˺ to the believers.",
+ 14,
+ "O believers! Stand up for Allah, as Jesus, son of Mary, asked the disciples, “Who will stand up with me for Allah?” The disciples replied, “We will stand up for Allah.” Then a group from the Children of Israel believed while another disbelieved. We then supported the believers against their enemies, so they prevailed."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/62.json b/share/quran-json/TheQuran/en/62.json
new file mode 100644
index 0000000..07131a7
--- /dev/null
+++ b/share/quran-json/TheQuran/en/62.json
@@ -0,0 +1,40 @@
+[
+ {
+ "id": "62",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Jumu'ah",
+ "translated_name": "The Congregation, Friday",
+ "verse_count": 11,
+ "slug": "al-jumuah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1580,
+ 1605,
+ 1593,
+ 1577
+ ]
+ },
+ 1,
+ "Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah—the King, the Most Holy, the Almighty, the All-Wise.",
+ 2,
+ "He is the One Who raised for the illiterate ˹people˺ a messenger from among themselves—reciting to them His revelations, purifying them, and teaching them the Book and wisdom, for indeed they had previously been clearly astray—",
+ 3,
+ "along with others of them who have not yet joined them ˹in faith˺. For He is the Almighty, All-Wise.",
+ 4,
+ "This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.",
+ 5,
+ "The example of those who were entrusted with ˹observing˺ the Torah but failed to do so, is that of a donkey carrying books. How evil is the example of those who reject Allah’s signs! For Allah does not guide the wrongdoing people.",
+ 6,
+ "Say, ˹O Prophet,˺ “O Jews! If you claim to be Allah’s chosen ˹people˺ out of all humanity, then wish for death, if what you say is true.”",
+ 7,
+ "But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.",
+ 8,
+ "Say, “The death you are running away from will inevitably come to you. Then you will be returned to the Knower of the seen and unseen, and He will inform you of what you used to do.”",
+ 9,
+ "O believers! When the call to prayer is made on Friday, then proceed ˹diligently˺ to the remembrance of Allah and leave off ˹your˺ business. That is best for you, if only you knew.",
+ 10,
+ "Once the prayer is over, disperse throughout the land and seek the bounty of Allah. And remember Allah often so you may be successful.",
+ 11,
+ "When they saw the fanfare along with the caravan, they ˹almost all˺ flocked to it, leaving you ˹O Prophet˺ standing ˹on the pulpit˺. Say, “What is with Allah is far better than amusement and merchandise. And Allah is the Best Provider.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/63.json b/share/quran-json/TheQuran/en/63.json
new file mode 100644
index 0000000..a54c9a3
--- /dev/null
+++ b/share/quran-json/TheQuran/en/63.json
@@ -0,0 +1,43 @@
+[
+ {
+ "id": "63",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Munafiqun",
+ "translated_name": "The Hypocrites",
+ "verse_count": 11,
+ "slug": "al-munafiqun",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1606,
+ 1575,
+ 1601,
+ 1602,
+ 1608,
+ 1606
+ ]
+ },
+ 1,
+ "When the hypocrites come to you ˹O Prophet˺, they say, “We bear witness that you are certainly the Messenger of Allah”—and surely Allah knows that you are His Messenger—but Allah bears witness that the hypocrites are truly liars.",
+ 2,
+ "They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the Way of Allah. Evil indeed is what they do!",
+ 3,
+ "This is because they believed and then abandoned faith. Therefore, their hearts have been sealed, so they do not comprehend.",
+ 4,
+ "When you see them, their appearance impresses you. And when they speak, you listen to their ˹impressive˺ speech. But they are ˹just˺ like ˹worthless˺ planks of wood leaned ˹against a wall˺. They think every cry is against them. They are the enemy, so beware of them. May Allah condemn them! How can they be deluded ˹from the truth˺?",
+ 5,
+ "When it is said to them, “Come! The Messenger of Allah will pray for you to be forgiven,” they turn their heads ˹in disgust˺, and you see them ˹O Prophet˺ turn away in arrogance.",
+ 6,
+ "It is the same whether you pray for their forgiveness or not, Allah will not forgive them. Surely Allah does not guide the rebellious people.",
+ 7,
+ "They are the ones who say ˹to one another˺, “Do not spend ˹anything˺ on those ˹emigrants˺ with the Messenger of Allah so that they will break away ˹from him˺.” But to Allah ˹alone˺ belong the treasuries of the heavens and the earth, yet the hypocrites do not comprehend.",
+ 8,
+ "They say, “If we return to Medina, the honourable will definitely expel the inferior.” But all honour and power belongs to Allah, His Messenger, and the believers, yet the hypocrites do not know.",
+ 9,
+ "O believers! Do not let your wealth or your children divert you from the remembrance of Allah. For whoever does so, it is they who are the ˹true˺ losers.",
+ 10,
+ "And donate from what We have provided for you before death comes to one of you, and you cry, “My Lord! If only You delayed me for a short while, I would give in charity and be one of the righteous.”",
+ 11,
+ "But Allah never delays a soul when its appointed time comes. And Allah is All-Aware of what you do."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/64.json b/share/quran-json/TheQuran/en/64.json
new file mode 100644
index 0000000..29bd6d6
--- /dev/null
+++ b/share/quran-json/TheQuran/en/64.json
@@ -0,0 +1,55 @@
+[
+ {
+ "id": "64",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "At-Taghabun",
+ "translated_name": "The Mutual Disillusion",
+ "verse_count": 18,
+ "slug": "at-taghabun",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1594,
+ 1575,
+ 1576,
+ 1606
+ ]
+ },
+ 1,
+ "Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah. The kingdom is His, and all praise is for Him. For He is Most Capable of everything.",
+ 2,
+ "He is the One Who created you, yet some of you are disbelievers while some are believers. And Allah is All-Seeing of what you do.",
+ 3,
+ "He created the heavens and the earth for a purpose. He shaped you ˹in the womb˺, perfecting your form. And to Him is the final return.",
+ 4,
+ "He knows whatever is in the heavens and the earth. And He knows whatever you conceal and whatever you reveal. For Allah knows best what is ˹hidden˺ in the heart.",
+ 5,
+ "Have the stories of those who disbelieved before not reached you ˹pagans˺? They tasted the evil consequences of their doings, and they will suffer a painful punishment.",
+ 6,
+ "That was because their messengers used to come to them with clear proofs, but they said ˹mockingly˺, “How can humans be our guides?” So they persisted in disbelief and turned away. And Allah was not in need ˹of their faith˺. For Allah is Self-Sufficient, Praiseworthy.",
+ 7,
+ "The disbelievers claim they will not be resurrected. Say, ˹O Prophet,˺ “Yes, by my Lord, you will surely be resurrected, then you will certainly be informed of what you have done. And that is easy for Allah.”",
+ 8,
+ "So believe in Allah and His Messenger and in the Light We have revealed. And Allah is All-Aware of what you do.",
+ 9,
+ "˹Consider˺ the Day He will gather you ˹all˺ for the Day of Gathering—that will be the Day of mutual loss and gain. So whoever believes in Allah and does good, He will absolve them of their sins and admit them into Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.",
+ 10,
+ "As for those who disbelieve and reject Our revelations, they will be the residents of the Fire, staying there forever. What an evil destination!",
+ 11,
+ "No calamity befalls ˹anyone˺ except by Allah’s Will. And whoever has faith in Allah, He will ˹rightly˺ guide their hearts ˹through adversity˺. And Allah has ˹perfect˺ knowledge of all things.",
+ 12,
+ "Obey Allah and obey the Messenger! But if you turn away, then Our Messenger’s duty is only to deliver ˹the message˺ clearly.",
+ 13,
+ "Allah—there is no god ˹worthy of worship˺ except Him. So in Allah let the believers put their trust.",
+ 14,
+ "O believers! Indeed, some of your spouses and children are enemies to you, so beware of them. But if you pardon, overlook, and forgive ˹their faults˺, then Allah is truly All-Forgiving, Most Merciful.",
+ 15,
+ "Your wealth and children are only a test, but Allah ˹alone˺ has a great reward.",
+ 16,
+ "So be mindful of Allah to the best of your ability, hear and obey, and spend in charity—that will be best for you. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.",
+ 17,
+ "If you lend to Allah a good loan, He will multiply it for you and forgive you. For Allah is Most Appreciative, Most Forbearing.",
+ 18,
+ "˹He is the˺ Knower of the seen and unseen—the Almighty, All-Wise."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/65.json b/share/quran-json/TheQuran/en/65.json
new file mode 100644
index 0000000..e646ad4
--- /dev/null
+++ b/share/quran-json/TheQuran/en/65.json
@@ -0,0 +1,42 @@
+[
+ {
+ "id": "65",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "At-Talaq",
+ "translated_name": "The Divorce",
+ "verse_count": 12,
+ "slug": "at-talaq",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1591,
+ 1604,
+ 1575,
+ 1602
+ ]
+ },
+ 1,
+ "O Prophet! ˹Instruct the believers:˺ When you ˹intend to˺ divorce women, then divorce them with concern for their waiting period, and count it accurately. And fear Allah, your Lord. Do not force them out of their homes, nor should they leave—unless they commit a blatant misconduct. These are the limits set by Allah. And whoever transgresses Allah’s limits has truly wronged his own soul. You never know, perhaps Allah will bring about a change ˹of heart˺ later. ",
+ 2,
+ "Then when they have ˹almost˺ reached the end of their waiting period, either retain them honourably or separate from them honourably. And call two of your reliable men to witness ˹either way˺—and ˹let the witnesses˺ bear true testimony for ˹the sake of˺ Allah. This is enjoined on whoever has faith in Allah and the Last Day. And whoever is mindful of Allah, He will make a way out for them,",
+ 3,
+ "and provide for them from sources they could never imagine. And whoever puts their trust in Allah, then He ˹alone˺ is sufficient for them. Certainly Allah achieves His Will. Allah has already set a destiny for everything.",
+ 4,
+ "As for your women past the age of menstruation, in case you do not know, their waiting period is three months, and those who have not menstruated as well. As for those who are pregnant, their waiting period ends with delivery. And whoever is mindful of Allah, He will make their matters easy for them.",
+ 5,
+ "This is the commandment of Allah, which He has revealed to you. And whoever is mindful of Allah, He will absolve them of their sins and reward them immensely.",
+ 6,
+ "Let them live where you live ˹during their waiting period˺, according to your means. And do not harass them to make their stay unbearable. If they are pregnant, then maintain them until they deliver. And if they nurse your child, compensate them, and consult together courteously. But if you fail to reach an agreement, then another woman will nurse ˹the child˺ for the father.",
+ 7,
+ "Let the man of wealth provide according to his means. As for the one with limited resources, let him provide according to whatever Allah has given him. Allah does not require of any soul beyond what He has given it. After hardship, Allah will bring about ease.",
+ 8,
+ "˹Imagine˺ how many societies rebelled against the commandments of their Lord and His messengers, so We called each ˹society˺ to a severe account and subjected them to a horrible punishment.",
+ 9,
+ "So they tasted the evil consequences of their doings, and the outcome of their doings was ˹total˺ loss.",
+ 10,
+ "Allah has ˹also˺ prepared for them a severe punishment. So fear Allah, O people of reason and faith. Allah has indeed revealed to you a Reminder,",
+ 11,
+ "˹and sent˺ a messenger reciting to you Allah’s revelations, making things clear so that He may bring those who believe and do good out of darkness and into light. And whoever believes in Allah and does good will be admitted by Him into Gardens under which rivers flow, to stay there for ever and ever. Allah will have indeed granted them an excellent provision.",
+ 12,
+ "Allah is the One Who created seven heavens ˹in layers˺, and likewise for the earth. The ˹divine˺ command descends between them so you may know that Allah is Most Capable of everything and that Allah certainly encompasses all things in ˹His˺ knowledge."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/66.json b/share/quran-json/TheQuran/en/66.json
new file mode 100644
index 0000000..5411ad1
--- /dev/null
+++ b/share/quran-json/TheQuran/en/66.json
@@ -0,0 +1,43 @@
+[
+ {
+ "id": "66",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "At-Tahrim",
+ "translated_name": "The Prohibition",
+ "verse_count": 12,
+ "slug": "at-tahrim",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1581,
+ 1585,
+ 1610,
+ 1605
+ ]
+ },
+ 1,
+ "O Prophet! Why do you prohibit ˹yourself˺ from what Allah has made lawful to you, seeking to please your wives? And Allah is All-Forgiving, Most Merciful.",
+ 2,
+ "Allah has already ordained for you ˹believers˺ the way to absolve yourselves from your oaths. For Allah is your Guardian. And He is the All-Knowing, All-Wise.",
+ 3,
+ "˹Remember˺ when the Prophet had ˹once˺ confided something to one of his wives, then when she disclosed it ˹to another wife˺ and Allah made it known to him, he presented ˹to her˺ part of what was disclosed and overlooked a part. So when he informed her of it, she exclaimed, “Who told you this?” He replied, “I was informed by the All-Knowing, All-Aware.”",
+ 4,
+ "˹It will be better˺ if you ˹wives˺ both turn to Allah in repentance, for your hearts have certainly faltered. But if you ˹continue to˺ collaborate against him, then ˹know that˺ Allah Himself is his Guardian. And Gabriel, the righteous believers, and the angels are ˹all˺ his supporters as well.",
+ 5,
+ "Perhaps, if he were to divorce you ˹all˺, his Lord would replace you with better wives who are submissive ˹to Allah˺, faithful ˹to Him˺, devout, repentant, dedicated to worship and fasting—previously married or virgins.",
+ 6,
+ "O believers! Protect yourselves and your families from a Fire whose fuel is people and stones, overseen by formidable and severe angels, who never disobey whatever Allah orders—always doing as commanded.",
+ 7,
+ "˹The deniers will then be told,˺ “O disbelievers! Make no excuses this Day! You are only rewarded for what you used to do.”",
+ 8,
+ "O believers! Turn to Allah in sincere repentance, so your Lord may absolve you of your sins and admit you into Gardens, under which rivers flow, on the Day Allah will not disgrace the Prophet or the believers with him. Their light will shine ahead of them and on their right. They will say, “Our Lord! Perfect our light for us, and forgive us. ˹For˺ You are truly Most Capable of everything.”",
+ 9,
+ "O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!",
+ 10,
+ "Allah sets forth an example for the disbelievers: the wife of Noah and the wife of Lot. Each was married to one of Our righteous servants, yet betrayed them. So their husbands were of no benefit to them against Allah whatsoever. Both were told, “Enter the Fire, along with the others!”",
+ 11,
+ "And Allah sets forth an example for the believers: the wife of Pharaoh, who prayed, “My Lord! Build me a house in Paradise near You, deliver me from Pharaoh and his ˹evil˺ doing, and save me from the wrongdoing people.”",
+ 12,
+ "˹There is˺ also ˹the example of˺ Mary, the daughter of ’Imrân, who guarded her chastity, so We breathed into her ˹womb˺ through Our angel ˹Gabriel˺. She testified to the words of her Lord and His Scriptures, and was one of the ˹sincerely˺ devout."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/67.json b/share/quran-json/TheQuran/en/67.json
new file mode 100644
index 0000000..586ba1b
--- /dev/null
+++ b/share/quran-json/TheQuran/en/67.json
@@ -0,0 +1,77 @@
+[
+ {
+ "id": "67",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Mulk",
+ "translated_name": "The Sovereignty",
+ "verse_count": 30,
+ "slug": "al-mulk",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1604,
+ 1603
+ ]
+ },
+ 1,
+ "Blessed is the One in Whose Hands rests all authority. And He is Most Capable of everything.",
+ 2,
+ "˹He is the One˺ Who created death and life in order to test which of you is best in deeds. And He is the Almighty, All-Forgiving.",
+ 3,
+ "˹He is the One˺ Who created seven heavens, one above the other. You will never see any imperfection in the creation of the Most Compassionate. So look again: do you see any flaws?",
+ 4,
+ "Then look again and again—your sight will return frustrated and weary.",
+ 5,
+ "And indeed, We adorned the lowest heaven with ˹stars like˺ lamps, and made them ˹as missiles˺ for stoning ˹eavesdropping˺ devils, for whom We have also prepared the torment of the Blaze. ",
+ 6,
+ "Those who disbelieve in their Lord will suffer the punishment of Hell. What an evil destination!",
+ 7,
+ "When they are tossed into it, they will hear its roaring as it boils over,",
+ 8,
+ "almost bursting in fury. Every time a group is cast into it, its keepers will ask them, “Did a warner not come to you?”",
+ 9,
+ "They will reply, “Yes, a warner did come to us, but we denied and said, ‘Allah has revealed nothing. You are extremely astray.’”",
+ 10,
+ "And they will lament, “If only we had listened and reasoned, we would not be among the residents of the Blaze!”",
+ 11,
+ "And so they will confess their sins. So away with the residents of the Blaze!",
+ 12,
+ "Indeed, those in awe of their Lord without seeing Him will have forgiveness and a mighty reward.",
+ 13,
+ "Whether you speak secretly or openly—He surely knows best what is ˹hidden˺ in the heart.",
+ 14,
+ "How could He not know His Own creation? For He ˹alone˺ is the Most Subtle, All-Aware.",
+ 15,
+ "He is the One Who smoothed out the earth for you, so move about in its regions and eat from His provisions. And to Him is the resurrection ˹of all˺.",
+ 16,
+ "Do you feel secure that the One Who is in heaven will not cause the earth to swallow you up as it quakes violently?",
+ 17,
+ "Or do you feel secure that the One Who is in heaven will not unleash upon you a storm of stones. Only then would you know how ˹serious˺ My warning was!",
+ 18,
+ "And certainly those before them denied ˹as well˺, then how severe was My response!",
+ 19,
+ "Have they not seen the birds above them, spreading and folding their wings? None holds them up except the Most Compassionate. Indeed, He is All-Seeing of everything.",
+ 20,
+ "Also, which ˹powerless˺ force will come to your help instead of the Most Compassionate? Indeed, the disbelievers are only ˹lost˺ in delusion.",
+ 21,
+ "Or who is it that will provide for you if He withholds His provision? In fact, they persist in arrogance and aversion ˹to the truth˺.",
+ 22,
+ "Who is ˹rightly˺ guided: the one who crawls facedown or the one who walks upright on the Straight Path?",
+ 23,
+ "Say, ˹O Prophet,˺ “He is the One Who brought you into being and gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.”",
+ 24,
+ "˹Also˺ say, “He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered.”",
+ 25,
+ "˹Still˺ they ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”",
+ 26,
+ "Say, ˹O Prophet,˺ “That knowledge is with Allah alone, and I am only sent with a clear warning.”",
+ 27,
+ "Then when they see the torment drawing near, the faces of the disbelievers will become gloomy, and it will be said ˹to them˺, “This is what you claimed would never come.” ",
+ 28,
+ "Say, ˹O Prophet,˺ “Consider this: whether Allah causes me and those with me to die or shows us mercy, who will save the disbelievers from a painful punishment?”",
+ 29,
+ "Say, “He is the Most Compassionate—in Him ˹alone˺ we believe, and in Him ˹alone˺ we trust. You will soon know who is clearly astray.”",
+ 30,
+ "Say, “Consider this: if your water were to sink ˹into the earth˺, then who ˹else˺ could bring you flowing water?”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/68.json b/share/quran-json/TheQuran/en/68.json
new file mode 100644
index 0000000..8b6a1ed
--- /dev/null
+++ b/share/quran-json/TheQuran/en/68.json
@@ -0,0 +1,121 @@
+[
+ {
+ "id": "68",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qalam",
+ "translated_name": "The Pen",
+ "verse_count": 52,
+ "slug": "al-qalam",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1604,
+ 1605
+ ]
+ },
+ 1,
+ "Nũn. By the pen and what everyone writes!",
+ 2,
+ "By the grace of your Lord, you ˹O Prophet˺ are not insane.",
+ 3,
+ "You will certainly have a never-ending reward.",
+ 4,
+ "And you are truly ˹a man˺ of outstanding character.",
+ 5,
+ "Soon you and the pagans will see,",
+ 6,
+ "which of you is mad.",
+ 7,
+ "Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.",
+ 8,
+ "So do not give in to the deniers.",
+ 9,
+ "They wish you would compromise so they would yield ˹to you˺.",
+ 10,
+ "And do not obey the despicable, vain oath-taker,",
+ 11,
+ "slanderer, gossip-monger,",
+ 12,
+ "withholder of good, transgressor, evildoer,",
+ 13,
+ "brute, and—on top of all that—an illegitimate child.",
+ 14,
+ "Now, ˹simply˺ because he has been blessed with ˹abundant˺ wealth and children,",
+ 15,
+ "whenever Our revelations are recited to him, he says, “Ancient fables!”",
+ 16,
+ "We will soon mark his snout. ",
+ 17,
+ "Indeed, We have tested those ˹Meccans˺ as We tested the owners of the garden—when they swore they would surely harvest ˹all˺ its fruit in the early morning,",
+ 18,
+ "leaving no thought for Allah’s Will.",
+ 19,
+ "Then it was struck by a torment from your Lord while they slept,",
+ 20,
+ "so it was reduced to ashes.",
+ 21,
+ "Then by daybreak they called out to each other,",
+ 22,
+ "˹saying,˺ “Go early to your harvest, if you want to pick ˹all˺ the fruit.”",
+ 23,
+ "So they went off, whispering to one another,",
+ 24,
+ "“Do not let any poor person enter your garden today.”",
+ 25,
+ "And they proceeded early, totally fixated on their purpose.",
+ 26,
+ "But when they saw it ˹devastated˺, they cried, “We must have lost ˹our˺ way!",
+ 27,
+ "In fact, we have been deprived ˹of our livelihood˺.”",
+ 28,
+ "The most sensible of them said, “Did I not urge you to say, ‘Allah willing.’?”",
+ 29,
+ "They replied, “Glory be to our Lord! We have truly been wrongdoers.”",
+ 30,
+ "Then they turned on each other, throwing blame.",
+ 31,
+ "They said, “Woe to us! We have certainly been transgressors.",
+ 32,
+ "We trust our Lord will give us a better garden than this, ˹for˺ we are indeed turning to our Lord with hope.”",
+ 33,
+ "That is the ˹way of Our˺ punishment ˹in this world˺. But the punishment of the Hereafter is certainly far worse, if only they knew. ",
+ 34,
+ "Indeed, the righteous will have the Gardens of Bliss with their Lord.",
+ 35,
+ "Should We then treat those who have submitted like the wicked?",
+ 36,
+ "What is the matter with you? How do you judge?",
+ 37,
+ "Or do you have a scripture, in which you read",
+ 38,
+ "that you will have whatever you choose?",
+ 39,
+ "Or do you have oaths binding on Us until the Day of Judgment that you will have whatever you decide?",
+ 40,
+ "Ask them ˹O Prophet˺ which of them can guarantee all that.",
+ 41,
+ "Or do they have associate-gods ˹supporting this claim˺? Then let them bring forth their associate-gods, if what they say is true.",
+ 42,
+ "˹Beware of˺ the Day the Shin ˹of Allah˺ will be bared, and the wicked will be asked to prostrate, but they will not be able to do so,",
+ 43,
+ "with eyes downcast, totally covered with disgrace. For they were ˹always˺ called to prostrate ˹in the world˺ when they were fully capable ˹but they chose not to˺.",
+ 44,
+ "So leave to Me ˹O Prophet˺ those who reject this message. We will gradually draw them to destruction in ways they cannot comprehend.",
+ 45,
+ "I ˹only˺ delay their end for a while, but My planning is flawless.",
+ 46,
+ "Or are you asking them for a reward ˹for the message˺ so that they are overburdened by debt?",
+ 47,
+ "Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?",
+ 48,
+ "So be patient with your Lord’s decree, and do not be like ˹Jonah,˺ the Man of the Whale, who cried out ˹to Allah˺, in total distress.",
+ 49,
+ "Had he not been shown grace by his Lord, he would have certainly been cast onto the open ˹shore˺, still blameworthy.",
+ 50,
+ "Then his Lord chose him, making him one of the righteous.",
+ 51,
+ "The disbelievers would almost cut you down with their eyes when they hear ˹you recite˺ the Reminder, and say, “He is certainly a madman.”",
+ 52,
+ "But it is simply a reminder to the whole world."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/69.json b/share/quran-json/TheQuran/en/69.json
new file mode 100644
index 0000000..1cdb17c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/69.json
@@ -0,0 +1,122 @@
+[
+ {
+ "id": "69",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Haqqah",
+ "translated_name": "The Reality",
+ "verse_count": 52,
+ "slug": "al-haqqah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1575,
+ 1602,
+ 1577
+ ]
+ },
+ 1,
+ "The Inevitable Hour!",
+ 2,
+ "What is the Inevitable Hour?",
+ 3,
+ "And what will make you realize what the Inevitable Hour is?",
+ 4,
+ "˹Both˺ Thamûd and ’Ȃd denied the Striking Disaster.",
+ 5,
+ "As for Thamûd, they were destroyed by an overwhelming blast.",
+ 6,
+ "And as for ’Ȃd, they were destroyed by a furious, bitter wind",
+ 7,
+ "which Allah unleashed on them non-stop for seven nights and eight days, so that you would have seen its people lying dead like trunks of uprooted palm trees.",
+ 8,
+ "Do you see any of them left alive?",
+ 9,
+ "Also, Pharaoh and those before him, and ˹the people of˺ the overturned cities ˹of Lot˺ indulged in sin,",
+ 10,
+ "each disobeying their Lord’s messenger, so He seized them with a crushing grip.",
+ 11,
+ "Indeed, when the floodwater had overflowed, We carried you in the floating Ark ˹with Noah˺,",
+ 12,
+ "so that We may make this a reminder to you, and that attentive ears may grasp it.",
+ 13,
+ "At last, when the Trumpet will be blown with one blast,",
+ 14,
+ "and the earth and mountains will be lifted up and crushed with one blow,",
+ 15,
+ "on that Day the Inevitable Event will have come to pass.",
+ 16,
+ "The sky will then be so torn that it will be frail,",
+ 17,
+ "with the angels on its sides. On that Day eight ˹mighty angels˺ will bear the Throne of your Lord above them.",
+ 18,
+ "You will then be presented ˹before Him for judgment˺, and none of your secrets will stay hidden.",
+ 19,
+ "As for those given their records in their right hand, they will cry ˹happily˺, “Here ˹everyone˺! Read my record!",
+ 20,
+ "I surely knew I would face my reckoning.”",
+ 21,
+ "They will be in a life of bliss,",
+ 22,
+ "in an elevated Garden,",
+ 23,
+ "whose fruit will hang within reach.",
+ 24,
+ "˹They will be told,˺ “Eat and drink joyfully for what you did in the days gone by.”",
+ 25,
+ "And as for those given their record in their left hand, they will cry ˹bitterly˺, “I wish I had not been given my record,",
+ 26,
+ "nor known anything of my reckoning!",
+ 27,
+ "I wish death was the end!",
+ 28,
+ "My wealth has not benefited me!",
+ 29,
+ "My authority has been stripped from me.”",
+ 30,
+ "˹It will be said,˺ “Seize and shackle them,",
+ 31,
+ "then burn them in Hell,",
+ 32,
+ "then tie them up with chains seventy arms long.",
+ 33,
+ "For they never had faith in Allah, the Greatest,",
+ 34,
+ "nor encouraged the feeding of the poor.",
+ 35,
+ "So this Day they will have no close friend here,",
+ 36,
+ "nor any food except ˹oozing˺ pus,",
+ 37,
+ "which none will eat except the evildoers.”",
+ 38,
+ "Now, I do swear by whatever you see,",
+ 39,
+ "and whatever you cannot see!",
+ 40,
+ "Indeed, this ˹Quran˺ is the recitation of a noble Messenger.",
+ 41,
+ "It is not the prose of a poet ˹as you claim˺, ˹yet˺ you hardly have any faith.",
+ 42,
+ "Nor is it the mumbling of a fortune-teller, ˹yet˺ you are hardly mindful.",
+ 43,
+ "˹It is˺ a revelation from the Lord of all worlds.",
+ 44,
+ "Had the Messenger made up something in Our Name,",
+ 45,
+ "We would have certainly seized him by his right hand,",
+ 46,
+ "then severed his aorta,",
+ 47,
+ "and none of you could have shielded him ˹from Us˺!",
+ 48,
+ "Indeed, this ˹Quran˺ is a reminder to those mindful ˹of Allah˺.",
+ 49,
+ "And We certainly know that some of you will persist in denial,",
+ 50,
+ "and it will surely be a source of regret for the disbelievers.",
+ 51,
+ "And indeed, this ˹Quran˺ is the absolute truth.",
+ 52,
+ "So glorify the Name of your Lord, the Greatest."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/7.json b/share/quran-json/TheQuran/en/7.json
new file mode 100644
index 0000000..acc5e20
--- /dev/null
+++ b/share/quran-json/TheQuran/en/7.json
@@ -0,0 +1,431 @@
+[
+ {
+ "id": "7",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-A'raf",
+ "translated_name": "The Heights",
+ "verse_count": 206,
+ "slug": "al-araf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1593,
+ 1585,
+ 1575,
+ 1601
+ ]
+ },
+ 1,
+ "Alif-Lãm-Mĩm-Ṣãd.",
+ 2,
+ "˹This is˺ a Book sent down to you ˹O Prophet˺—do not let anxiety into your heart regarding it—so with it you may warn ˹the disbelievers˺, and as a reminder to the believers.",
+ 3,
+ "Follow what has been sent down to you from your Lord, and do not take others as guardians besides Him. How seldom are you mindful!",
+ 4,
+ "˹Imagine˺ how many societies We have destroyed! Our torment took them by surprise ˹while sleeping˺ at night or midday.",
+ 5,
+ "Their only cry—when overwhelmed by Our torment—was, “We have indeed been wrongdoers.”",
+ 6,
+ "We will surely question those who received messengers and We will question the messengers ˹themselves˺.",
+ 7,
+ "Then We will give them a full account with sure knowledge—for We were never absent.",
+ 8,
+ "The weighing on that Day will be just. As for those whose scale will be heavy ˹with good deeds˺, ˹only˺ they will be successful.",
+ 9,
+ "But those whose scale is light, they have doomed themselves for wrongfully denying Our signs.",
+ 10,
+ "We have indeed established you on earth and provided you with a means of livelihood. ˹Yet˺ you seldom give any thanks.",
+ 11,
+ "Surely We created you, then shaped you, then said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who refused to prostrate with the others.",
+ 12,
+ "Allah asked, “What prevented you from prostrating when I commanded you?” He replied, “I am better than he is: You created me from fire and him from clay.”",
+ 13,
+ "Allah said, “Then get down from Paradise! It is not for you to be arrogant here. So get out! You are truly one of the disgraced.”",
+ 14,
+ "He appealed, “Then delay my end until the Day of their resurrection.”",
+ 15,
+ "Allah said, “You are delayed ˹until the appointed Day˺.”",
+ 16,
+ "He said, “For leaving me to stray I will lie in ambush for them on Your Straight Path.",
+ 17,
+ "I will approach them from their front, their back, their right, their left, and then You will find most of them ungrateful.”",
+ 18,
+ "Allah said, “Get out of Paradise! You are disgraced and rejected! I will certainly fill up Hell with you and your followers all together.”",
+ 19,
+ "˹Allah said,˺ “O Adam! Live with your wife in Paradise and eat from wherever you please, but do not approach this tree, or else you will be wrongdoers.”",
+ 20,
+ "Then Satan tempted them in order to expose what was hidden of their nakedness. He said, “Your Lord has forbidden this tree to you only to prevent you from becoming angels or immortals.”",
+ 21,
+ "And he swore to them, “I am truly your sincere advisor.”",
+ 22,
+ "So he brought about their fall through deception. And when they tasted of the tree, their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. Then their Lord called out to them, “Did I not forbid you from that tree and ˹did I not˺ tell you that Satan is your sworn enemy?”",
+ 23,
+ "They replied, “Our Lord! We have wronged ourselves. If You do not forgive us and have mercy on us, we will certainly be losers.”",
+ 24,
+ "Allah said, “Descend as enemies to each other. You will find in the earth a residence and provision for your appointed stay.”",
+ 25,
+ "He added, “There you will live, there you will die, and from there you will be resurrected.”",
+ 26,
+ "O children of Adam! We have provided for you clothing to cover your nakedness and as an adornment. However, the best clothing is righteousness. This is one of Allah’s bounties, so perhaps you will be mindful.",
+ 27,
+ "O children of Adam! Do not let Satan deceive you as he tempted your parents out of Paradise and caused their cover to be removed in order to expose their nakedness. Surely he and his soldiers watch you from where you cannot see them. We have made the devils allies of those who disbelieve.",
+ 28,
+ "Whenever they commit a shameful deed, they say, “We found our forefathers doing it and Allah has commanded us to do it.” Say, “No! Allah never commands what is shameful. How can you attribute to Allah what you do not know?”",
+ 29,
+ "Say, ˹O Prophet,˺ “My Lord has commanded uprightness and dedication ˹to Him alone˺ in worship, calling upon Him with sincere devotion. Just as He first brought you into being, you will be brought to life again.”",
+ 30,
+ "He has guided some, while others are destined to stray. They have taken devils as their masters instead of Allah—thinking they are ˹rightly˺ guided.",
+ 31,
+ "O Children of Adam! Dress properly whenever you are at worship. Eat and drink, but do not waste. Surely He does not like the wasteful.",
+ 32,
+ "Ask, ˹O Prophet,˺ “Who has forbidden the adornments and lawful provisions Allah has brought forth for His servants?” Say, “They are for the enjoyment of the believers in this worldly life, but they will be exclusively theirs on the Day of Judgment. This is how We make Our revelations clear for people of knowledge.”",
+ 33,
+ "Say, “My Lord has only forbidden open and secret indecencies, sinfulness, unjust aggression, associating ˹others˺ with Allah ˹in worship˺—a practice He has never authorized—and attributing to Allah what you do not know.”",
+ 34,
+ "For each community there is an appointed term. When their time arrives, they can neither delay it for a moment, nor could they advance it.",
+ 35,
+ "O children of Adam! When messengers from among yourselves come to you reciting My revelations—whoever shuns evil and mends their ways, there will be no fear for them, nor will they grieve.",
+ 36,
+ "But those who receive Our revelations with denial and arrogance will be the residents of the Fire. They will be there forever.",
+ 37,
+ "Who does more wrong than those who fabricate lies against Allah or deny His revelations? They will receive what is destined for them, until Our messenger-angels arrive to take their souls, asking them, “Where are those ˹false gods˺ you used to invoke besides Allah?” They will cry, “They have failed us,” and they will confess against themselves that they were indeed disbelievers.",
+ 38,
+ "Allah will say, “Enter the Fire along with the ˹evil˺ groups of jinn and humans that preceded you.” Whenever a group enters Hell, it will curse the preceding one until they are all gathered inside, the followers will say about their leaders, “Our Lord! They have misled us, so multiply their torment in the Fire.” He will answer, “It has already been multiplied for all, but you do not know.”",
+ 39,
+ "Then the leaders will say to their followers, “You were no better than us! So taste the torment for what you used to commit.”",
+ 40,
+ "Surely those who receive our revelations with denial and arrogance, the gates of heaven will not be opened for them, nor will they enter Paradise until a camel passes through the eye of a needle. This is how We reward the wicked.",
+ 41,
+ "Hell will be their bed; flames will be their cover. This is how We reward the wrongdoers.",
+ 42,
+ "As for those who believe and do good—We never require of any soul more than what it can afford—it is they who will be the residents of Paradise. They will be there forever.",
+ 43,
+ "We will remove whatever bitterness they had in their hearts. Rivers will flow under their feet. And they will say, “Praise be to Allah for guiding us to this. We would have never been guided if Allah had not guided us. The messengers of our Lord had certainly come with the truth.” It will be announced to them, “This is Paradise awarded to you for what you used to do.”",
+ 44,
+ "The residents of Paradise will call out to the residents of the Fire, “We have certainly found our Lord’s promise to be true. Have you too found your Lord’s promise to be true?” They will reply, “Yes, we have!” Then a caller will announce to both, “May Allah’s condemnation be upon the wrongdoers,",
+ 45,
+ "those who hindered ˹others˺ from Allah’s Way, strived to make it ˹appear˺ crooked, and disbelieved in the Hereafter.”",
+ 46,
+ "There will be a barrier between Paradise and Hell. And on the heights ˹of that barrier˺ will be people who will recognize ˹the residents of˺ both by their appearance. They will call out to the residents of Paradise, “Peace be upon you!” They will have not yet entered Paradise, but eagerly hope to.",
+ 47,
+ "When their eyes will turn towards the residents of Hell, they will pray, “Our Lord! Do not join us with the wrongdoing people.”",
+ 48,
+ "Those on the heights will call out to some ˹tyrants in the Fire˺, who they will recognize by their appearance, saying, “Your large numbers and arrogance are of no use ˹today˺!",
+ 49,
+ "Are these ˹humble believers˺ the ones you swore would never be shown Allah’s mercy?” ˹Finally, those on the heights will be told:˺ “Enter Paradise! There will be no fear for you, nor will you grieve.”",
+ 50,
+ "The residents of the Fire will then cry out to the residents of Paradise, “Aid us with some water or any provision Allah has granted you.” They will reply, “Allah has forbidden both to the disbelievers,",
+ 51,
+ "those who took this faith ˹of Islam˺ as mere amusement and play and were deluded by ˹their˺ worldly life.” ˹Allah will say,˺ “Today We will ignore them just as they ignored the coming of this Day of theirs and for rejecting Our revelations.”",
+ 52,
+ "We have certainly brought them a Book which We explained with knowledge—a guide and mercy for those who believe.",
+ 53,
+ "Do they only await the fulfilment ˹of its warning˺? The Day it will be fulfilled, those who ignored it before will say, “The messengers of our Lord certainly came with the truth. Are there any intercessors who can plead on our behalf? Or can we be sent back so we may do ˹good,˺ unlike what we used to do?” They will have certainly ruined themselves, and whatever ˹gods˺ they fabricated will fail them.",
+ 54,
+ "Indeed your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne. He makes the day and night overlap in rapid succession. He created the sun, the moon, and the stars—all subjected by His command. The creation and the command belong to Him ˹alone˺. Blessed is Allah—Lord of all worlds!",
+ 55,
+ "Call upon your Lord humbly and secretly. Surely He does not like the transgressors.",
+ 56,
+ "Do not spread corruption in the land after it has been set in order. And call upon Him with hope and fear. Indeed, Allah’s mercy is always close to the good-doers.",
+ 57,
+ "He is the One Who sends the winds ushering in His mercy. When they bear heavy clouds, We drive them to a lifeless land and then cause rain to fall, producing every type of fruit. Similarly, We will bring the dead to life, so perhaps you will be mindful.",
+ 58,
+ "The fertile land produces abundantly by the Will of its Lord, whereas the infertile land hardly produces anything. This is how We vary ˹Our˺ lessons to those who are thankful.",
+ 59,
+ "Indeed, We sent Noah to his people. He said, “O my people! Worship Allah—you have no other god except Him. I truly fear for you the torment of a tremendous Day.”",
+ 60,
+ "But the chiefs of his people said, “We surely see that you are clearly misguided.”",
+ 61,
+ "He replied, “O my people! I am not misguided! But I am a messenger from the Lord of all worlds,",
+ 62,
+ "conveying to you my Lord’s messages and giving you ˹sincere˺ advice. And I know from Allah what you do not know.",
+ 63,
+ "Do you find it astonishing that a reminder should come to you from your Lord through one of your own, warning you, so you may beware and perhaps be shown mercy?”",
+ 64,
+ "But they rejected him, so We saved him and those with him in the Ark, and drowned those who rejected Our signs. They were certainly a blind people.",
+ 65,
+ "And to the people of ’Âd We sent their brother Hûd. He said, “O my people! Worship Allah—you have no other god except Him. Will you not then fear Him?”",
+ 66,
+ "The disbelieving chiefs of his people responded, “We surely see you as a fool, and we certainly think you are a liar.”",
+ 67,
+ "Hûd replied, “O my people! I am no fool! But I am a messenger from the Lord of all worlds,",
+ 68,
+ "conveying to you my Lord’s messages. And I am your sincere advisor.",
+ 69,
+ "Do you find it astonishing that a reminder should come to you from your Lord through one of your own so he may warn you? Remember that He made you successors after the people of Noah and increased you greatly in stature. So remember Allah’s favours, so you may be successful.”",
+ 70,
+ "They said, “Have you come to us so that we would worship Allah alone and abandon what our forefathers used to worship? Then bring us what you threaten us with, if what you say is true!”",
+ 71,
+ "He said, “You will certainly be subjected to your Lord’s torment and wrath. Do you dispute with me regarding the so-called gods which you and your forefathers have made up—a practice Allah has never authorized? Then wait! I too am waiting with you.”",
+ 72,
+ "So We saved him and those with him by Our mercy and uprooted those who denied Our signs. They were not believers.",
+ 73,
+ "And to the people of Thamûd We sent their brother Ṣâliḥ. He said, “O my people! Worship Allah—you have no other god except Him. A clear proof has come to you from your Lord: this is Allah’s she-camel as a sign to you. So leave her to graze ˹freely˺ on Allah’s land and do not harm her, or else you will be overcome by a painful punishment.",
+ 74,
+ "Remember when He made you successors after ’Âd and established you in the land—˹and˺ you built palaces on its plains and carved homes into mountains. So remember Allah’s favours, and do not go about spreading corruption in the land.”",
+ 75,
+ "The arrogant chiefs of his people asked the lowly who believed among them, “Are you certain that Ṣâliḥ has been sent by his Lord?” They replied, “We certainly believe in what he has been sent with.”",
+ 76,
+ "The arrogant said, “We surely reject what you believe in.”",
+ 77,
+ "Then they killed the she-camel—defying their Lord’s command—and challenged ˹Ṣâliḥ˺, “Bring us what you threaten us with, if you are ˹truly˺ one of the messengers.”",
+ 78,
+ "Then an ˹overwhelming˺ earthquake struck them, and they fell lifeless in their homes.",
+ 79,
+ "So he turned away from them, saying, “O my people! Surely I conveyed to you my Lord’s message and gave you ˹sincere˺ advice, but you do not like ˹sincere˺ advisors.”",
+ 80,
+ "And ˹remember˺ when Lot scolded ˹the men of˺ his people, ˹saying,˺ “Do you commit a shameful deed that no man has ever done before?",
+ 81,
+ "You lust after men instead of women! You are certainly transgressors.”",
+ 82,
+ "But his people’s only response was to say, “Expel them from your land! They are a people who wish to remain chaste!”",
+ 83,
+ "So We saved him and his family except his wife, who was one of the doomed.",
+ 84,
+ "We poured upon them a rain ˹of brimstone˺. See what was the end of the wicked!",
+ 85,
+ "And to the people of Midian We sent their brother Shu’aib. He said, “O my people! Worship Allah—you have no other god except Him. A clear proof has already come to you from your Lord. So give just measure and weight, do not defraud people of their property, nor spread corruption in the land after it has been set in order. This is for your own good, if you are ˹truly˺ believers.",
+ 86,
+ "And do not lie in ambush on every road—threatening and hindering those who believe in Allah from His Path and striving to make it ˹appear˺ crooked. Remember when you were few, then He increased you in number. And consider the fate of the corruptors!",
+ 87,
+ "If some of you do believe in what I have been sent with while others do not, then be patient until Allah judges between us. He is the Best of Judges.”",
+ 88,
+ "The arrogant chiefs of his people threatened, “O Shu’aib! We will certainly expel you and your fellow believers from our land, unless you return to our faith.” He replied, “Even if we hate it?",
+ 89,
+ "We would surely be fabricating a lie against Allah if we were to return to your faith after Allah has saved us from it. It does not befit us to return to it unless it is the Will of Allah, our Lord. Our Lord has encompassed everything in ˹His˺ knowledge. In Allah we trust. Our Lord! Judge between us and our people with truth. You are the best of those who judge.”",
+ 90,
+ "The disbelieving chiefs of his people threatened, “If you follow Shu’aib, you will surely be losers!”",
+ 91,
+ "Then an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.",
+ 92,
+ "Those who rejected Shu’aib were ˹wiped out˺ as if they had never lived there. Those who rejected Shu’aib were the true losers.",
+ 93,
+ "He turned away from them, saying, “O my people! Indeed, I have delivered to you the messages of my Lord and gave you ˹sincere˺ advice. How can I then grieve for those who chose to disbelieve?”",
+ 94,
+ "Whenever We sent a prophet to a society, We afflicted its ˹disbelieving˺ people with suffering and adversity, so perhaps they would be humbled.",
+ 95,
+ "Then We changed their adversity to prosperity until they flourished and argued ˹falsely˺, “Our forefathers ˹too˺ had been visited by adversity and prosperity.” So We seized them by surprise, while they were unaware.",
+ 96,
+ "Had the people of those societies been faithful and mindful ˹of Allah˺, We would have overwhelmed them with blessings from heaven and earth. But they disbelieved, so We seized them for what they used to commit.",
+ 97,
+ "Did the people of those societies feel secure that Our punishment would not come upon them by night while they were asleep?",
+ 98,
+ "Or did they feel secure that Our punishment would not come upon them by day while they were at play?",
+ 99,
+ "Did they feel secure against Allah’s planning? None would feel secure from Allah’s planning except the losers.",
+ 100,
+ "Is it not clear to those who take over the land after ˹the destruction of˺ its former residents that—if We will—We can punish them ˹too˺ for their sins and seal their hearts so they will not hear ˹the truth˺?",
+ 101,
+ "We have narrated to you ˹O Prophet˺ some of the stories of those societies. Surely, their messengers came to them with clear proofs, but still they would not believe in what they had already denied. This is how Allah seals the hearts of the disbelievers.",
+ 102,
+ "We did not find most of them true to their covenant. Rather, We found most of them truly rebellious.",
+ 103,
+ "Then after them We sent Moses with Our signs to Pharaoh and his chiefs, but they wrongfully rejected them. See what was the end of the corruptors!",
+ 104,
+ "And Moses said, “O Pharaoh! I am truly a messenger from the Lord of all worlds,",
+ 105,
+ "obliged to say nothing about Allah except the truth. Indeed, I have come to you with clear proof from your Lord, so let the children of Israel go with me.”",
+ 106,
+ "Pharaoh said, “If you have come with a sign, then bring it if what you say is true.”",
+ 107,
+ "So Moses threw down his staff and—behold!—it became a real snake.",
+ 108,
+ "Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.",
+ 109,
+ "The chiefs of Pharaoh’s people said, “He is indeed a skilled magician,",
+ 110,
+ "who seeks to drive you from your land.” ˹So Pharaoh asked,˺ “What do you propose?”",
+ 111,
+ "They replied, “Let him and his brother wait and send mobilizers to all cities",
+ 112,
+ "to bring you every clever magician.”",
+ 113,
+ "The magicians came to Pharaoh, saying, “Shall we receive a ˹suitable˺ reward if we prevail?”",
+ 114,
+ "He replied, “Yes, and you will certainly be among those closest to me.”",
+ 115,
+ "They asked, “O Moses! Will you cast, or shall we be the first to cast?”",
+ 116,
+ "Moses said, “You first.” So when they did, they deceived the eyes of the people, stunned them, and made a great display of magic.",
+ 117,
+ "Then We inspired Moses, “Throw down your staff,” and—behold!—it devoured the objects of their illusion!",
+ 118,
+ "So the truth prevailed and their illusions failed.",
+ 119,
+ "So Pharaoh and his people were defeated right there and put to shame.",
+ 120,
+ "And the magicians fell down, prostrating.",
+ 121,
+ "They declared, “We ˹now˺ believe in the Lord of all worlds—",
+ 122,
+ "the Lord of Moses and Aaron.”",
+ 123,
+ "Pharaoh threatened, “How dare you believe in him before I give you permission? This must be a conspiracy you devised in the city to drive out its people, but soon you will see.",
+ 124,
+ "I will certainly cut off your hands and feet on opposite sides, then crucify you all.”",
+ 125,
+ "They responded, “Surely to our Lord we will ˹all˺ return.",
+ 126,
+ "Your rage towards us is only because we believed in the signs of our Lord when they came to us. Our Lord! Shower us with perseverance, and let us die while submitting ˹to You˺.” ",
+ 127,
+ "The chiefs of Pharaoh’s people protested, “Are you going to leave Moses and his people free to spread corruption in the land and abandon you and your gods?” He responded, “We will kill their sons and keep their women. We will completely dominate them.”",
+ 128,
+ "Moses reassured his people, “Seek Allah’s help and be patient. Indeed, the earth belongs to Allah ˹alone˺. He grants it to whoever He chooses of His servants. The ultimate outcome belongs ˹only˺ to the righteous.”",
+ 129,
+ "They complained, “We have always been oppressed—before and after you came to us ˹with the message˺.” He replied, “Perhaps your Lord will destroy your enemy and make you successors in the land to see what you will do.”",
+ 130,
+ "Indeed, We afflicted Pharaoh’s people with famine and shortage of crops so they might come back ˹to their senses˺.",
+ 131,
+ "In times of prosperity, they said, “This is what we deserve,” but in adversity, they blamed it on Moses and those with him. Surely all is destined by Allah. Yet most of them did not know.",
+ 132,
+ "They said, “No matter what sign you may bring to deceive us, we will never believe in you.”",
+ 133,
+ "So We plagued them with floods, locusts, lice, frogs, and blood—all as clear signs, but they persisted in arrogance and were a wicked people.",
+ 134,
+ "When tormented, they pleaded, “O Moses! Pray to your Lord on our behalf, by virtue of the covenant He made with you. If you help remove this torment from us, we will certainly believe in you and let the Children of Israel go with you.”",
+ 135,
+ "But as soon as We removed the torment from them—until they met their inevitable fate—they broke their promise.",
+ 136,
+ "So We inflicted punishment upon them, drowning them in the sea for denying Our signs and being heedless of them.",
+ 137,
+ "And ˹so˺ We made the oppressed people successors of the eastern and western lands, which We had showered with blessings. ˹In this way˺ the noble Word of your Lord was fulfilled for the Children of Israel for what they had endured. And We destroyed what Pharaoh and his people constructed and what they established.",
+ 138,
+ "We brought the Children of Israel across the sea and they came upon a people devoted to idols. They demanded, “O Moses! Make for us a god like their gods.” He replied, “Indeed, you are a people acting ignorantly!",
+ 139,
+ "What they follow is certainly doomed to destruction and their deeds are in vain.”",
+ 140,
+ "He added, “Shall I seek for you a god other than Allah, while He has honoured you above the others?”",
+ 141,
+ "And ˹remember˺ when We rescued you from the people of Pharaoh, who afflicted you with dreadful torment—killing your sons and keeping your women. That was a severe test from your Lord.",
+ 142,
+ "We appointed for Moses thirty nights then added another ten—completing his Lord’s term of forty nights. Moses commanded his brother Aaron, “Take my place among my people, do what is right, and do not follow the way of the corruptors.”",
+ 143,
+ "When Moses came at the appointed time and his Lord spoke to him, he asked, “My Lord! Reveal Yourself to me so I may see You.” Allah answered, “You cannot see Me! But look at the mountain. If it remains firm in its place, only then will you see Me.” When his Lord appeared to the mountain, He levelled it to dust and Moses collapsed unconscious. When he recovered, he cried, “Glory be to You! I turn to You in repentance and I am the first of the believers.”",
+ 144,
+ "Allah said, “O Moses! I have ˹already˺ elevated you above all others by My messages and speech. So hold firmly to what I have given you and be grateful.”",
+ 145,
+ "We wrote for him on the Tablets ˹the fundamentals˺ of everything; commandments and explanations of all things. ˹We commanded,˺ “Hold to this firmly and ask your people to take the best of it. I will soon show ˹all of˺ you the home of the rebellious.",
+ 146,
+ "I will turn away from My signs those who act unjustly with arrogance in the land. And even if they were to see every sign, they still would not believe in them. If they see the Right Path, they will not take it. But if they see a crooked path, they will follow it. This is because they denied Our signs and were heedless of them.",
+ 147,
+ "The deeds of those who deny Our signs and the meeting ˹with Allah˺ in the Hereafter will be in vain. Will they be rewarded except for what they have done?”",
+ 148,
+ "In the absence of Moses, his people made from their ˹golden˺ jewellery an idol of a calf that made a lowing sound. Did they not see that it could neither speak to them nor guide them to the ˹Right˺ Path? Still they took it as a god and were wrongdoers.",
+ 149,
+ "Later, when they were filled with remorse and realized they had gone astray, they cried, “If our Lord does not have mercy on us and forgive us, we will certainly be losers.”",
+ 150,
+ "Upon Moses’ return to his people, ˹totally˺ furious and sorrowful, he said, “What an evil thing you committed in my absence! Did you want to hasten your Lord’s torment?” Then he threw down the Tablets and grabbed his brother by the hair, dragging him closer. Aaron pleaded, “O son of my mother! The people overpowered me and were about to kill me. So do not ˹humiliate me and˺ make my enemies rejoice, nor count me among the wrongdoing people.”",
+ 151,
+ "Moses prayed, “My Lord! Forgive me and my brother! And admit us into Your mercy. You are the Most Merciful of the merciful.”",
+ 152,
+ "Those who worshipped the calf will certainly be afflicted with Allah’s wrath as well as disgrace in the life of this world. This is how We reward those who invent falsehood.",
+ 153,
+ "But those who commit evil, then repent and become ˹true˺ believers, your Lord will certainly be All-Forgiving, Most-Merciful.",
+ 154,
+ "When Moses’ anger subsided, he took up the Tablets whose text contained guidance and mercy for those who stand in awe of their Lord.",
+ 155,
+ "Moses chose seventy men from among his people for Our appointment and, when they were seized by an earthquake, he cried, “My Lord! Had You willed, You could have destroyed them long ago, and me as well. Will You destroy us for what the foolish among us have done? This is only a test from You—by which You allow whoever you will to stray and guide whoever You will. You are our Guardian. So forgive us and have mercy on us. You are the best forgiver.",
+ 156,
+ "Ordain for us what is good in this life and the next. Indeed, we have turned to You ˹in repentance˺.” Allah replied, “I will inflict My torment on whoever I will. But My mercy encompasses everything. I will ordain mercy for those who shun evil, pay alms-tax, and believe in Our revelations.",
+ 157,
+ "“˹They are˺ the ones who follow the Messenger, the unlettered Prophet, whose description they find in their Torah and the Gospel. He commands them to do good and forbids them from evil, permits for them what is lawful and forbids to them what is impure, and relieves them from their burdens and the shackles that bound them. ˹Only˺ those who believe in him, honour and support him, and follow the light sent down to him will be successful.”",
+ 158,
+ "Say, ˹O Prophet,˺ “O humanity! I am Allah’s Messenger to you all. To Him ˹alone˺ belongs the kingdom of the heavens and the earth. There is no god ˹worthy of worship˺ except Him. He gives life and causes death.” So believe in Allah and His Messenger, the unlettered Prophet, who believes in Allah and His revelations. And follow him, so you may be ˹rightly˺ guided.",
+ 159,
+ "There are some among the people of Moses who guide with the truth and establish justice accordingly.",
+ 160,
+ "We divided them into twelve tribes—each as a community. And We revealed to Moses, when his people asked for water, “Strike the rock with your staff.” Then twelve springs gushed out. Each tribe knew its drinking place. We shaded them with clouds and sent down to them manna and quails, ˹saying˺, “Eat from the good things We have provided for you.” They ˹certainly˺ did not wrong Us, but wronged themselves.",
+ 161,
+ "And ˹remember˺ when it was said to them, “Enter this city ˹of Jerusalem˺ and eat from wherever you please. Say, ‘Absolve us,’ and enter the gate with humility. We will forgive your sins, ˹and˺ We will multiply the reward for the good-doers.”",
+ 162,
+ "But the wrongdoers among them changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their wrongdoing.",
+ 163,
+ "Ask them ˹O Prophet˺ about ˹the people of˺ the town which was by the sea, who broke the Sabbath. During the Sabbath, ˹abundant˺ fish would come to them clearly visible, but on other days the fish were never seen. In this way We tested them for their rebelliousness.",
+ 164,
+ "When some of ˹the righteous among˺ them questioned ˹their fellow Sabbath-keepers˺, “Why do you ˹bother to˺ warn those ˹Sabbath-breakers˺ who will either be destroyed or severely punished by Allah?” They replied, “Just to be free from your Lord’s blame, and so perhaps they may abstain.”",
+ 165,
+ "When they ignored the warning they were given, We rescued those who used to warn against evil and overtook the wrongdoers with a dreadful punishment for their rebelliousness.",
+ 166,
+ "But when they stubbornly persisted in violation, We said to them, “Be disgraced apes!” ",
+ 167,
+ "And ˹remember, O Prophet,˺ when your Lord declared that He would send against them others who would make them suffer terribly until the Day of Judgment. Indeed, your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.",
+ 168,
+ "We dispersed them through the land in groups—some were righteous, others were less so. We tested them with prosperity and adversity, so perhaps they would return ˹to the Right Path˺.",
+ 169,
+ "Then they were succeeded by other generations who inherited the Scripture. They indulged in unlawful gains, claiming, “We will be forgiven ˹after all˺.” And if similar gain came their way, they would seize it. Was a covenant not taken from them in the Scripture that they would not say anything about Allah except the truth? And they were already well-versed in its teachings. But the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?",
+ 170,
+ "As for those who firmly abide by the Scripture and establish prayer—surely We never discount the reward of those acting righteously.",
+ 171,
+ "And ˹remember˺ when We raised the mountain over them as if it were a cloud and they thought it would fall on them. ˹We said,˺ “Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺.”",
+ 172,
+ "And ˹remember˺ when your Lord brought forth from the loins of the children of Adam their descendants and had them testify regarding themselves. ˹Allah asked,˺ “Am I not your Lord?” They replied, “Yes, You are! We testify.” ˹He cautioned,˺ “Now you have no right to say on Judgment Day, ‘We were not aware of this.’",
+ 173,
+ "Nor say, ‘It was our forefathers who had associated others ˹with Allah in worship˺ and we, as their descendants, followed in their footsteps. Will you then destroy us for the falsehood they invented?’”",
+ 174,
+ "This is how We make our signs clear, so perhaps they will return ˹to the Right Path˺.",
+ 175,
+ "And relate to them ˹O Prophet˺ the story of the one to whom We gave Our signs, but he abandoned them, so Satan took hold of him, and he became a deviant.",
+ 176,
+ "If We had willed, We would have elevated him with Our signs, but he clung to this life—following his evil desires. His example is that of a dog: if you chase it away, it pants, and if you leave it, it ˹still˺ pants. This is the example of the people who deny Our signs. So narrate ˹to them˺ stories ˹of the past˺, so perhaps they will reflect.",
+ 177,
+ "What an evil example of those who denied Our signs! They ˹only˺ wronged their own souls.",
+ 178,
+ "Whoever Allah guides is truly guided. And whoever He leaves to stray, they are the ˹true˺ losers.",
+ 179,
+ "Indeed, We have destined many jinn and humans for Hell. They have hearts they do not understand with, eyes they do not see with, and ears they do not hear with. They are like cattle. In fact, they are even less guided! Such ˹people˺ are ˹entirely˺ heedless.",
+ 180,
+ "Allah has the Most Beautiful Names. So call upon Him by them, and keep away from those who abuse His Names. They will be punished for what they used to do.",
+ 181,
+ "And among those We created is a group that guides with the truth and establishes justice accordingly.",
+ 182,
+ "As for those who deny Our signs, We will gradually draw them to destruction in ways they cannot comprehend.",
+ 183,
+ "I ˹only˺ delay their end for a while, but My planning is flawless.",
+ 184,
+ "Have they not ever given it a thought? Their fellow man is not insane. He is only sent with a clear warning.",
+ 185,
+ "Have they ever reflected on the wonders of the heavens and the earth, and everything Allah has created, and that perhaps their end is near? So what message after this ˹Quran˺ would they believe in?",
+ 186,
+ "Whoever Allah allows to stray, none can guide, leaving them to wander blindly in their defiance.",
+ 187,
+ "They ask you ˹O Prophet˺ regarding the Hour, “When will it be?” Say, “That knowledge is only with my Lord. He alone will reveal it when the time comes. It is too tremendous for the heavens and the earth and will only take you by surprise.” They ask you as if you had full knowledge of it. Say, “That knowledge is only with Allah, but most people do not know.”",
+ 188,
+ "Say, “I have no power to benefit or protect myself, except by the Will of Allah. If I had known the unknown, I would have benefited myself enormously, and no harm would have ever touched me. I am only a warner and deliverer of good news for those who believe.”",
+ 189,
+ "He is the One Who created you from a single soul, then from it made its spouse so he may find comfort in her. After he had been united with her, she carried a light burden that developed gradually. When it grew heavy, they prayed to Allah, their Lord, “If you grant us good offspring, we will certainly be grateful.”",
+ 190,
+ "But when He granted their descendants good offspring, they associated false gods in what He has given them. Exalted is Allah above what they associate ˹with Him˺!",
+ 191,
+ "Do they associate ˹with Allah˺ those ˹idols˺ which cannot create anything, but are in fact created;",
+ 192,
+ "which cannot help them, or even help themselves?",
+ 193,
+ "And if you ˹idolaters˺ call upon them for guidance, they cannot respond to you. It is all the same whether you call them or remain silent.",
+ 194,
+ "Those ˹idols˺ you invoke besides Allah are created beings like yourselves. So call upon them and see if they will answer you, if your claims are true!",
+ 195,
+ "Do they have feet to walk with? Or hands to hold with? Or eyes to see with? Or ears to hear with? Say, ˹O Prophet,˺ “Call upon your associate-gods and conspire against me without delay!",
+ 196,
+ "“Indeed, my Protector is Allah Who has revealed this Book. For He ˹alone˺ protects the righteous.",
+ 197,
+ "But those ˹false gods˺ you call besides Him can neither help you nor even themselves.”",
+ 198,
+ "If you ˹idolaters˺ call them to guidance, they cannot hear. And you ˹O Prophet˺ may see them facing towards you, but they cannot see.",
+ 199,
+ "Be gracious, enjoin what is right, and turn away from those who act ignorantly.",
+ 200,
+ "If you are tempted by Satan, then seek refuge with Allah. Surely He is All-Hearing, All-Knowing.",
+ 201,
+ "Indeed, when Satan whispers to those mindful ˹of Allah˺, they remember ˹their Lord˺ then they start to see ˹things˺ clearly.",
+ 202,
+ "But the devils persistently plunge their ˹human˺ associates deeper into wickedness, sparing no effort.",
+ 203,
+ "If you ˹O Prophet˺ do not bring them a sign ˹which they demanded˺, they ask, “Why do you not make it yourself?” Say, “I only follow what is revealed to me from my Lord. This ˹Quran˺ is an insight from your Lord—a guide and a mercy for those who believe.”",
+ 204,
+ "When the Quran is recited, listen to it attentively and be silent, so you may be shown mercy.",
+ 205,
+ "Remember your Lord inwardly with humility and reverence and in a moderate tone of voice, both morning and evening. And do not be one of the heedless.",
+ 206,
+ "Surely those ˹angels˺ nearest to your Lord are not too proud to worship Him. They glorify Him. And to Him they prostrate."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/70.json b/share/quran-json/TheQuran/en/70.json
new file mode 100644
index 0000000..835203d
--- /dev/null
+++ b/share/quran-json/TheQuran/en/70.json
@@ -0,0 +1,107 @@
+[
+ {
+ "id": "70",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Ma'arij",
+ "translated_name": "The Ascending Stairways",
+ "verse_count": 44,
+ "slug": "al-maarij",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1593,
+ 1575,
+ 1585,
+ 1580
+ ]
+ },
+ 1,
+ "A challenger has demanded a punishment bound to come",
+ 2,
+ "for the disbelievers—to be averted by none—",
+ 3,
+ "from Allah, Lord of pathways of ˹heavenly˺ ascent,",
+ 4,
+ "˹through which˺ the angels and the ˹holy˺ spirit will ascend to Him on a Day fifty thousand years in length.",
+ 5,
+ "So endure ˹this denial, O Prophet,˺ with beautiful patience.",
+ 6,
+ "They truly see this ˹Day˺ as impossible,",
+ 7,
+ "but We see it as inevitable.",
+ 8,
+ "On that Day the sky will be like molten brass",
+ 9,
+ "and the mountains like ˹tufts of˺ wool.",
+ 10,
+ "And no close friend will ask ˹about˺ their friends,",
+ 11,
+ "˹although˺ they will be made to see each other. The wicked will wish to ransom themselves from the punishment of that Day by their children,",
+ 12,
+ "their spouses, their siblings,",
+ 13,
+ "their clan that sheltered them,",
+ 14,
+ "and everyone on earth altogether, just to save themselves.",
+ 15,
+ "But no! There will certainly be a raging Flame",
+ 16,
+ "ripping off scalps.",
+ 17,
+ "It will summon whoever turned their backs ˹on Allah˺ and turned away ˹from the truth˺,",
+ 18,
+ "and gathered and hoarded ˹wealth˺.",
+ 19,
+ "Indeed, humankind was created impatient:",
+ 20,
+ "distressed when touched with evil,",
+ 21,
+ "and withholding when touched with good—",
+ 22,
+ "except those who pray,",
+ 23,
+ "consistently performing their prayers;",
+ 24,
+ "and who give the rightful share of their wealth",
+ 25,
+ "to the beggar and the poor;",
+ 26,
+ "and who ˹firmly˺ believe in the Day of Judgment;",
+ 27,
+ "and those who fear the punishment of their Lord—",
+ 28,
+ "˹knowing that˺ none should feel secure from their Lord’s punishment—",
+ 29,
+ "and those who guard their chastity",
+ 30,
+ "except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,",
+ 31,
+ "but whoever seeks beyond that are the transgressors.",
+ 32,
+ "˹The faithful are˺ also those who are true to their trusts and covenants;",
+ 33,
+ "and who are honest in their testimony;",
+ 34,
+ "and who are ˹properly˺ observant of their prayers.",
+ 35,
+ "These will be in Gardens, held in honour.",
+ 36,
+ "So what is the matter with the disbelievers that they rush ˹head-long˺ towards you ˹O Prophet˺,",
+ 37,
+ "from the right and the left, in groups ˹to mock you˺?",
+ 38,
+ "Does every one of them expect to be admitted into a Garden of Bliss?",
+ 39,
+ "But no! Indeed, they ˹already˺ know what We created them from.",
+ 40,
+ "So, I do swear by the Lord of ˹all˺ the points of sunrise and sunset that We are truly capable",
+ 41,
+ "of replacing them with ˹others˺ better than them, and We cannot be prevented ˹from doing so˺.",
+ 42,
+ "So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been threatened with—",
+ 43,
+ "the Day they will come forth from the graves swiftly, as if racing to an idol ˹for a blessing˺,",
+ 44,
+ "with eyes downcast, utterly covered with disgrace. That is the Day they have ˹always˺ been warned of."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/71.json b/share/quran-json/TheQuran/en/71.json
new file mode 100644
index 0000000..f32d5aa
--- /dev/null
+++ b/share/quran-json/TheQuran/en/71.json
@@ -0,0 +1,71 @@
+[
+ {
+ "id": "71",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Nuh",
+ "translated_name": "Noah",
+ "verse_count": 28,
+ "slug": "nuh",
+ "codepoints": [
+ 1606,
+ 1608,
+ 1581
+ ]
+ },
+ 1,
+ "Indeed, We sent Noah to his people ˹saying to him˺, “Warn your people before a painful punishment comes to them.”",
+ 2,
+ "Noah proclaimed, “O my people! I am truly sent to you with a clear warning:",
+ 3,
+ "worship Allah ˹alone˺, fear Him, and obey me.",
+ 4,
+ "He will forgive your sins, and delay your end until the appointed time. Indeed, when the time set by Allah comes, it cannot be delayed, if only you knew!”",
+ 5,
+ "He cried, “My Lord! I have surely called my people day and night,",
+ 6,
+ "but my calls only made them run farther away.",
+ 7,
+ "And whenever I invite them to be forgiven by You, they press their fingers into their ears, cover themselves with their clothes, persist ˹in denial˺, and act very arrogantly.",
+ 8,
+ "Then I certainly called them openly,",
+ 9,
+ "then I surely preached to them publicly and privately,",
+ 10,
+ "saying, ‘Seek your Lord’s forgiveness, ˹for˺ He is truly Most Forgiving.",
+ 11,
+ "He will shower you with abundant rain,",
+ 12,
+ "supply you with wealth and children, and give you gardens as well as rivers.",
+ 13,
+ "What is the matter with you that you are not in awe of the Majesty of Allah,",
+ 14,
+ "when He truly created you in stages ˹of development˺?",
+ 15,
+ "Do you not see how Allah created seven heavens, one above the other,",
+ 16,
+ "placing the moon within them as a ˹reflected˺ light, and the sun as a ˹radiant˺ lamp?",
+ 17,
+ "Allah ˹alone˺ caused you to grow from the earth like a plant.",
+ 18,
+ "Then He will return you to it, and then simply bring you forth ˹again˺.",
+ 19,
+ "And Allah ˹alone˺ spread out the earth for you",
+ 20,
+ "to walk along its spacious pathways.’”",
+ 21,
+ "˹Eventually,˺ Noah cried, “My Lord! They have certainly persisted in disobeying me, and followed ˹instead˺ those ˹elite˺ whose ˹abundant˺ wealth and children only increase them in loss,",
+ 22,
+ "and who have devised a tremendous plot,",
+ 23,
+ "urging ˹their followers˺, ‘Do not abandon your idols—especially Wadd, Suwâ’, Yaghûth, Ya’ûq, and Nasr.’",
+ 24,
+ "Those ˹elite˺ have already led many astray. So ˹O Lord˺, only allow the wrongdoers to stray farther away.”",
+ 25,
+ "So because of their sins, they were drowned, then admitted into the Fire. And they found none to help them against Allah.",
+ 26,
+ "Noah had prayed, “My Lord! Do not leave a single disbeliever on earth.",
+ 27,
+ "For if You spare ˹any of˺ them, they will certainly mislead Your servants, and give birth only to ˹wicked˺ sinners, staunch disbelievers.",
+ 28,
+ "My Lord! Forgive me, my parents, and whoever enters my house in faith, and ˹all˺ believing men and women. And increase the wrongdoers only in destruction.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/72.json b/share/quran-json/TheQuran/en/72.json
new file mode 100644
index 0000000..0fe0a5b
--- /dev/null
+++ b/share/quran-json/TheQuran/en/72.json
@@ -0,0 +1,72 @@
+[
+ {
+ "id": "72",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Jinn",
+ "translated_name": "The Jinn",
+ "verse_count": 28,
+ "slug": "al-jinn",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1580,
+ 1606
+ ]
+ },
+ 1,
+ "Say, ˹O Prophet,˺ “It has been revealed to me that a group of jinn listened ˹to the Quran,˺ and said ˹to their fellow jinn˺: ‘Indeed, we have heard a wondrous recitation.",
+ 2,
+ "It leads to Right Guidance so we believed in it, and we will never associate anyone with our Lord ˹in worship˺.",
+ 3,
+ "˹Now, we believe that˺ our Lord—Exalted is His Majesty—has neither taken a mate nor offspring,",
+ 4,
+ "and that the foolish of us used to utter ˹outrageous˺ falsehoods about Allah.",
+ 5,
+ "We certainly thought that humans and jinn would never speak lies about Allah.",
+ 6,
+ "And some men used to seek refuge with some jinn—so they increased each other in wickedness.",
+ 7,
+ "And those ˹humans˺ thought, just like you ˹jinn˺, that Allah would not resurrect anyone ˹for judgment˺.",
+ 8,
+ "˹Earlier˺ we tried to reach heaven ˹for news˺, only to find it filled with stern guards and shooting stars.",
+ 9,
+ "We used to take up positions there for eavesdropping, but whoever dares eavesdrop now will find a flare lying in wait for them.",
+ 10,
+ "Now, we have no clue whether evil is intended for those on earth, or their Lord intends for them what is right.",
+ 11,
+ "Among us are those who are righteous and those who are less so. We have been of different factions.",
+ 12,
+ "˹Now,˺ we truly know that we cannot frustrate Allah on earth, nor can we escape from Him ˹into heaven˺.",
+ 13,
+ "When we heard the guidance ˹of the Quran˺, we ˹readily˺ believed in it. For whoever believes in their Lord will have no fear of being denied ˹a reward˺ or wronged.",
+ 14,
+ "And among us are those who have submitted ˹to Allah˺ and those who are deviant. So ˹as for˺ those who submitted, it is they who have attained Right Guidance.",
+ 15,
+ "And as for the deviant, they will be fuel for Hell.’”",
+ 16,
+ "Had the deniers followed the Right Way, We would have certainly granted them abundant rain to drink—",
+ 17,
+ "as a test for them. And whoever turns away from the remembrance of their Lord will be admitted by Him into an overwhelming punishment.",
+ 18,
+ "The places of worship are ˹only˺ for Allah, so do not invoke anyone besides Him.",
+ 19,
+ "Yet when the servant of Allah stood up calling upon Him ˹alone˺, the pagans almost swarmed over him.",
+ 20,
+ "Say, ˹O Prophet,˺ “I call only upon my Lord, associating none with Him ˹in worship˺.”",
+ 21,
+ "Say, “It is not in my power to harm or benefit you.”",
+ 22,
+ "Say, “No one can protect me from Allah ˹if I were to disobey Him˺, nor can I find any refuge other than Him.",
+ 23,
+ "˹My duty is˺ only to convey ˹the truth˺ from Allah and ˹deliver˺ His messages.” And whoever disobeys Allah and His Messenger will certainly be in the Fire of Hell, to stay there for ever and ever.",
+ 24,
+ "Only when they see what they have been threatened with will they know who is weaker in helpers and inferior in manpower.",
+ 25,
+ "Say, “I do not know if what you are promised is near or my Lord has set a distant time for it.",
+ 26,
+ "˹He is the˺ Knower of the unseen, disclosing none of it to anyone,",
+ 27,
+ "except messengers of His choice. Then He appoints angel-guards before and behind them",
+ 28,
+ "to ensure that the messengers fully deliver the messages of their Lord—though He ˹already˺ knows all about them, and keeps account of everything.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/73.json b/share/quran-json/TheQuran/en/73.json
new file mode 100644
index 0000000..aa1db86
--- /dev/null
+++ b/share/quran-json/TheQuran/en/73.json
@@ -0,0 +1,58 @@
+[
+ {
+ "id": "73",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Muzzammil",
+ "translated_name": "The Enshrouded One",
+ "verse_count": 20,
+ "slug": "al-muzzammil",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1586,
+ 1605,
+ 1604
+ ]
+ },
+ 1,
+ "O you wrapped ˹in your clothes˺!",
+ 2,
+ "Stand all night ˹in prayer˺ except a little—",
+ 3,
+ "˹pray˺ half the night, or a little less,",
+ 4,
+ "or a little more—and recite the Quran ˹properly˺ in a measured way.",
+ 5,
+ "˹For˺ We will soon send upon you a weighty revelation.",
+ 6,
+ "Indeed, worship in the night is more impactful and suitable for recitation.",
+ 7,
+ "For during the day you are over-occupied ˹with worldly duties˺.",
+ 8,
+ "˹Always˺ remember the Name of your Lord, and devote yourself to Him wholeheartedly.",
+ 9,
+ "˹He is the˺ Lord of the east and the west. There is no god ˹worthy of worship˺ except Him, so take Him ˹alone˺ as a Trustee of Affairs.",
+ 10,
+ "Be patient ˹O Prophet˺ with what they say, and depart from them courteously.",
+ 11,
+ "And leave to Me the deniers—the people of luxury—and bear with them for a little while.",
+ 12,
+ "˹For˺ We certainly have shackles, a ˹raging˺ Fire,",
+ 13,
+ "choking food, and a painful punishment ˹in store for them˺",
+ 14,
+ "on the Day the earth and mountains will shake ˹violently˺, and mountains will be ˹reduced to˺ dunes of shifting sand.",
+ 15,
+ "Indeed, We have sent to you a messenger as a witness over you, just as We sent a messenger to Pharaoh.",
+ 16,
+ "But Pharaoh disobeyed the messenger, so We seized him with a stern grip.",
+ 17,
+ "If you ˹pagans˺ persist in disbelief, then how will you guard yourselves against ˹the horrors of˺ a Day which will turn children’s hair grey?",
+ 18,
+ "It will ˹even˺ cause the sky to split apart. His promise ˹of judgment˺ must be fulfilled.",
+ 19,
+ "Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.",
+ 20,
+ "Surely your Lord knows that you ˹O Prophet˺ stand ˹in prayer˺ for nearly two-thirds of the night, or ˹sometimes˺ half of it, or a third, as do some of those with you. Allah ˹alone˺ keeps a ˹precise˺ measure of the day and night. He knows that you ˹believers˺ are unable to endure this, and has turned to you in mercy. So recite ˹in prayer˺ whatever you can from the Quran. He knows that some of you will be sick, some will be travelling throughout the land seeking Allah’s bounty, and some fighting in the cause of Allah. So recite whatever you can from it. And ˹continue to˺ perform ˹regular˺ prayers, pay alms-tax, and lend to Allah a good loan. Whatever good you send forth for yourselves, you will find it with Allah far better and more rewarding. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/74.json b/share/quran-json/TheQuran/en/74.json
new file mode 100644
index 0000000..39a64c6
--- /dev/null
+++ b/share/quran-json/TheQuran/en/74.json
@@ -0,0 +1,130 @@
+[
+ {
+ "id": "74",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Muddaththir",
+ "translated_name": "The Cloaked One",
+ "verse_count": 56,
+ "slug": "al-muddaththir",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1583,
+ 1579,
+ 1585
+ ]
+ },
+ 1,
+ "O you covered up ˹in your clothes˺!",
+ 2,
+ "Arise and warn ˹all˺.",
+ 3,
+ "Revere your Lord ˹alone˺.",
+ 4,
+ "Purify your garments.",
+ 5,
+ "˹Continue to˺ shun idols.",
+ 6,
+ "Do not do a favour expecting more ˹in return˺.",
+ 7,
+ "And persevere for ˹the sake of˺ your Lord.",
+ 8,
+ "˹For˺ when the Trumpet will be sounded,",
+ 9,
+ "that will ˹truly˺ be a difficult Day—",
+ 10,
+ "far from easy for the disbelievers.",
+ 11,
+ "And leave to me ˹O Prophet˺ the one I created all by Myself,",
+ 12,
+ "and granted him abundant wealth,",
+ 13,
+ "and children always by his side,",
+ 14,
+ "and made life very easy for him.",
+ 15,
+ "Yet he is hungry for more.",
+ 16,
+ "But no! ˹For˺ he has been truly stubborn with Our revelations.",
+ 17,
+ "I will make his fate unbearable,",
+ 18,
+ "for he contemplated and determined ˹a degrading label for the Quran˺.",
+ 19,
+ "May he be condemned! How evil was what he determined!",
+ 20,
+ "May he be condemned even more! How evil was what he determined!",
+ 21,
+ "Then he re-contemplated ˹in frustration˺,",
+ 22,
+ "then frowned and scowled,",
+ 23,
+ "then turned his back ˹on the truth˺ and acted arrogantly,",
+ 24,
+ "saying, “This ˹Quran˺ is nothing but magic from the ancients.",
+ 25,
+ "This is no more than the word of a man.”",
+ 26,
+ "Soon I will burn him in Hell!",
+ 27,
+ "And what will make you realize what Hell is?",
+ 28,
+ "It does not let anyone live or die,",
+ 29,
+ "scorching the skin.",
+ 30,
+ "It is overseen by nineteen ˹keepers˺.",
+ 31,
+ "We have appointed only ˹stern˺ angels as wardens of the Fire. And We have made their number only as a test for the disbelievers, so that the People of the Book will be certain, and the believers will increase in faith, and neither the People of the Book nor the believers will have any doubts, and so that those ˹hypocrites˺ with sickness in their hearts and the disbelievers will argue, “What does Allah mean by such a number?” In this way Allah leaves whoever He wills to stray and guides whoever He wills. And none knows the forces of your Lord except He. And this ˹description of Hell˺ is only a reminder to humanity.",
+ 32,
+ "But no! By the moon,",
+ 33,
+ "and the night as it retreats,",
+ 34,
+ "and the day as it breaks!",
+ 35,
+ "Surely Hell is one of the mightiest catastrophes—",
+ 36,
+ "a warning to humankind,",
+ 37,
+ "to whichever of you chooses to take the lead or lag behind.",
+ 38,
+ "Every soul will be detained for what it has done,",
+ 39,
+ "except the people of the right,",
+ 40,
+ "who will be in Gardens, asking one another",
+ 41,
+ "about the wicked ˹who will then be asked˺:",
+ 42,
+ "“What has landed you in Hell?”",
+ 43,
+ "They will reply, “We were not of those who prayed,",
+ 44,
+ "nor did we feed the poor.",
+ 45,
+ "We used to indulge ˹in falsehood˺ along with others,",
+ 46,
+ "and deny the Day of Judgment,",
+ 47,
+ "until the inevitable came to us.”",
+ 48,
+ "So the pleas of intercessors will be of no benefit to them.",
+ 49,
+ "Now, what is the matter with them that they are turning away from the reminder,",
+ 50,
+ "as if they were spooked zebras",
+ 51,
+ "fleeing from a lion?",
+ 52,
+ "In fact, each one of them wishes to be given a ˹personal˺ letter ˹from Allah˺ for all ˹to read˺.",
+ 53,
+ "But no! In fact, they do not fear the Hereafter.",
+ 54,
+ "Enough! Surely this ˹Quran˺ is a reminder.",
+ 55,
+ "So let whoever wills be mindful of it.",
+ 56,
+ "But they cannot do so unless Allah wills. He ˹alone˺ is worthy to be feared and entitled to forgive."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/75.json b/share/quran-json/TheQuran/en/75.json
new file mode 100644
index 0000000..3a75cab
--- /dev/null
+++ b/share/quran-json/TheQuran/en/75.json
@@ -0,0 +1,99 @@
+[
+ {
+ "id": "75",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qiyamah",
+ "translated_name": "The Resurrection",
+ "verse_count": 40,
+ "slug": "al-qiyamah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1610,
+ 1575,
+ 1605,
+ 1577
+ ]
+ },
+ 1,
+ "I do swear by the Day of Judgment!",
+ 2,
+ "And I do swear by the self-reproaching soul!",
+ 3,
+ "Do people think We cannot reassemble their bones?",
+ 4,
+ "Yes ˹indeed˺! We are ˹most˺ capable of restoring ˹even˺ their very fingertips.",
+ 5,
+ "Still people want to deny what is yet to come,",
+ 6,
+ "asking ˹mockingly˺, “When is this Day of Judgment?”",
+ 7,
+ "But when the sight is stunned,",
+ 8,
+ "and the moon is dimmed,",
+ 9,
+ "and the sun and the moon are brought together,",
+ 10,
+ "on that Day one will cry, “Where is the escape?”",
+ 11,
+ "But no! There will be no refuge.",
+ 12,
+ "On that Day all will end up before your Lord.",
+ 13,
+ "All will then be informed of what they have sent forth and left behind.",
+ 14,
+ "In fact, people will testify against their own souls,",
+ 15,
+ "despite the excuses they come up with.",
+ 16,
+ "Do not rush your tongue trying to memorize ˹a revelation of˺ the Quran.",
+ 17,
+ "It is certainly upon Us to ˹make you˺ memorize and recite it.",
+ 18,
+ "So once We have recited a revelation ˹through Gabriel˺, follow its recitation ˹closely˺.",
+ 19,
+ "Then it is surely upon Us to make it clear ˹to you˺.",
+ 20,
+ "But no! In fact, you love this fleeting world,",
+ 21,
+ "and neglect the Hereafter.",
+ 22,
+ "On that Day ˹some˺ faces will be bright,",
+ 23,
+ "looking at their Lord.",
+ 24,
+ "And ˹other˺ faces will be gloomy,",
+ 25,
+ "anticipating something devastating to befall them.",
+ 26,
+ "But no! ˹Beware of the day˺ when the soul reaches the collar bone ˹as it leaves˺,",
+ 27,
+ "and it will be said, “Is there any healer ˹who can save this life˺?”",
+ 28,
+ "And the dying person realizes it is ˹their˺ time to depart,",
+ 29,
+ "and ˹then˺ their feet are tied together ˹in a shroud˺.",
+ 30,
+ "On that day they will be driven to your Lord ˹alone˺.",
+ 31,
+ "This denier neither believed nor prayed,",
+ 32,
+ "but persisted in denial and turned away,",
+ 33,
+ "then went to their own people, walking boastfully.",
+ 34,
+ "Woe to you, and more woe!",
+ 35,
+ "Again, woe to you, and even more woe!",
+ 36,
+ "Do people think they will be left without purpose?",
+ 37,
+ "Were they not ˹once˺ a sperm-drop emitted?",
+ 38,
+ "Then they became a clinging clot ˹of blood˺, then He developed and perfected their form,",
+ 39,
+ "producing from it both sexes, male and female.",
+ 40,
+ "Is such ˹a Creator˺ unable to bring the dead back to life?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/76.json b/share/quran-json/TheQuran/en/76.json
new file mode 100644
index 0000000..4d1fe2a
--- /dev/null
+++ b/share/quran-json/TheQuran/en/76.json
@@ -0,0 +1,81 @@
+[
+ {
+ "id": "76",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Insan",
+ "translated_name": "The Man",
+ "verse_count": 31,
+ "slug": "al-insan",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1575,
+ 1606,
+ 1587,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Is there not a period of time when each human is nothing yet worth mentioning?",
+ 2,
+ "˹For˺ indeed, We ˹alone˺ created humans from a drop of mixed fluids, ˹in order˺ to test them, so We made them hear and see.",
+ 3,
+ "We already showed them the Way, whether they ˹choose to˺ be grateful or ungrateful.",
+ 4,
+ "Indeed, We have prepared for the disbelievers chains, shackles, and a blazing Fire.",
+ 5,
+ "Indeed, the virtuous will have a drink ˹of pure wine˺—flavoured with camphor—",
+ 6,
+ "˹from˺ a spring where Allah’s servants will drink, flowing at their will.",
+ 7,
+ "They ˹are those who˺ fulfil ˹their˺ vows and fear a Day of sweeping horror,",
+ 8,
+ "and give food—despite their desire for it—to the poor, the orphan, and the captive,",
+ 9,
+ "˹saying to themselves,˺ “We feed you only for the sake of Allah, seeking neither reward nor thanks from you.",
+ 10,
+ "We fear from our Lord a horribly distressful Day.”",
+ 11,
+ "So Allah will deliver them from the horror of that Day, and grant them radiance and joy,",
+ 12,
+ "and reward them for their perseverance with a Garden ˹in Paradise˺ and ˹garments of˺ silk.",
+ 13,
+ "There they will be reclining on ˹canopied˺ couches, never seeing scorching heat or bitter cold.",
+ 14,
+ "The Garden’s shade will be right above them, and its fruit will be made very easy to reach.",
+ 15,
+ "They will be waited on with silver vessels and cups of crystal—",
+ 16,
+ "crystalline silver, filled precisely as desired.",
+ 17,
+ "And they will be given a drink ˹of pure wine˺ flavoured with ginger",
+ 18,
+ "from a spring there, called Salsabîl.",
+ 19,
+ "They will be waited on by eternal youths. If you saw them, you would think they were scattered pearls.",
+ 20,
+ "And if you looked around, you would see ˹indescribable˺ bliss and a vast kingdom.",
+ 21,
+ "The virtuous will be ˹dressed˺ in garments of fine green silk and rich brocade, and adorned with bracelets of silver, and their Lord will give them a purifying drink.",
+ 22,
+ "˹And they will be told,˺ “All this is surely a reward for you. Your striving has been appreciated.”",
+ 23,
+ "Indeed, it is We Who have revealed the Quran to you ˹O Prophet˺ in stages.",
+ 24,
+ "So be patient with your Lord’s decree, and do not yield to any evildoer or ˹staunch˺ disbeliever from among them.",
+ 25,
+ "˹Always˺ remember the Name of your Lord morning and evening,",
+ 26,
+ "and prostrate before Him during part of the night, and glorify Him long at night. ",
+ 27,
+ "Surely those ˹pagans˺ love this fleeting world, ˹totally˺ neglecting a weighty Day ahead of them.",
+ 28,
+ "It is We Who created them and perfected their ˹physical˺ form. But if We will, We can easily replace them with others.",
+ 29,
+ "Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.",
+ 30,
+ "But you cannot will ˹to do so˺ unless Allah wills. Indeed, Allah is All-Knowing, All-Wise.",
+ 31,
+ "He admits whoever He wills into His mercy. As for the wrongdoers, He has prepared for them a painful punishment"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/77.json b/share/quran-json/TheQuran/en/77.json
new file mode 100644
index 0000000..60c8512
--- /dev/null
+++ b/share/quran-json/TheQuran/en/77.json
@@ -0,0 +1,120 @@
+[
+ {
+ "id": "77",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Mursalat",
+ "translated_name": "The Emissaries",
+ "verse_count": 50,
+ "slug": "al-mursalat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1585,
+ 1587,
+ 1604,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "By those ˹winds˺ sent forth successively,",
+ 2,
+ "and those blowing violently,",
+ 3,
+ "and those scattering ˹rainclouds˺ widely!",
+ 4,
+ "And ˹by˺ those ˹angels˺ fully distinguishing ˹truth from falsehood˺,",
+ 5,
+ "and those delivering revelation,",
+ 6,
+ "ending excuses and giving warnings.",
+ 7,
+ "Surely, what you are promised will come to pass.",
+ 8,
+ "So when the stars are put out,",
+ 9,
+ "and the sky is torn apart,",
+ 10,
+ "and the mountains are blown away,",
+ 11,
+ "and the messengers’ time ˹to testify˺ comes up—",
+ 12,
+ "for which Day has all this been set?",
+ 13,
+ "For the Day of ˹Final˺ Decision!",
+ 14,
+ "And what will make you realize what the Day of Decision is?",
+ 15,
+ "Woe on that Day to the deniers!",
+ 16,
+ "Did We not destroy earlier disbelievers?",
+ 17,
+ "And We will make the later disbelievers follow them.",
+ 18,
+ "This is how We deal with the wicked.",
+ 19,
+ "Woe on that Day to the deniers!",
+ 20,
+ "Did We not create you from a humble fluid,",
+ 21,
+ "placing it in a secure place",
+ 22,
+ "until an appointed time?",
+ 23,
+ "We ˹perfectly˺ ordained ˹its development˺. How excellent are We in doing so!",
+ 24,
+ "Woe on that Day to the deniers!",
+ 25,
+ "Have We not made the earth a lodging",
+ 26,
+ "for the living and the dead,",
+ 27,
+ "and placed upon it towering, firm mountains, and given you fresh water to drink?",
+ 28,
+ "Woe on that Day to the deniers!",
+ 29,
+ "˹The disbelievers will be told,˺ “Proceed into that ˹Fire˺ which you used to deny!",
+ 30,
+ "Proceed into the shade ˹of smoke˺ which rises in three columns,",
+ 31,
+ "providing neither coolness nor shelter from the flames.",
+ 32,
+ "Indeed, it hurls sparks ˹as big˺ as huge castles,",
+ 33,
+ "and ˹as dark˺ as black camels.”",
+ 34,
+ "Woe on that Day to the deniers!",
+ 35,
+ "On that Day they will not ˹be in a position to˺ speak,",
+ 36,
+ "nor will they be permitted to offer excuses.",
+ 37,
+ "Woe on that Day to the deniers!",
+ 38,
+ "˹They will be told by Allah,˺ “This is the Day of ˹Final˺ Decision: We have gathered you along with earlier disbelievers ˹for punishment˺.",
+ 39,
+ "So if you have a scheme ˹to save yourselves˺, then use it against Me.”",
+ 40,
+ "Woe on that Day to the deniers!",
+ 41,
+ "Indeed, the righteous will be amid ˹cool˺ shade and springs",
+ 42,
+ "and any fruit they desire.",
+ 43,
+ "˹They will be told,˺ “Eat and drink happily for what you used to do.”",
+ 44,
+ "Surely this is how We reward the good-doers.",
+ 45,
+ "˹But˺ woe on that Day to the deniers!",
+ 46,
+ "“Eat and enjoy yourselves for a little while, ˹for˺ you are truly wicked.”",
+ 47,
+ "Woe on that Day to the deniers!",
+ 48,
+ "When it is said to them, “Bow down ˹before Allah,” they do not bow.",
+ 49,
+ "Woe on that Day to the deniers!",
+ 50,
+ "So what message after this ˹Quran˺ would they believe in?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/78.json b/share/quran-json/TheQuran/en/78.json
new file mode 100644
index 0000000..81f9af1
--- /dev/null
+++ b/share/quran-json/TheQuran/en/78.json
@@ -0,0 +1,97 @@
+[
+ {
+ "id": "78",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Naba",
+ "translated_name": "The Tidings",
+ "verse_count": 40,
+ "slug": "an-naba",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1576,
+ 1573
+ ]
+ },
+ 1,
+ "What are they asking one another about?",
+ 2,
+ "About the momentous news,",
+ 3,
+ "over which they disagree.",
+ 4,
+ "But no! They will come to know.",
+ 5,
+ "Again, no! They will come to know.",
+ 6,
+ "Have We not smoothed out the earth ˹like a bed˺,",
+ 7,
+ "and ˹made˺ the mountains as ˹its˺ pegs,",
+ 8,
+ "and created you in pairs,",
+ 9,
+ "and made your sleep for rest,",
+ 10,
+ "and made the night as a cover,",
+ 11,
+ "and made the day for livelihood,",
+ 12,
+ "and built above you seven mighty ˹heavens˺,",
+ 13,
+ "and placed ˹in them˺ a shining lamp,",
+ 14,
+ "and sent down from rainclouds pouring water,",
+ 15,
+ "producing by it grain and ˹various˺ plants,",
+ 16,
+ "and dense orchards?",
+ 17,
+ "Indeed, the Day of ˹Final˺ Decision is an appointed time—",
+ 18,
+ "˹it is˺ the Day the Trumpet will be blown, and you will ˹all˺ come forth in crowds.",
+ 19,
+ "The sky will be ˹split˺ open, becoming ˹many˺ gates,",
+ 20,
+ "and the mountains will be blown away, becoming ˹like˺ a mirage.",
+ 21,
+ "Indeed, Hell is lying in ambush",
+ 22,
+ "as a home for the transgressors,",
+ 23,
+ "where they will remain for ˹endless˺ ages.",
+ 24,
+ "There they will not taste any coolness or drink,",
+ 25,
+ "except boiling water and ˹oozing˺ pus—",
+ 26,
+ "a fitting reward.",
+ 27,
+ "For they never expected any reckoning,",
+ 28,
+ "and totally rejected Our signs.",
+ 29,
+ "And We have everything recorded precisely.",
+ 30,
+ "˹So the deniers will be told,˺ “Taste ˹the punishment˺, for all you will get from Us is more torment.”",
+ 31,
+ "Indeed, the righteous will have salvation—",
+ 32,
+ "Gardens, vineyards,",
+ 33,
+ "and full-bosomed maidens of equal age,",
+ 34,
+ "and full cups ˹of pure wine˺,",
+ 35,
+ "never to hear any idle talk or lying therein—",
+ 36,
+ "a ˹fitting˺ reward as a generous gift from your Lord,",
+ 37,
+ "the Lord of the heavens and the earth and everything in between, the Most Compassionate. No one will dare speak to Him",
+ 38,
+ "on the Day the ˹holy˺ spirit and the angels will stand in ranks. None will talk, except those granted permission by the Most Compassionate and whose words are true.",
+ 39,
+ "That Day is the ˹ultimate˺ truth. So let whoever wills take the path leading back to their Lord.",
+ 40,
+ "Indeed, We have warned you of an imminent punishment—the Day every person will see ˹the consequences of˺ what their hands have done, and the disbelievers will cry, “I wish I were dust.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/79.json b/share/quran-json/TheQuran/en/79.json
new file mode 100644
index 0000000..51f1e4a
--- /dev/null
+++ b/share/quran-json/TheQuran/en/79.json
@@ -0,0 +1,112 @@
+[
+ {
+ "id": "79",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Nazi'at",
+ "translated_name": "Those who drag forth",
+ "verse_count": 46,
+ "slug": "an-naziat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1575,
+ 1586,
+ 1593,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "By those ˹angels˺ stripping out ˹evil souls˺ harshly,",
+ 2,
+ "and those pulling out ˹good souls˺ gently,",
+ 3,
+ "and those gliding ˹through heavens˺ swiftly,",
+ 4,
+ "and those taking the lead vigorously,",
+ 5,
+ "and those conducting affairs ˹obediently˺!",
+ 6,
+ "˹Consider˺ the Day ˹when˺ the quaking Blast will come to pass,",
+ 7,
+ "followed by a second Blast.",
+ 8,
+ "˹The deniers’˺ hearts on that Day will be trembling ˹in horror˺,",
+ 9,
+ "with their eyes downcast.",
+ 10,
+ "˹But now˺ they ask ˹mockingly˺, “Will we really be restored to our former state,",
+ 11,
+ "even after we have been reduced to decayed bones?”",
+ 12,
+ "Adding, “Then such a return would be a ˹total˺ loss ˹for us˺!”",
+ 13,
+ "But indeed, it will take only one ˹mighty˺ Blast,",
+ 14,
+ "and at once they will be above ground.",
+ 15,
+ "Has the story of Moses reached you ˹O Prophet˺?",
+ 16,
+ "His Lord called him in the sacred valley of Ṭuwa,",
+ 17,
+ "˹commanding,˺ “Go to Pharaoh, for he has truly transgressed ˹all bounds˺.",
+ 18,
+ "And say, ‘Would you ˹be willing to˺ purify yourself,",
+ 19,
+ "and let me guide you to your Lord so that you will be in awe ˹of Him˺?’”",
+ 20,
+ "Then Moses showed him the great sign,",
+ 21,
+ "but he denied and disobeyed ˹Allah˺,",
+ 22,
+ "then turned his back, striving ˹against the truth˺.",
+ 23,
+ "Then he summoned ˹his people˺ and called out,",
+ 24,
+ "saying, “I am your lord, the most high!”",
+ 25,
+ "So Allah overtook him, making him an example in this life and the next.",
+ 26,
+ "Surely in this is a lesson for whoever stands in awe of ˹Allah˺.",
+ 27,
+ "Which is harder to create: you or the sky? He built it,",
+ 28,
+ "raising it high and forming it flawlessly.",
+ 29,
+ "He dimmed its night, and brought forth its daylight.",
+ 30,
+ "As for the earth, He spread it out as well,",
+ 31,
+ "bringing forth its water and pastures",
+ 32,
+ "and setting the mountains firmly ˹upon it˺—",
+ 33,
+ "all as ˹a means of˺ sustenance for you and your animals.",
+ 34,
+ "But, when the Supreme Disaster comes to pass—",
+ 35,
+ "the Day every person will remember all ˹their˺ striving,",
+ 36,
+ "and the Hellfire will be displayed for all to see—",
+ 37,
+ "then as for those who transgressed",
+ 38,
+ "and preferred the ˹fleeting˺ life of this world,",
+ 39,
+ "the Hellfire will certainly be ˹their˺ home.",
+ 40,
+ "And as for those who were in awe of standing before their Lord and restrained themselves from ˹evil˺ desires,",
+ 41,
+ "Paradise will certainly be ˹their˺ home.",
+ 42,
+ "They ask you ˹O Prophet˺ regarding the Hour, “When will it be?”",
+ 43,
+ "But it is not for you to tell its time.",
+ 44,
+ "That knowledge rests with your Lord ˹alone˺.",
+ 45,
+ "Your duty is only to warn whoever is in awe of it.",
+ 46,
+ "On the Day they see it, it will be as if they had stayed ˹in the world˺ no more than one evening or its morning."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/8.json b/share/quran-json/TheQuran/en/8.json
new file mode 100644
index 0000000..b22bed0
--- /dev/null
+++ b/share/quran-json/TheQuran/en/8.json
@@ -0,0 +1,169 @@
+[
+ {
+ "id": "8",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Anfal",
+ "translated_name": "The Spoils of War",
+ "verse_count": 75,
+ "slug": "al-anfal",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1606,
+ 1601,
+ 1575,
+ 1604
+ ]
+ },
+ 1,
+ "They ask you ˹O Prophet˺ regarding the spoils of war. Say, “Their distribution is decided by Allah and His Messenger. So be mindful of Allah, settle your affairs, and obey Allah and His Messenger if you are ˹true˺ believers.”",
+ 2,
+ "The ˹true˺ believers are only those whose hearts tremble at the remembrance of Allah, whose faith increases when His revelations are recited to them, and who put their trust in their Lord.",
+ 3,
+ "˹They are˺ those who establish prayer and donate from what We have provided for them.",
+ 4,
+ "It is they who are the true believers. They will have elevated ranks, forgiveness, and an honourable provision from their Lord.",
+ 5,
+ "Similarly, when your Lord brought you ˹O Prophet˺ out of your home for a just cause, a group of believers was totally against it.",
+ 6,
+ "They disputed with you about the truth after it had been made clear, as if they were being driven to death with their eyes wide open.",
+ 7,
+ "˹Remember, O believers,˺ when Allah promised ˹to give˺ you the upper hand over either target, you wished to capture the unarmed party. But it was Allah’s Will to establish the truth by His Words and uproot the disbelievers;",
+ 8,
+ "to firmly establish the truth and wipe out falsehood—even to the dismay of the wicked.",
+ 9,
+ "˹Remember˺ when you cried out to your Lord for help, He answered, “I will reinforce you with a thousand angels—followed by many others.”",
+ 10,
+ "And Allah made this a sign of victory and reassurance to your hearts. Victory comes only from Allah. Surely Allah is Almighty, All-Wise.",
+ 11,
+ "˹Remember˺ when He caused drowsiness to overcome you, giving you serenity. And He sent down rain from the sky to purify you, free you from Satan’s whispers, strengthen your hearts, and make ˹your˺ steps firm.",
+ 12,
+ "˹Remember, O Prophet,˺ when your Lord revealed to the angels, “I am with you. So make the believers stand firm. I will cast horror into the hearts of the disbelievers. So strike their necks and strike their fingertips.”",
+ 13,
+ "This is because they defied Allah and His Messenger. And whoever defies Allah and His Messenger, then ˹know that˺ Allah is surely severe in punishment.",
+ 14,
+ "That ˹worldly punishment˺ is yours, so taste it! Then the disbelievers will suffer the torment of the Fire.",
+ 15,
+ "O believers! When you face the disbelievers in battle, never turn your backs to them.",
+ 16,
+ "And whoever does so on such an occasion—unless it is a manoeuvre or to join their own troops—will earn the displeasure of Allah, and their home will be Hell. What an evil destination!",
+ 17,
+ "It was not you ˹believers˺ who killed them, but it was Allah Who did so. Nor was it you ˹O Prophet˺ who threw ˹a handful of sand at the disbelievers˺, but it was Allah Who did so, rendering the believers a great favour. Surely Allah is All-Hearing, All-Knowing.",
+ 18,
+ "As such, Allah frustrates the evil plans of the disbelievers.",
+ 19,
+ "If you ˹Meccans˺ sought judgment, now it has come to you. And if you cease, it will be for your own good. But if you persist, We will persist. And your forces—no matter how numerous they might be—will not benefit you whatsoever. For Allah is certainly with the believers.",
+ 20,
+ "O believers! Obey Allah and His Messenger and do not turn away from him while you hear ˹his call˺.",
+ 21,
+ "Do not be like those who say, “We hear,” but in fact they are not listening.",
+ 22,
+ "Indeed, the worst of all beings in the sight of Allah are the ˹wilfully˺ deaf and dumb, who do not understand.",
+ 23,
+ "Had Allah known any goodness in them, He would have certainly made them hear. ˹But˺ even if He had made them hear, they would have surely turned away heedlessly.",
+ 24,
+ "O believers! Respond to Allah and His Messenger when he calls you to that which gives you life. And know that Allah stands between a person and their heart, and that to Him you will all be gathered.",
+ 25,
+ "Beware of a trial that will not only affect the wrongdoers among you. And know that Allah is severe in punishment.",
+ 26,
+ "Remember when you had been vastly outnumbered and oppressed in the land, constantly in fear of attacks by your enemy, then He sheltered you, strengthened you with His help, and provided you with good things so perhaps you would be thankful.",
+ 27,
+ "O believers! Do not betray Allah and the Messenger, nor betray your trusts knowingly.",
+ 28,
+ "And know that your wealth and your children are only a test and that with Allah is a great reward.",
+ 29,
+ "O believers! If you are mindful of Allah, He will grant you a standard ˹to distinguish between right and wrong˺, absolve you of your sins, and forgive you. And Allah is the Lord of infinite bounty.",
+ 30,
+ "And ˹remember, O Prophet,˺ when the disbelievers conspired to capture, kill, or exile you. They planned, but Allah also planned. And Allah is the best of planners.",
+ 31,
+ "Whenever Our revelations are recited to them, they challenge ˹you˺, “We have already heard ˹the recitation˺. If we wanted, we could have easily produced something similar. This ˹Quran˺ is nothing but ancient fables!”",
+ 32,
+ "And ˹remember˺ when they prayed, “O Allah! If this is indeed the truth from You, then rain down stones upon us from the sky or overcome us with a painful punishment.”",
+ 33,
+ "But Allah would never punish them while you ˹O Prophet˺ were in their midst. Nor would He ever punish them if they prayed for forgiveness.",
+ 34,
+ "And why should Allah not punish them while they hinder pilgrims from the Sacred Mosque, claiming to be its rightful guardians? None has the right to guardianship except those mindful ˹of Allah˺, but most pagans do not know.",
+ 35,
+ "Their prayer at the Sacred House was nothing but whistling and clapping. So taste the punishment for your disbelief.",
+ 36,
+ "Surely the disbelievers spend their wealth to hinder others from the Path of Allah. They will continue to spend to the point of regret. Then they will be defeated and the disbelievers will be driven into Hell,",
+ 37,
+ "so Allah may separate the evil from the good. He will pile up the evil ones all together and then cast them into Hell. They are the ˹true˺ losers.",
+ 38,
+ "Tell the disbelievers that if they desist, their past will be forgiven. But if they persist, then they have an example in those destroyed before them.",
+ 39,
+ "Fight against them until there is no more persecution—and ˹your˺ devotion will be entirely to Allah. But if they desist, then surely Allah is All-Seeing of what they do.",
+ 40,
+ "And if they do not comply, then know that Allah is your Protector. What an excellent Protector, and what an excellent Helper!",
+ 41,
+ "Know that whatever spoils you take, one-fifth is for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers, if you ˹truly˺ believe in Allah and what We revealed to Our servant on that decisive day when the two armies met ˹at Badr˺. And Allah is Most Capable of everything.",
+ 42,
+ "˹Remember˺ when you were on the near side of the valley, your enemy on the far side, and the caravan was below you. Even if the two armies had made an appointment ˹to meet˺, both would have certainly missed it. Still it transpired so Allah may establish what He had destined—that those who were to perish and those who were to survive might do so after the truth had been made clear to both. Surely Allah is All-Hearing, All-Knowing.",
+ 43,
+ "˹Remember, O Prophet,˺ when Allah showed them in your dream as few in number. Had He shown them to you as many, you ˹believers˺ would have certainly faltered and disputed in the matter. But Allah spared you ˹from that˺. Surely He knows best what is ˹hidden˺ in the heart.",
+ 44,
+ "Then when your armies met, Allah made them appear as few in your eyes, and made you appear as few in theirs, so Allah may establish what He had destined. And to Allah ˹all˺ matters will be returned ˹for judgment˺.",
+ 45,
+ "O believers! When you face an enemy, stand firm and remember Allah often so you may triumph.",
+ 46,
+ "Obey Allah and His Messenger and do not dispute with one another, or you would be discouraged and weakened. Persevere! Surely Allah is with those who persevere.",
+ 47,
+ "Do not be like those ˹pagans˺ who left their homes arrogantly, only to be seen by people and to hinder others from Allah’s Path. And Allah is Fully Aware of what they do.",
+ 48,
+ "And ˹remember˺ when Satan made their ˹evil˺ deeds appealing to them, and said, “No one can overcome you today. I am surely by your side.” But when the two forces faced off, he cowered and said, “I have absolutely nothing to do with you. I certainly see what you do not see. I truly fear Allah, for Allah is severe in punishment.”",
+ 49,
+ "˹Remember˺ when the hypocrites and those with sickness in their hearts said, “These ˹believers˺ are deluded by their faith.” But whoever puts their trust in Allah, surely Allah is Almighty, All-Wise.",
+ 50,
+ "If only you could see when the angels take the souls of the disbelievers, beating their faces and backs, ˹saying,˺ “Taste the torment of burning!",
+ 51,
+ "This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation.”",
+ 52,
+ "Their fate is that of the people of Pharaoh and those before them—they all disbelieved in Allah’s signs, so Allah seized them for their sins. Indeed, Allah is All-Powerful, severe in punishment.",
+ 53,
+ "This is because Allah would never discontinue His favour to a people until they discontinue their faith. Surely Allah is All-Hearing, All-Knowing.",
+ 54,
+ "That was the case with Pharaoh’s people and those before them—they all rejected the signs of their Lord, so We destroyed them for their sins and drowned Pharaoh’s people. They were all wrongdoers.",
+ 55,
+ "Indeed, the worst of all beings in the sight of Allah are those who persist in disbelief, never to have faith—",
+ 56,
+ "˹namely˺ those with whom you ˹O Prophet˺ have entered into treaties, but they violate them every time, not fearing the consequences.",
+ 57,
+ "If you ever encounter them in battle, make a fearsome example of them, so perhaps those who would follow them may be deterred.",
+ 58,
+ "And if you ˹O Prophet˺ see signs of betrayal by a people, respond by openly terminating your treaty with them. Surely Allah does not like those who betray.",
+ 59,
+ "Do not let those disbelievers think they are not within reach. They will have no escape.",
+ 60,
+ "Prepare against them what you ˹believers˺ can of ˹military˺ power and cavalry to deter Allah’s enemies and your enemies as well as other enemies unknown to you but known to Allah. Whatever you spend in the cause of Allah will be paid to you in full and you will not be wronged.",
+ 61,
+ "If the enemy is inclined towards peace, make peace with them. And put your trust in Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.",
+ 62,
+ "But if their intention is only to deceive you, then Allah is certainly sufficient for you. He is the One Who has supported you with His help and with the believers.",
+ 63,
+ "He brought their hearts together. Had you spent all the riches in the earth, you could not have united their hearts. But Allah has united them. Indeed, He is Almighty, All-Wise.",
+ 64,
+ "O Prophet! Allah is sufficient for you and for the believers who follow you.",
+ 65,
+ "O Prophet! Motivate the believers to fight. If there are twenty steadfast among you, they will overcome two hundred. And if there are one hundred of you, they will overcome one thousand of the disbelievers, for they are a people who do not comprehend.",
+ 66,
+ "Now Allah has lightened your burden, for He knows that there is weakness in you. So if there are a hundred steadfast among you, they will overcome two hundred. And if there be one thousand, they will overcome two thousand, by Allah’s Will. And Allah is with the steadfast.",
+ 67,
+ "It is not fit for a prophet that he should take captives until he has thoroughly subdued the land. You ˹believers˺ settled with the fleeting gains of this world, while Allah’s aim ˹for you˺ is the Hereafter. Allah is Almighty, All-Wise.",
+ 68,
+ "Had it not been for a prior decree from Allah, you would have certainly been disciplined with a tremendous punishment for whatever ˹ransom˺ you have taken.",
+ 69,
+ "Now enjoy what you have taken, for it is lawful and good. And be mindful of Allah. Surely Allah is All-Forgiving, Most Merciful.",
+ 70,
+ "O Prophet! Tell the captives in your custody, “If Allah finds goodness in your hearts, He will give you better than what has been taken from you, and forgive you. For Allah is All-Forgiving, Most Merciful.”",
+ 71,
+ "But if their intention is only to betray you ˹O Prophet˺, they sought to betray Allah before. But He gave you power over them. And Allah is All-Knowing, All-Wise.",
+ 72,
+ "Those who believed, emigrated, and strived with their wealth and lives in the cause of Allah, as well as those who gave them shelter and help—they are truly guardians of one another. As for those who believed but did not emigrate, you have no obligations to them until they emigrate. But if they seek your help ˹against persecution˺ in faith, it is your obligation to help them, except against people bound with you in a treaty. Allah is All-Seeing of what you do.",
+ 73,
+ "As for the disbelievers, they are guardians of one another. And unless you ˹believers˺ act likewise, there will be great oppression and corruption in the land.",
+ 74,
+ "Those who believed, migrated, and struggled in the cause of Allah, and those who gave ˹them˺ shelter and help, they are the true believers. They will have forgiveness and an honourable provision.",
+ 75,
+ "And those who later believed, migrated, and struggled alongside you, they are also with you. But only blood relatives are now entitled to inherit from one another, as ordained by Allah. Surely Allah has ˹full˺ knowledge of everything."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/80.json b/share/quran-json/TheQuran/en/80.json
new file mode 100644
index 0000000..994138b
--- /dev/null
+++ b/share/quran-json/TheQuran/en/80.json
@@ -0,0 +1,99 @@
+[
+ {
+ "id": "80",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "'Abasa",
+ "translated_name": "He Frowned",
+ "verse_count": 42,
+ "slug": "abasa",
+ "codepoints": [
+ 1593,
+ 1576,
+ 1587
+ ]
+ },
+ 1,
+ "He frowned and turned ˹his attention˺ away,",
+ 2,
+ "˹simply˺ because the blind man came to him ˹interrupting˺.",
+ 3,
+ "You never know ˹O Prophet˺, perhaps he may be purified,",
+ 4,
+ "or he may be mindful, benefitting from the reminder.",
+ 5,
+ "As for the one who was indifferent,",
+ 6,
+ "you gave him your ˹undivided˺ attention,",
+ 7,
+ "even though you are not to blame if he would not be purified.",
+ 8,
+ "But as for the one who came to you, eager ˹to learn˺,",
+ 9,
+ "being in awe ˹of Allah˺,",
+ 10,
+ "you were inattentive to him.",
+ 11,
+ "But no! This ˹revelation˺ is truly a reminder.",
+ 12,
+ "So let whoever wills be mindful of it.",
+ 13,
+ "It is ˹written˺ on pages held in honour—",
+ 14,
+ "highly esteemed, purified—",
+ 15,
+ "by the hands of angel-scribes,",
+ 16,
+ "honourable and virtuous.",
+ 17,
+ "Condemned are ˹disbelieving˺ humans! How ungrateful they are ˹to Allah˺!",
+ 18,
+ "From what substance did He create them?",
+ 19,
+ "He created them from a sperm-drop, and ordained their development.",
+ 20,
+ "Then He makes the way easy for them,",
+ 21,
+ "then causes them to die and be buried.",
+ 22,
+ "Then when He wills, He will resurrect them.",
+ 23,
+ "But no! They have failed to comply with what He ordered.",
+ 24,
+ "Let people then consider their food:",
+ 25,
+ "how We pour down rain in abundance",
+ 26,
+ "and meticulously split the earth open ˹for sprouts˺,",
+ 27,
+ "causing grain to grow in it,",
+ 28,
+ "as well as grapes and greens,",
+ 29,
+ "and olives and palm trees,",
+ 30,
+ "and dense orchards,",
+ 31,
+ "and fruit and fodder—",
+ 32,
+ "all as ˹a means of˺ sustenance for you and your animals.",
+ 33,
+ "Then, when the Deafening Blast comes to pass—",
+ 34,
+ "on that Day every person will flee from their own siblings,",
+ 35,
+ "and ˹even˺ their mother and father,",
+ 36,
+ "and ˹even˺ their spouse and children.",
+ 37,
+ "For then everyone will have enough concern of their own.",
+ 38,
+ "On that Day ˹some˺ faces will be bright,",
+ 39,
+ "laughing and rejoicing,",
+ 40,
+ "while ˹other˺ faces will be dusty,",
+ 41,
+ "cast in gloom—",
+ 42,
+ "those are the disbelievers, the ˹wicked˺ sinners."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/81.json b/share/quran-json/TheQuran/en/81.json
new file mode 100644
index 0000000..c2d6e07
--- /dev/null
+++ b/share/quran-json/TheQuran/en/81.json
@@ -0,0 +1,77 @@
+[
+ {
+ "id": "81",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "At-Takwir",
+ "translated_name": "The Overthrowing",
+ "verse_count": 29,
+ "slug": "at-takwir",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1603,
+ 1608,
+ 1610,
+ 1585
+ ]
+ },
+ 1,
+ "When the sun is put out,",
+ 2,
+ "and when the stars fall down,",
+ 3,
+ "and when the mountains are blown away,",
+ 4,
+ "and when pregnant camels are left untended,",
+ 5,
+ "and when wild beasts are gathered together,",
+ 6,
+ "and when the seas are set on fire,",
+ 7,
+ "and when the souls ˹and their bodies˺ are paired ˹once more˺,",
+ 8,
+ "and when baby girls, buried alive, are asked",
+ 9,
+ "for what crime they were put to death,",
+ 10,
+ "and when the records ˹of deeds˺ are laid open,",
+ 11,
+ "and when the sky is stripped away,",
+ 12,
+ "and when the Hellfire is fiercely flared up,",
+ 13,
+ "and when Paradise is brought near—",
+ 14,
+ "˹on that Day˺ each soul will know what ˹deeds˺ it has brought along.",
+ 15,
+ "I do swear by the receding stars",
+ 16,
+ "which travel and hide,",
+ 17,
+ "and the night as it falls",
+ 18,
+ "and the day as it breaks!",
+ 19,
+ "Indeed, this ˹Quran˺ is the Word of ˹Allah delivered by Gabriel,˺ a noble messenger-angel,",
+ 20,
+ "full of power, held in honour by the Lord of the Throne,",
+ 21,
+ "obeyed there ˹in heaven˺, and trustworthy.",
+ 22,
+ "And your fellow man is not insane.",
+ 23,
+ "And he did see that ˹angel˺ on the clear horizon,",
+ 24,
+ "and he does not withhold ˹what is revealed to him of˺ the unseen.",
+ 25,
+ "And this ˹Quran˺ is not the word of an outcast devil.",
+ 26,
+ "So what ˹other˺ path would you take?",
+ 27,
+ "Surely this ˹Quran˺ is only a reminder to the whole world—",
+ 28,
+ "to whoever of you wills to take the Straight Way.",
+ 29,
+ "But you cannot will ˹to do so˺, except by the Will of Allah, the Lord of all worlds."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/82.json b/share/quran-json/TheQuran/en/82.json
new file mode 100644
index 0000000..0d6a398
--- /dev/null
+++ b/share/quran-json/TheQuran/en/82.json
@@ -0,0 +1,58 @@
+[
+ {
+ "id": "82",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Infitar",
+ "translated_name": "The Cleaving",
+ "verse_count": 19,
+ "slug": "al-infitar",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1573,
+ 1606,
+ 1601,
+ 1591,
+ 1575,
+ 1585
+ ]
+ },
+ 1,
+ "When the sky splits open,",
+ 2,
+ "and when the stars fall away,",
+ 3,
+ "and when the seas burst forth,",
+ 4,
+ "and when the graves spill out,",
+ 5,
+ "˹then˺ each soul will know what it has sent forth or left behind.",
+ 6,
+ "O humanity! What has emboldened you against your Lord, the Most Generous,",
+ 7,
+ "Who created you, fashioned you, and perfected your design,",
+ 8,
+ "moulding you in whatever form He willed?",
+ 9,
+ "But no! In fact, you deny the ˹final˺ Judgment,",
+ 10,
+ "while you are certainly observed by vigilant,",
+ 11,
+ "honourable angels, recording ˹everything˺.",
+ 12,
+ "They know whatever you do.",
+ 13,
+ "Indeed, the virtuous will be in bliss,",
+ 14,
+ "and the wicked will be in Hell,",
+ 15,
+ "burning in it on Judgment Day,",
+ 16,
+ "and they will have no escape from it.",
+ 17,
+ "What will make you realize what Judgment Day is?",
+ 18,
+ "Again, what will make you realize what Judgment Day is?",
+ 19,
+ "˹It is˺ the Day no soul will be of ˹any˺ benefit to another whatsoever, for all authority on that Day belongs to Allah ˹entirely˺."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/83.json b/share/quran-json/TheQuran/en/83.json
new file mode 100644
index 0000000..cbad163
--- /dev/null
+++ b/share/quran-json/TheQuran/en/83.json
@@ -0,0 +1,92 @@
+[
+ {
+ "id": "83",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Mutaffifin",
+ "translated_name": "The Defrauding",
+ "verse_count": 36,
+ "slug": "al-mutaffifin",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1591,
+ 1601,
+ 1601,
+ 1610,
+ 1606
+ ]
+ },
+ 1,
+ "Woe to the defrauders!",
+ 2,
+ "Those who take full measure ˹when they buy˺ from people,",
+ 3,
+ "but give less when they measure or weigh for buyers.",
+ 4,
+ "Do such people not think that they will be resurrected",
+ 5,
+ "for a tremendous Day—",
+ 6,
+ "the Day ˹all˺ people will stand before the Lord of all worlds?",
+ 7,
+ "But no! The wicked are certainly bound for Sijjîn ˹in the depths of Hell˺—",
+ 8,
+ "and what will make you realize what Sijjîn is?—",
+ 9,
+ "a fate ˹already˺ sealed.",
+ 10,
+ "Woe on that Day to the deniers—",
+ 11,
+ "those who deny Judgment Day!",
+ 12,
+ "None would deny it except every evildoing transgressor.",
+ 13,
+ "Whenever Our revelations are recited to them, they say, “Ancient fables!”",
+ 14,
+ "But no! In fact, their hearts have been stained by all ˹the evil˺ they used to commit!",
+ 15,
+ "Undoubtedly, they will be sealed off from their Lord on that Day.",
+ 16,
+ "Moreover, they will surely burn in Hell,",
+ 17,
+ "and then be told, “This is what you used to deny.”",
+ 18,
+ "But no! The virtuous are certainly bound for ’Illiyûn ˹in elevated Gardens˺—",
+ 19,
+ "and what will make you realize what ’Illiyûn is?—",
+ 20,
+ "a fate ˹already˺ sealed,",
+ 21,
+ "witnessed by those nearest ˹to Allah˺.",
+ 22,
+ "Surely the virtuous will be in bliss,",
+ 23,
+ "˹seated˺ on ˹canopied˺ couches, gazing around.",
+ 24,
+ "You will recognize on their faces the glow of delight.",
+ 25,
+ "They will be given a drink of sealed, pure wine,",
+ 26,
+ "whose last sip will smell like musk. So let whoever aspires to this strive ˹diligently˺.",
+ 27,
+ "And this drink’s flavour will come from Tasnîm—",
+ 28,
+ "a spring from which those nearest ˹to Allah˺ will drink.",
+ 29,
+ "Indeed, the wicked used to laugh at the believers,",
+ 30,
+ "wink to one another whenever they passed by,",
+ 31,
+ "and muse ˹over these exploits˺ upon returning to their own people.",
+ 32,
+ "And when they saw the faithful, they would say, “These ˹people˺ are truly astray,”",
+ 33,
+ "even though they were not sent as keepers over the believers.",
+ 34,
+ "But on that Day the believers will be laughing at the disbelievers,",
+ 35,
+ "as they sit on ˹canopied˺ couches, looking on.",
+ 36,
+ "˹The believers will be asked,˺ “Have the disbelievers ˹not˺ been paid back for what they used to do?”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/84.json b/share/quran-json/TheQuran/en/84.json
new file mode 100644
index 0000000..7072f20
--- /dev/null
+++ b/share/quran-json/TheQuran/en/84.json
@@ -0,0 +1,70 @@
+[
+ {
+ "id": "84",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Inshiqaq",
+ "translated_name": "The Sundering",
+ "verse_count": 25,
+ "slug": "al-inshiqaq",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1573,
+ 1606,
+ 1588,
+ 1602,
+ 1575,
+ 1602
+ ]
+ },
+ 1,
+ "When the sky bursts open,",
+ 2,
+ "obeying its Lord as it must,",
+ 3,
+ "and when the earth is flattened out,",
+ 4,
+ "and ejects ˹all˺ its contents and becomes empty,",
+ 5,
+ "obeying its Lord as it must, ˹surely you will all be judged˺.",
+ 6,
+ "O humanity! Indeed, you are labouring restlessly towards your Lord, and will ˹eventually˺ meet the consequences.",
+ 7,
+ "As for those who are given their record in their right hand,",
+ 8,
+ "they will have an easy reckoning,",
+ 9,
+ "and will return to their people joyfully.",
+ 10,
+ "And as for those who are given their record ˹in their left hand˺ from behind their backs,",
+ 11,
+ "they will cry for ˹instant˺ destruction,",
+ 12,
+ "and will burn in the blazing Fire.",
+ 13,
+ "For they used to be prideful among their people,",
+ 14,
+ "thinking they would never return ˹to Allah˺.",
+ 15,
+ "Yes ˹they would˺! Surely their Lord has always been All-Seeing of them.",
+ 16,
+ "So, I do swear by the twilight!",
+ 17,
+ "And by the night and whatever it envelops!",
+ 18,
+ "And by the moon when it waxes full!",
+ 19,
+ "You will certainly pass from one state to another.",
+ 20,
+ "So what is the matter with them that they do not believe,",
+ 21,
+ "and when the Quran is recited to them, they do not bow down ˹in submission˺?",
+ 22,
+ "In fact, the disbelievers persist in denial.",
+ 23,
+ "But Allah knows best whatever they hide.",
+ 24,
+ "So give them good news of a painful punishment.",
+ 25,
+ "But those who believe and do good will have a never-ending reward."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/85.json b/share/quran-json/TheQuran/en/85.json
new file mode 100644
index 0000000..c3ebb7c
--- /dev/null
+++ b/share/quran-json/TheQuran/en/85.json
@@ -0,0 +1,62 @@
+[
+ {
+ "id": "85",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Buruj",
+ "translated_name": "The Mansions of the Stars",
+ "verse_count": 22,
+ "slug": "al-buruj",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1576,
+ 1585,
+ 1608,
+ 1580
+ ]
+ },
+ 1,
+ "By the sky full of constellations,",
+ 2,
+ "and the promised Day ˹of Judgment˺,",
+ 3,
+ "and the witness and what is witnessed!",
+ 4,
+ "Condemned are the makers of the ditch—",
+ 5,
+ "the fire ˹pit˺, filled with fuel—",
+ 6,
+ "when they sat around it,",
+ 7,
+ "watching what they had ˹ordered to be˺ done to the believers,",
+ 8,
+ "who they resented for no reason other than belief in Allah—the Almighty, the Praiseworthy—",
+ 9,
+ "˹the One˺ to Whom belongs the kingdom of the heavens and earth. And Allah is a Witness over all things.",
+ 10,
+ "Those who persecute the believing men and women and then do not repent will certainly suffer the punishment of Hell and the torment of burning.",
+ 11,
+ "Surely those who believe and do good will have Gardens under which rivers flow. That is the greatest triumph.",
+ 12,
+ "Indeed, the ˹crushing˺ grip of your Lord is severe.",
+ 13,
+ "˹For˺ He is certainly the One Who originates and resurrects ˹all˺.",
+ 14,
+ "And He is the All-Forgiving, All-Loving—",
+ 15,
+ "Lord of the Throne, the All-Glorious,",
+ 16,
+ "Doer of whatever He wills.",
+ 17,
+ "Has the story of the ˹destroyed˺ forces reached you ˹O Prophet˺—",
+ 18,
+ "˹the forces of˺ Pharaoh and Thamûd?",
+ 19,
+ "Yet the disbelievers ˹still˺ persist in denial.",
+ 20,
+ "But Allah encompasses them from all sides.",
+ 21,
+ "In fact, this is a glorious Quran,",
+ 22,
+ "˹recorded˺ in a Preserved Tablet."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/86.json b/share/quran-json/TheQuran/en/86.json
new file mode 100644
index 0000000..78260dd
--- /dev/null
+++ b/share/quran-json/TheQuran/en/86.json
@@ -0,0 +1,52 @@
+[
+ {
+ "id": "86",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "At-Tariq",
+ "translated_name": "The Nightcommer",
+ "verse_count": 17,
+ "slug": "at-tariq",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1591,
+ 1575,
+ 1585,
+ 1602
+ ]
+ },
+ 1,
+ "By the heaven and the nightly star!",
+ 2,
+ "And what will make you realize what the nightly star is?",
+ 3,
+ "˹It is˺ the star of piercing brightness.",
+ 4,
+ "There is no soul without a vigilant angel ˹recording everything˺.",
+ 5,
+ "Let people then consider what they were created from!",
+ 6,
+ "˹They were˺ created from a spurting fluid,",
+ 7,
+ "stemming from between the backbone and the ribcage.",
+ 8,
+ "Surely He is fully capable of bringing them back ˹to life˺",
+ 9,
+ "on the Day all secrets will be disclosed.",
+ 10,
+ "Then one will have neither power nor ˹any˺ helper.",
+ 11,
+ "By the sky with its recurring cycles,",
+ 12,
+ "and the earth with its sprouting plants!",
+ 13,
+ "Surely this ˹Quran˺ is a decisive word,",
+ 14,
+ "and is not to be taken lightly.",
+ 15,
+ "They are certainly devising ˹evil˺ plans,",
+ 16,
+ "but I too am planning.",
+ 17,
+ "So bear with the disbelievers ˹O Prophet˺. Let them be for ˹just˺ a little while."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/87.json b/share/quran-json/TheQuran/en/87.json
new file mode 100644
index 0000000..cdad1b6
--- /dev/null
+++ b/share/quran-json/TheQuran/en/87.json
@@ -0,0 +1,56 @@
+[
+ {
+ "id": "87",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-A'la",
+ "translated_name": "The Most High",
+ "verse_count": 19,
+ "slug": "al-ala",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1593,
+ 1604,
+ 1609
+ ]
+ },
+ 1,
+ "Glorify the Name of your Lord, the Most High,",
+ 2,
+ "Who created and ˹perfectly˺ fashioned ˹all˺,",
+ 3,
+ "and Who ordained precisely and inspired accordingly,",
+ 4,
+ "and Who brings forth ˹green˺ pasture,",
+ 5,
+ "then reduces it to withered chaff.",
+ 6,
+ "We will have you recite ˹the Quran, O Prophet,˺ so you will not forget ˹any of it˺,",
+ 7,
+ "unless Allah wills otherwise. He surely knows what is open and what is hidden.",
+ 8,
+ "We will facilitate for you the Way of Ease.",
+ 9,
+ "So ˹always˺ remind ˹with the Quran˺—˹even˺ if the reminder is beneficial ˹only to some˺.",
+ 10,
+ "Those in awe ˹of Allah˺ will be mindful ˹of it˺.",
+ 11,
+ "But it will be shunned by the most wretched,",
+ 12,
+ "who will burn in the greatest Fire,",
+ 13,
+ "where they will not ˹be able to˺ live or die.",
+ 14,
+ "Successful indeed are those who purify themselves,",
+ 15,
+ "remember the Name of their Lord, and pray.",
+ 16,
+ "But you ˹deniers only˺ prefer the life of this world,",
+ 17,
+ "even though the Hereafter is far better and more lasting.",
+ 18,
+ "This is certainly ˹mentioned˺ in the earlier Scriptures—",
+ 19,
+ "the Scriptures of Abraham and Moses."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/88.json b/share/quran-json/TheQuran/en/88.json
new file mode 100644
index 0000000..dfbaf52
--- /dev/null
+++ b/share/quran-json/TheQuran/en/88.json
@@ -0,0 +1,71 @@
+[
+ {
+ "id": "88",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Ghashiyah",
+ "translated_name": "The Overwhelming",
+ "verse_count": 26,
+ "slug": "al-ghashiyah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1594,
+ 1575,
+ 1588,
+ 1610,
+ 1577
+ ]
+ },
+ 1,
+ "Has the news of the Overwhelming Event reached you ˹O Prophet˺?",
+ 2,
+ "On that Day ˹some˺ faces will be downcast,",
+ 3,
+ "˹totally˺ overburdened, exhausted,",
+ 4,
+ "burning in a scorching Fire,",
+ 5,
+ "left to drink from a scalding spring.",
+ 6,
+ "They will have no food except a foul, thorny shrub,",
+ 7,
+ "neither nourishing nor satisfying hunger.",
+ 8,
+ "On that Day ˹other˺ faces will be glowing with bliss,",
+ 9,
+ "˹fully˺ pleased with their striving,",
+ 10,
+ "in an elevated Garden,",
+ 11,
+ "where no idle talk will be heard.",
+ 12,
+ "In it will be a running spring,",
+ 13,
+ "along with thrones raised high,",
+ 14,
+ "and cups set at hand,",
+ 15,
+ "and ˹fine˺ cushions lined up,",
+ 16,
+ "and ˹splendid˺ carpets spread out.",
+ 17,
+ "Do they not ever reflect on camels—how they were ˹masterfully˺ created;",
+ 18,
+ "and the sky—how it was raised ˹high˺;",
+ 19,
+ "and the mountains—how they were firmly set up;",
+ 20,
+ "and the earth—how it was levelled out?",
+ 21,
+ "So, ˹continue to˺ remind ˹all, O Prophet˺, for your duty is only to remind.",
+ 22,
+ "You are not ˹there˺ to compel them ˹to believe˺.",
+ 23,
+ "But whoever turns away, persisting in disbelief,",
+ 24,
+ "then Allah will inflict upon them the major punishment.",
+ 25,
+ "Surely to Us is their return,",
+ 26,
+ "then surely with Us is their reckoning."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/89.json b/share/quran-json/TheQuran/en/89.json
new file mode 100644
index 0000000..17dcbe0
--- /dev/null
+++ b/share/quran-json/TheQuran/en/89.json
@@ -0,0 +1,77 @@
+[
+ {
+ "id": "89",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Fajr",
+ "translated_name": "The Dawn",
+ "verse_count": 30,
+ "slug": "al-fajr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1580,
+ 1585
+ ]
+ },
+ 1,
+ "By the dawn,",
+ 2,
+ "and the ten nights,",
+ 3,
+ "and the even and the odd,",
+ 4,
+ "and the night when it passes!",
+ 5,
+ "Is all this ˹not˺ a sufficient oath for those who have sense?",
+ 6,
+ "Did you not see how your Lord dealt with ’Ȃd—",
+ 7,
+ "˹the people˺ of Iram—with ˹their˺ great stature,",
+ 8,
+ "unmatched in any other land;",
+ 9,
+ "and Thamûd who carved ˹their homes into˺ the rocks in the ˹Stone˺ Valley;",
+ 10,
+ "and the Pharaoh of mighty structures?",
+ 11,
+ "They all transgressed throughout the land,",
+ 12,
+ "spreading much corruption there.",
+ 13,
+ "So your Lord unleashed on them a scourge of punishment.",
+ 14,
+ "˹For˺ your Lord is truly vigilant.",
+ 15,
+ "Now, whenever a human being is tested by their Lord through ˹His˺ generosity and blessings, they boast, “My Lord has ˹deservedly˺ honoured me!”",
+ 16,
+ "But when He tests them by limiting their provision, they protest, “My Lord has ˹undeservedly˺ humiliated me!”",
+ 17,
+ "Absolutely not! In fact, you are not ˹even˺ gracious to the orphan,",
+ 18,
+ "nor do you urge one another to feed the poor.",
+ 19,
+ "And you devour ˹others’˺ inheritance greedily,",
+ 20,
+ "and love wealth fervently.",
+ 21,
+ "Enough! When the earth is entirely crushed over and over,",
+ 22,
+ "and your Lord comes ˹to judge˺ with angels, rank upon rank,",
+ 23,
+ "and Hell is brought forth on that Day—this is when every ˹disbelieving˺ person will remember ˹their own sins˺. But what is the use of remembering then?",
+ 24,
+ "They will cry, “I wish I had sent forth ˹something good˺ for my ˹true˺ life.”",
+ 25,
+ "On that Day He will punish ˹them˺ severely, like no other,",
+ 26,
+ "and bind ˹them˺ tightly, like no other. ",
+ 27,
+ "˹Allah will say to the righteous,˺ “O tranquil soul!",
+ 28,
+ "Return to your Lord, well pleased ˹with Him˺ and well pleasing ˹to Him˺.",
+ 29,
+ "So join My servants,",
+ 30,
+ "and enter My Paradise.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/9.json b/share/quran-json/TheQuran/en/9.json
new file mode 100644
index 0000000..9c5a9cc
--- /dev/null
+++ b/share/quran-json/TheQuran/en/9.json
@@ -0,0 +1,276 @@
+[
+ {
+ "id": "9",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "At-Tawbah",
+ "translated_name": "The Repentance",
+ "verse_count": 129,
+ "slug": "at-tawbah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1608,
+ 1576,
+ 1577
+ ]
+ },
+ 1,
+ "˹This is˺ a discharge from all obligations, by Allah and His Messenger, to the polytheists you ˹believers˺ have entered into treaties with:",
+ 2,
+ "“You ˹polytheists˺ may travel freely through the land for four months, but know that you will have no escape from Allah, and that Allah will disgrace the disbelievers.”",
+ 3,
+ "A declaration from Allah and His Messenger ˹is made˺ to all people on the day of the greater pilgrimage that Allah and His Messenger are free of the polytheists. So if you ˹pagans˺ repent, it will be better for you. But if you turn away, then know that you will have no escape from Allah. And give good news ˹O Prophet˺ to the disbelievers of a painful punishment.",
+ 4,
+ "As for the polytheists who have honoured every term of their treaty with you and have not supported an enemy against you, honour your treaty with them until the end of its term. Surely Allah loves those who are mindful ˹of Him˺.",
+ 5,
+ "But once the Sacred Months have passed, kill the polytheists ˹who violated their treaties˺ wherever you find them, capture them, besiege them, and lie in wait for them on every way. But if they repent, perform prayers, and pay alms-tax, then set them free. Indeed, Allah is All-Forgiving, Most Merciful.",
+ 6,
+ "And if anyone from the polytheists asks for your protection ˹O Prophet˺, grant it to them so they may hear the Word of Allah, then escort them to a place of safety, for they are a people who have no knowledge.",
+ 7,
+ "How can such polytheists have a treaty with Allah and His Messenger, except those you have made a treaty with at the Sacred Mosque? So, as long as they are true to you, be true to them. Indeed Allah loves those who are mindful ˹of Him˺.",
+ 8,
+ "How ˹can they have a treaty˺? If they were to have the upper hand over you, they would have no respect for kinship or treaty. They only flatter you with their tongues, but their hearts are in denial, and most of them are rebellious.",
+ 9,
+ "They chose a fleeting gain over Allah’s revelations, hindering ˹others˺ from His Way. Evil indeed is what they have done!",
+ 10,
+ "They do not honour the bonds of kinship or treaties with the believers. It is they who are the transgressors.",
+ 11,
+ "But if they repent, perform prayer, and pay alms-tax, then they are your brothers in faith. This is how We make the revelations clear for people of knowledge.",
+ 12,
+ "But if they break their oaths after making a pledge and attack your faith, then fight the champions of disbelief—who never honour their oaths—so perhaps they will desist.",
+ 13,
+ "Will you not fight those who have broken their oaths, conspired to expel the Messenger ˹from Mecca˺, and attacked you first? Do you fear them? Allah is more deserving of your fear, if you are ˹true˺ believers.",
+ 14,
+ "˹So˺ fight them and Allah will punish them at your hands, put them to shame, help you overcome them, and soothe the hearts of the believers—",
+ 15,
+ "removing rage from their hearts. And Allah pardons whoever He wills. For Allah is All-Knowing, All-Wise.",
+ 16,
+ "Do you ˹believers˺ think that you will be left without Allah proving who among you ˹truly˺ struggles ˹in His cause˺ and never takes trusted allies other than Allah, His Messenger, or the believers? And Allah is All-Aware of what you do.",
+ 17,
+ "It is not for the polytheists to maintain the mosques of Allah while they openly profess disbelief. Their deeds are void, and they will be in the Fire forever.",
+ 18,
+ "The mosques of Allah should only be maintained by those who believe in Allah and the Last Day, establish prayer, pay alms-tax, and fear none but Allah. It is right to hope that they will be among the ˹truly˺ guided.",
+ 19,
+ "Do you ˹pagans˺ consider providing the pilgrims with water and maintaining the Sacred Mosque as equal to believing in Allah and the Last Day and struggling in the cause of Allah? They are not equal in Allah’s sight. And Allah does not guide the wrongdoing people.",
+ 20,
+ "Those who have believed, emigrated, and strived in the cause of Allah with their wealth and their lives are greater in rank in the sight of Allah. It is they who will triumph.",
+ 21,
+ "Their Lord gives them good news of His mercy, pleasure, and Gardens with everlasting bliss,",
+ 22,
+ "to stay there for ever and ever. Surely with Allah is a great reward.",
+ 23,
+ "O believers! Do not take your parents and siblings as trusted allies if they choose disbelief over belief. And whoever of you does so, they are the ˹true˺ wrongdoers.",
+ 24,
+ "Say, ˹O Prophet,˺ “If your parents and children and siblings and spouses and extended family and the wealth you have acquired and the trade you fear will decline and the homes you cherish—˹if all these˺ are more beloved to you than Allah and His Messenger and struggling in His Way, then wait until Allah brings about His Will. Allah does not guide the rebellious people.”",
+ 25,
+ "Indeed Allah has given you ˹believers˺ victory on many battlefields, even at the Battle of Ḥunain when you took pride in your great numbers, but they proved of no advantage to you. The earth, despite its vastness, seemed to close in on you, then you turned back in retreat.",
+ 26,
+ "Then Allah sent down His reassurance upon His Messenger and the believers, and sent down forces you could not see, and punished those who disbelieved. Such was the reward of the disbelievers.",
+ 27,
+ "Then afterwards Allah will turn in grace to whoever He wills. And Allah is All-Forgiving, Most Merciful.",
+ 28,
+ "O believers! Indeed, the polytheists are ˹spiritually˺ impure, so they should not approach the Sacred Mosque after this year. If you fear poverty, Allah will enrich you out of His bounty, if He wills. Surely, Allah is All-Knowing, All-Wise.",
+ 29,
+ "Fight those who do not believe in Allah and the Last Day, nor comply with what Allah and His Messenger have forbidden, nor embrace the religion of truth from among those who were given the Scripture, until they pay the tax, willingly submitting, fully humbled.",
+ 30,
+ "The Jews say, “Ezra is the son of Allah,” while the Christians say, “The Messiah is the son of Allah.” Such are their baseless assertions, only parroting the words of earlier disbelievers. May Allah condemn them! How can they be deluded ˹from the truth˺?",
+ 31,
+ "They have taken their rabbis and monks as well as the Messiah, son of Mary, as lords besides Allah, even though they were commanded to worship none but One God. There is no god ˹worthy of worship˺ except Him. Glorified is He above what they associate ˹with Him˺!",
+ 32,
+ "They wish to extinguish Allah’s light with their mouths, but Allah will only allow His light to be perfected, even to the dismay of the disbelievers.",
+ 33,
+ "He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.",
+ 34,
+ "O believers! Indeed, many rabbis and monks consume people’s wealth wrongfully and hinder ˹others˺ from the Way of Allah. Give good news of a painful torment to those who hoard gold and silver and do not spend it in Allah’s cause.",
+ 35,
+ "The Day ˹will come˺ when their treasure will be heated up in the Fire of Hell, and their foreheads, sides, and backs branded with it. ˹It will be said to them,˺ “This is the treasure you hoarded for yourselves. Now taste what you hoarded!”",
+ 36,
+ "Indeed, the number of months ordained by Allah is twelve—in Allah’s Record since the day He created the heavens and the earth—of which four are sacred. That is the Right Way. So do not wrong one another during these months. And together fight the polytheists as they fight against you together. And know that Allah is with those mindful ˹of Him˺.",
+ 37,
+ "Reallocating the sanctity of ˹these˺ months is an increase in disbelief, by which the disbelievers are led ˹far˺ astray. They adjust the sanctity one year and uphold it in another, only to maintain the number of months sanctified by Allah, violating the very months Allah has made sacred. Their evil deeds have been made appealing to them. And Allah does not guide the disbelieving people.",
+ 38,
+ "O believers! What is the matter with you that when you are asked to march forth in the cause of Allah, you cling firmly to ˹your˺ land? Do you prefer the life of this world over the Hereafter? The enjoyment of this worldly life is insignificant compared to that of the Hereafter.",
+ 39,
+ "If you do not march forth, He will afflict you with a painful torment and replace you with other people. You are not harming Him in the least. And Allah is Most Capable of everything.",
+ 40,
+ "˹It does not matter˺ if you ˹believers˺ do not support him, for Allah did in fact support him when the disbelievers drove him out ˹of Mecca˺ and he was only one of two. While they both were in the cave, he reassured his companion, “Do not worry; Allah is certainly with us.” So Allah sent down His serenity upon the Prophet, supported him with forces you ˹believers˺ did not see, and made the word of the disbelievers lowest, while the Word of Allah is supreme. And Allah is Almighty, All-Wise.",
+ 41,
+ "˹O believers!˺ March forth whether it is easy or difficult for you, and strive with your wealth and your lives in the cause of Allah. That is best for you, if only you knew.",
+ 42,
+ "Had the gain been within reach and the journey shorter, they would have followed you, but the distance seemed too long for them. And they will swear by Allah, “Had we been able, we would have certainly joined you.” They are ruining themselves. And Allah knows that they are surely lying.",
+ 43,
+ "May Allah pardon you ˹O Prophet˺! Why did you give them permission ˹to stay behind˺ before those who told the truth were distinguished from those who were lying?",
+ 44,
+ "Those who believe in Allah and the Last Day do not ask for exemption from striving with their wealth and their lives. And Allah has perfect knowledge of those who are mindful ˹of Him˺.",
+ 45,
+ "No one would ask for exemption except those who have no faith in Allah or the Last Day, and whose hearts are in doubt, so they are torn by their doubts.",
+ 46,
+ "Had they ˹really˺ intended to march forth, they would have made preparations for it. But Allah disliked that they should go, so He let them lag behind, and it was said ˹to them˺, “Stay with those ˹helpless˺ who remain behind.”",
+ 47,
+ "Had they gone forth with you ˹believers˺, they would have been nothing but trouble for you, and would have scrambled around, seeking to spread discord in your midst. And some of you would have eagerly listened to them. And Allah has ˹perfect˺ knowledge of the wrongdoers.",
+ 48,
+ "They had already sought to spread discord before and devised every ˹possible˺ plot against you ˹O Prophet˺, until the truth came and Allah’s Will prevailed—much to their dismay.",
+ 49,
+ "There are some of them who say, “Exempt me and do not expose me to temptation.” They have already fallen into temptation. And Hell will surely engulf the disbelievers.",
+ 50,
+ "If a blessing befalls you ˹O Prophet˺, they grieve, but if a disaster befalls you, they say, “We took our precaution in advance,” and turn away, rejoicing.",
+ 51,
+ "Say, “Nothing will ever befall us except what Allah has destined for us. He is our Protector.” So in Allah let the believers put their trust.",
+ 52,
+ "Say, “Are you awaiting anything to befall us except one of the two best things: ˹victory or martyrdom˺? But We are awaiting Allah to afflict you with torment either from Him or at our hands. So keep waiting! We too are waiting with you.”",
+ 53,
+ "Say, ˹O Prophet,˺ “˹Whether you˺ donate willingly or unwillingly, it will never be accepted from you, for you have been a rebellious people.”",
+ 54,
+ "And what prevented their donations from being accepted is that they have lost faith in Allah and His Messenger, they never come to prayer except half-heartedly, and they never donate except resentfully.",
+ 55,
+ "So let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this worldly life, then their souls will depart while they are disbelievers.",
+ 56,
+ "They swear by Allah that they are part of you, but they are not. They only say so out of fear.",
+ 57,
+ "If only they could find a refuge, or a cave, or any hiding-place, they would rush headlong towards it.",
+ 58,
+ "There are some of them who are critical of your distribution of alms ˹O Prophet˺. If they are given some of it they are pleased, but if not they are enraged.",
+ 59,
+ "If only they had been content with what Allah and His Messenger had given them and said, “Allah is sufficient for us! Allah will grant us out of His bounty, and so will His Messenger. To Allah ˹alone˺ we turn with hope.”",
+ 60,
+ "Alms-tax is only for the poor and the needy, for those employed to administer it, for those whose hearts are attracted ˹to the faith˺, for ˹freeing˺ slaves, for those in debt, for Allah’s cause, and for ˹needy˺ travellers. ˹This is˺ an obligation from Allah. And Allah is All-Knowing, All-Wise.",
+ 61,
+ "And there are others who hurt the Prophet by saying, “He listens to anyone.” Say, ˹O Prophet,˺ “He listens to what is best for you. He believes in Allah, has faith in the believers, and is a mercy for those who believe among you.” Those who hurt Allah’s Messenger will suffer a painful punishment.",
+ 62,
+ "They swear by Allah to you ˹believers˺ in order to please you, while it is the pleasure of Allah and His Messenger they should seek, if they are ˹true˺ believers.",
+ 63,
+ "Do they not know that whoever opposes Allah and His Messenger will be in the Fire of Hell forever? That is the ultimate disgrace.",
+ 64,
+ "The hypocrites fear that a sûrah should be revealed about them, exposing what is in their hearts. Say, ˹O Prophet,˺ “Keep mocking! Allah will definitely bring to light what you fear.”",
+ 65,
+ "If you question them, they will certainly say, “We were only talking idly and joking around.” Say, “Was it Allah, His revelations, and His Messenger that you ridiculed?”",
+ 66,
+ "Make no excuses! You have lost faith after your belief. If We pardon a group of you, We will punish others for their wickedness.",
+ 67,
+ "The hypocrites, both men and women, are all alike: they encourage what is evil, forbid what is good, and withhold ˹what is in˺ their hands. They neglected Allah, so He neglected them. Surely the hypocrites are the rebellious.",
+ 68,
+ "Allah has promised the hypocrites, both men and women, and the disbelievers an everlasting stay in the Fire of Hell—it is sufficient for them. Allah has condemned them, and they will suffer a never-ending punishment.",
+ 69,
+ "˹You hypocrites are˺ like those ˹disbelievers˺ before you. They were far superior to you in might and more abundant in wealth and children. They enjoyed their share in this life. You have enjoyed your share, just as they did. And you have engaged in idle talk, just as they did. Their deeds have become void in this world and the Hereafter. And it is they who are the ˹true˺ losers.",
+ 70,
+ "Have they not received the stories of those ˹destroyed˺ before them: the people of Noah, ’Âd, and Thamûd, the people of Abraham, the residents of Midian, and the overturned cities ˹of Lot˺? Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.",
+ 71,
+ "The believers, both men and women, are guardians of one another. They encourage good and forbid evil, establish prayer and pay alms-tax, and obey Allah and His Messenger. It is they who will be shown Allah’s mercy. Surely Allah is Almighty, All-Wise.",
+ 72,
+ "Allah has promised the believers, both men and women, Gardens under which rivers flow, to stay there forever, and splendid homes in the Gardens of Eternity, and—above all—the pleasure of Allah. That is ˹truly˺ the ultimate triumph.",
+ 73,
+ "O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!",
+ 74,
+ "They swear by Allah that they never said anything ˹blasphemous˺, while they did in fact utter a blasphemy, lost faith after accepting Islam, and plotted what they could not carry out. It is only through resentment that they pay Allah and His Messenger back for enriching them out of His bounty! If they repent, it will be better for them. But if they turn away, Allah will torment them with a painful punishment in this world and the Hereafter, and they will have no one on earth to protect or help them.",
+ 75,
+ "And there are some who had made a vow to Allah: “If He gives us from His bounty, we will surely spend in charity and be of the righteous.”",
+ 76,
+ "But when He gave them out of His bounty, they withheld it and turned away indifferently.",
+ 77,
+ "So He caused hypocrisy to plague their hearts until the Day they will meet Him, for breaking their promise to Allah and for their lies.",
+ 78,
+ "Do they not know that Allah ˹fully˺ knows their ˹evil˺ thoughts and secret talks, and that Allah is the Knower of all unseen?",
+ 79,
+ "˹There are˺ those who slander ˹some of˺ the believers for donating liberally and mock others for giving only the little they can afford. Allah will throw their mockery back at them, and they will suffer a painful punishment.",
+ 80,
+ "˹It does not matter˺ whether you ˹O Prophet˺ pray for them to be forgiven or not. Even if you pray for their forgiveness seventy times, Allah will never forgive them. That is because they have lost faith in Allah and His Messenger. And Allah does not guide the rebellious people.",
+ 81,
+ "Those ˹hypocrites˺ who remained behind rejoiced for doing so in defiance of the Messenger of Allah and hated ˹the prospect of˺ striving with their wealth and their lives in the cause of Allah. They said ˹to one another˺, “Do not march forth in the heat.” Say, ˹O Prophet,˺ “The Fire of Hell is far hotter!” If only they could comprehend!",
+ 82,
+ "So let them laugh a little—they will weep much as a reward for what they have committed.",
+ 83,
+ "If Allah returns you ˹O Prophet˺ to a group of them and they ask to go forth with you, say, “You will not ever go forth or fight an enemy along with me. You preferred to stay behind the first time, so stay with those ˹helpless˺ who remain behind.”",
+ 84,
+ "And do not ever offer ˹funeral˺ prayers for any of their dead, nor stand by their grave ˹at burial˺, for they have lost faith in Allah and His Messenger and died rebellious.",
+ 85,
+ "And let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this world, and ˹then˺ their souls will depart while they are disbelievers.",
+ 86,
+ "Whenever a sûrah is revealed stating, “Believe in Allah and struggle along with His Messenger,” the rich among them would ask to be exempt, saying, “Leave us with those who remain behind.”",
+ 87,
+ "They preferred to stay behind with the helpless, and their hearts have been sealed so they do not comprehend.",
+ 88,
+ "But the Messenger and the believers with him strived with their wealth and their lives. They will have all the best, and it is they who will be successful.",
+ 89,
+ "Allah has prepared for them Gardens under which rivers flow, to stay there forever. That is the ultimate triumph.",
+ 90,
+ "Some nomadic Arabs ˹also˺ came with excuses, seeking exemption. And those who were untrue to Allah and His Messenger remained behind ˹with no excuse˺. The unfaithful among them will be afflicted with a painful punishment.",
+ 91,
+ "There is no blame on the weak, the sick, or those lacking the means ˹if they stay behind˺, as long as they are true to Allah and His Messenger. There is no blame on the good-doers. And Allah is All-Forgiving, Most Merciful.",
+ 92,
+ "Nor ˹is there any blame on˺ those who came to you ˹O Prophet˺ for mounts, then when you said, “I can find no mounts for you,” they left with eyes overflowing with tears out of grief that they had nothing to contribute.",
+ 93,
+ "Blame is only on those who seek exemption from you although they have the means. They preferred to stay behind with the helpless, and Allah has sealed their hearts so they do not realize ˹the consequences˺.",
+ 94,
+ "They will make excuses to you ˹believers˺ when you return to them. Say, “Make no excuses, ˹for˺ we will not believe you. Allah has already informed us about your ˹true˺ state ˹of faith˺. Your ˹future˺ deeds will be observed by Allah and His Messenger as well. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do.”",
+ 95,
+ "When you return, they will swear to you by Allah so that you may leave them alone. So leave them alone—they are truly evil. Hell will be their home as a reward for what they have committed.",
+ 96,
+ "They will swear to you in order to please you. And even if you are pleased with them, Allah will never be pleased with the rebellious people.",
+ 97,
+ "The nomadic Arabs ˹around Medina˺ are far worse in disbelief and hypocrisy, and less likely to know the laws revealed by Allah to His Messenger. And Allah is All-Knowing, All-Wise.",
+ 98,
+ "And among the nomads are those who consider what they donate to be a loss and await your misfortune. May ill-fortune befall them! And Allah is All-Hearing, All-Knowing.",
+ 99,
+ "However, among the nomadic Arabs are those who believe in Allah and the Last Day, and consider what they donate as a means of coming closer to Allah and ˹receiving˺ the prayers of the Messenger. It will certainly bring them closer. Allah will admit them into His mercy. Surely Allah is All-Forgiving, Most Merciful.",
+ 100,
+ "As for the foremost—the first of the Emigrants and the Helpers—and those who follow them in goodness, Allah is pleased with them and they are pleased with Him. And He has prepared for them Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.",
+ 101,
+ "Some of the nomads around you ˹believers˺ are hypocrites, as are some of the people of Medina. They have mastered hypocrisy. They are not known to you ˹O Prophet˺; they are known to Us. We will punish them twice ˹in this world˺, then they will be brought back ˹to their Lord˺ for a tremendous punishment.",
+ 102,
+ "Some others have confessed their wrongdoing: they have mixed goodness with evil. It is right to hope that Allah will turn to them in mercy. Surely Allah is All-Forgiving, Most Merciful.",
+ 103,
+ "Take from their wealth ˹O Prophet˺ charity to purify and bless them, and pray for them—surely your prayer is a source of comfort for them. And Allah is All-Hearing, All-Knowing.",
+ 104,
+ "Do they not know that Allah alone accepts the repentance of His servants and receives ˹their˺ charity, and that Allah alone is the Accepter of Repentance, Most Merciful?",
+ 105,
+ "Tell ˹them, O Prophet˺, “Do as you will. Your deeds will be observed by Allah, His Messenger, and the believers. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do.”",
+ 106,
+ "And some others are left for Allah’s decision, either to punish them or turn to them in mercy. And Allah is All-Knowing, All-Wise.",
+ 107,
+ "There are also those ˹hypocrites˺ who set up a mosque ˹only˺ to cause harm, promote disbelief, divide the believers, and as a base for those who had previously fought against Allah and His Messenger. They will definitely swear, “We intended nothing but good,” but Allah bears witness that they are surely liars.",
+ 108,
+ "Do not ˹O Prophet˺ ever pray in it. Certainly, a mosque founded on righteousness from the first day is more worthy of your prayers. In it are men who love to be purified. And Allah loves those who purify themselves.",
+ 109,
+ "Which is better: those who laid the foundation of their building on the fear and pleasure of Allah, or those who did so on the edge of a crumbling cliff that tumbled down with them into the Fire of Hell? And Allah does not guide the wrongdoing people.",
+ 110,
+ "The building which they erected will never cease to fuel hypocrisy in their hearts until their hearts are torn apart. And Allah is All-Knowing, All-Wise.",
+ 111,
+ "Allah has indeed purchased from the believers their lives and wealth in exchange for Paradise. They fight in the cause of Allah and kill or are killed. This is a true promise binding on Him in the Torah, the Gospel, and the Quran. And whose promise is truer than Allah’s? So rejoice in the exchange you have made with Him. That is ˹truly˺ the ultimate triumph.",
+ 112,
+ "˹It is the believers˺ who repent, who are devoted to worship, who praise ˹their Lord˺, who fast, who bow down and prostrate themselves, who encourage good and forbid evil, and who observe the limits set by Allah. And give good news to the believers.",
+ 113,
+ "It is not ˹proper˺ for the Prophet and the believers to seek forgiveness for the polytheists, even if they were close relatives, after it has become clear to the believers that they are bound for the Hellfire.",
+ 114,
+ "As for Abraham’s prayer for his father’s forgiveness, it was only in fulfilment of a promise he had made to him. But when it became clear to Abraham that his father was an enemy of Allah, he broke ties with him. Abraham was truly tender-hearted, forbearing.",
+ 115,
+ "Allah would never consider a people deviant after He has guided them, until He makes clear to them what they must avoid. Surely Allah has ˹full˺ knowledge of everything.",
+ 116,
+ "Indeed, to Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He gives life and causes death. And besides Allah you have no guardian or helper.",
+ 117,
+ "Allah has certainly turned in mercy to the Prophet as well as the Emigrants and the Helpers who stood by him in the time of hardship, after the hearts of a group of them had almost faltered. He then accepted their repentance. Surely He is Ever Gracious and Most Merciful to them.",
+ 118,
+ "And ˹Allah has also turned in mercy to˺ the three who had remained behind, ˹whose guilt distressed them˺ until the earth, despite its vastness, seemed to close in on them, and their souls were torn in anguish. They knew there was no refuge from Allah except in Him. Then He turned to them in mercy so that they might repent. Surely Allah ˹alone˺ is the Accepter of Repentance, Most Merciful.",
+ 119,
+ "O believers! Be mindful of Allah and be with the truthful.",
+ 120,
+ "It was not ˹proper˺ for the people of Medina and the nomadic Arabs around them to avoid marching with the Messenger of Allah or to prefer their own lives above his. That is because whenever they suffer from thirst, fatigue, or hunger in the cause of Allah; or tread on a territory, unnerving the disbelievers; or inflict any loss on an enemy—it is written to their credit as a good deed. Surely Allah never discounts the reward of the good-doers.",
+ 121,
+ "And whenever they make a donation, small or large, or cross a valley ˹in Allah’s cause˺—it is written to their credit, so that Allah may grant them the best reward for what they used to do.",
+ 122,
+ "˹However,˺ it is not necessary for the believers to march forth all at once. Only a party from each group should march forth, leaving the rest to gain religious knowledge then enlighten their people when they return to them, so that they ˹too˺ may beware ˹of evil˺.",
+ 123,
+ "O believers! Fight the disbelievers around you and let them find firmness in you. And know that Allah is with those mindful ˹of Him˺.",
+ 124,
+ "Whenever a sûrah is revealed, some of them ask ˹mockingly˺, “Which of you has this increased in faith?” As for the believers, it has increased them in faith and they rejoice.",
+ 125,
+ "But as for those with sickness in their hearts, it has increased them only in wickedness upon their wickedness, and they die as disbelievers.",
+ 126,
+ "Do they not see that they are tried once or twice every year? Yet they neither repent nor do they learn a lesson.",
+ 127,
+ "Whenever a sûrah is revealed, they look at one another, ˹saying,˺ “Is anyone watching you?” Then they slip away. ˹It is˺ Allah ˹Who˺ has turned their hearts away because they are a people who do not comprehend.",
+ 128,
+ "There certainly has come to you a messenger from among yourselves. He is concerned by your suffering, anxious for your well-being, and gracious and merciful to the believers.",
+ 129,
+ "But if they turn away, then say, ˹O Prophet,˺ “Allah is sufficient for me. There is no god ˹worthy of worship˺ except Him. In Him I put my trust. And He is the Lord of the Mighty Throne.”"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/90.json b/share/quran-json/TheQuran/en/90.json
new file mode 100644
index 0000000..feaf436
--- /dev/null
+++ b/share/quran-json/TheQuran/en/90.json
@@ -0,0 +1,57 @@
+[
+ {
+ "id": "90",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Balad",
+ "translated_name": "The City",
+ "verse_count": 20,
+ "slug": "al-balad",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1576,
+ 1604,
+ 1583
+ ]
+ },
+ 1,
+ "I do swear by this city ˹of Mecca˺—",
+ 2,
+ "even though you ˹O Prophet˺ are subject to abuse in this city—",
+ 3,
+ "and by every parent and ˹their˺ child!",
+ 4,
+ "Indeed, We have created humankind in ˹constant˺ struggle.",
+ 5,
+ "Do they think that no one has power over them,",
+ 6,
+ "boasting, “I have wasted enormous wealth!”?",
+ 7,
+ "Do they think that no one sees them?",
+ 8,
+ "Have We not given them two eyes,",
+ 9,
+ "a tongue, and two lips;",
+ 10,
+ "and shown them the two ways ˹of right and wrong˺?",
+ 11,
+ "If only they had attempted the challenging path ˹of goodness instead˺!",
+ 12,
+ "And what will make you realize what ˹attempting˺ the challenging path is?",
+ 13,
+ "It is to free a slave,",
+ 14,
+ "or to give food in times of famine",
+ 15,
+ "to an orphaned relative",
+ 16,
+ "or to a poor person in distress,",
+ 17,
+ "and—above all—to be one of those who have faith and urge each other to perseverance and urge each other to compassion.",
+ 18,
+ "These are the people of the right.",
+ 19,
+ "As for those who deny Our signs, they are the people of the left.",
+ 20,
+ "The Fire will be sealed over them."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/91.json b/share/quran-json/TheQuran/en/91.json
new file mode 100644
index 0000000..2c128c6
--- /dev/null
+++ b/share/quran-json/TheQuran/en/91.json
@@ -0,0 +1,47 @@
+[
+ {
+ "id": "91",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ash-Shams",
+ "translated_name": "The Sun",
+ "verse_count": 15,
+ "slug": "ash-shams",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1588,
+ 1605,
+ 1587
+ ]
+ },
+ 1,
+ "By the sun and its brightness,",
+ 2,
+ "and the moon as it follows it,",
+ 3,
+ "and the day as it unveils it,",
+ 4,
+ "and the night as it conceals it!",
+ 5,
+ "And by heaven and ˹the One˺ Who built it,",
+ 6,
+ "and the earth and ˹the One˺ Who spread it!",
+ 7,
+ "And by the soul and ˹the One˺ Who fashioned it,",
+ 8,
+ "then with ˹the knowledge of˺ right and wrong inspired it!",
+ 9,
+ "Successful indeed is the one who purifies their soul,",
+ 10,
+ "and doomed is the one who corrupts it!",
+ 11,
+ "Thamûd rejected ˹the truth˺ out of arrogance,",
+ 12,
+ "when the most wicked of them was roused ˹to kill the she-camel˺.",
+ 13,
+ "But the messenger of Allah warned them, “˹Do not disturb˺ Allah’s camel and her ˹turn to˺ drink!”",
+ 14,
+ "Still they defied him and slaughtered her. So their Lord crushed them for their crime, levelling all to the ground.",
+ 15,
+ "He has no fear of consequences."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/92.json b/share/quran-json/TheQuran/en/92.json
new file mode 100644
index 0000000..9ca5062
--- /dev/null
+++ b/share/quran-json/TheQuran/en/92.json
@@ -0,0 +1,59 @@
+[
+ {
+ "id": "92",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Layl",
+ "translated_name": "The Night",
+ "verse_count": 21,
+ "slug": "al-layl",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1604,
+ 1610,
+ 1604
+ ]
+ },
+ 1,
+ "By the night when it covers,",
+ 2,
+ "and the day when it shines!",
+ 3,
+ "And by ˹the One˺ Who created male and female!",
+ 4,
+ "Surely the ends you strive for are diverse.",
+ 5,
+ "As for the one who is charitable, mindful ˹of Allah˺,",
+ 6,
+ "and ˹firmly˺ believes in the finest reward,",
+ 7,
+ "We will facilitate for them the Way of Ease.",
+ 8,
+ "And as for the one who is stingy, indifferent ˹to Allah˺,",
+ 9,
+ "and ˹staunchly˺ denies the finest reward,",
+ 10,
+ "We will facilitate for them the path of hardship.",
+ 11,
+ "And their wealth will be of no benefit to them when they tumble ˹into Hell˺.",
+ 12,
+ "It is certainly upon Us ˹alone˺ to show ˹the way to˺ guidance.",
+ 13,
+ "And surely to Us ˹alone˺ belong this life and the next.",
+ 14,
+ "And so I have warned you of a raging Fire,",
+ 15,
+ "in which none will burn except the most wretched—",
+ 16,
+ "who deny and turn away.",
+ 17,
+ "But the righteous will be spared from it—",
+ 18,
+ "who donate ˹some of˺ their wealth only to purify themselves,",
+ 19,
+ "not in return for someone’s favours,",
+ 20,
+ "but seeking the pleasure of their Lord, the Most High.",
+ 21,
+ "They will certainly be pleased."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/93.json b/share/quran-json/TheQuran/en/93.json
new file mode 100644
index 0000000..9c6de67
--- /dev/null
+++ b/share/quran-json/TheQuran/en/93.json
@@ -0,0 +1,39 @@
+[
+ {
+ "id": "93",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ad-Duhaa",
+ "translated_name": "The Morning Hours",
+ "verse_count": 11,
+ "slug": "ad-duhaa",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1590,
+ 1581,
+ 1609
+ ]
+ },
+ 1,
+ "By the morning sunlight,",
+ 2,
+ "and the night when it falls still!",
+ 3,
+ "Your Lord ˹O Prophet˺ has not abandoned you, nor has He become hateful ˹of you˺.",
+ 4,
+ "And the next life is certainly far better for you than this one.",
+ 5,
+ "And ˹surely˺ your Lord will give so much to you that you will be pleased.",
+ 6,
+ "Did He not find you as an orphan then sheltered you?",
+ 7,
+ "Did He not find you unguided then guided you?",
+ 8,
+ "And did He not find you needy then satisfied your needs?",
+ 9,
+ "So do not oppress the orphan,",
+ 10,
+ "nor repulse the beggar.",
+ 11,
+ "And proclaim the blessings of your Lord."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/94.json b/share/quran-json/TheQuran/en/94.json
new file mode 100644
index 0000000..75ee617
--- /dev/null
+++ b/share/quran-json/TheQuran/en/94.json
@@ -0,0 +1,33 @@
+[
+ {
+ "id": "94",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ash-Sharh",
+ "translated_name": "The Relief",
+ "verse_count": 8,
+ "slug": "ash-sharh",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1588,
+ 1585,
+ 1581
+ ]
+ },
+ 1,
+ "Have We not uplifted your heart for you ˹O Prophet˺,",
+ 2,
+ "relieved you of the burden",
+ 3,
+ "which weighed so heavily on your back,",
+ 4,
+ "and elevated your renown for you?",
+ 5,
+ "So, surely with hardship comes ease.",
+ 6,
+ "Surely with ˹that˺ hardship comes ˹more˺ ease.",
+ 7,
+ "So once you have fulfilled ˹your duty˺, strive ˹in devotion˺,",
+ 8,
+ "turning to your Lord ˹alone˺ with hope."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/95.json b/share/quran-json/TheQuran/en/95.json
new file mode 100644
index 0000000..edacffa
--- /dev/null
+++ b/share/quran-json/TheQuran/en/95.json
@@ -0,0 +1,33 @@
+[
+ {
+ "id": "95",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "At-Tin",
+ "translated_name": "The Fig",
+ "verse_count": 8,
+ "slug": "at-tin",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1610,
+ 1606
+ ]
+ },
+ 1,
+ "By the fig and the olive ˹of Jerusalem˺,",
+ 2,
+ "and Mount Sinai,",
+ 3,
+ "and this secure city ˹of Mecca˺!",
+ 4,
+ "Indeed, We created humans in the best form.",
+ 5,
+ "But We will reduce them to the lowest of the low ˹in Hell˺,",
+ 6,
+ "except those who believe and do good—they will have a never-ending reward.",
+ 7,
+ "Now, what makes you deny the ˹final˺ Judgment?",
+ 8,
+ "Is Allah not the most just of all judges?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/96.json b/share/quran-json/TheQuran/en/96.json
new file mode 100644
index 0000000..379a99f
--- /dev/null
+++ b/share/quran-json/TheQuran/en/96.json
@@ -0,0 +1,55 @@
+[
+ {
+ "id": "96",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-'Alaq",
+ "translated_name": "The Clot",
+ "verse_count": 19,
+ "slug": "al-alaq",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1593,
+ 1604,
+ 1602
+ ]
+ },
+ 1,
+ "Read, ˹O Prophet,˺ in the Name of your Lord Who created—",
+ 2,
+ "created humans from a clinging clot.",
+ 3,
+ "Read! And your Lord is the Most Generous,",
+ 4,
+ "Who taught by the pen—",
+ 5,
+ "taught humanity what they knew not. ",
+ 6,
+ "Most certainly, one exceeds all bounds",
+ 7,
+ "once they think they are self-sufficient.",
+ 8,
+ "˹But˺ surely to your Lord is the return ˹of all˺.",
+ 9,
+ "Have you seen the man who prevents",
+ 10,
+ "a servant ˹of Ours˺ from praying?",
+ 11,
+ "What if this ˹servant˺ is ˹rightly˺ guided,",
+ 12,
+ "or encourages righteousness?",
+ 13,
+ "What if that ˹man˺ persists in denial and turns away?",
+ 14,
+ "Does he not know that Allah sees ˹all˺?",
+ 15,
+ "But no! If he does not desist, We will certainly drag him by the forelock—",
+ 16,
+ "a lying, sinful forelock.",
+ 17,
+ "So let him call his associates.",
+ 18,
+ "We will call the wardens of Hell.",
+ 19,
+ "Again, no! Never obey him ˹O Prophet˺! Rather, ˹continue to˺ prostrate and draw near ˹to Allah˺."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/97.json b/share/quran-json/TheQuran/en/97.json
new file mode 100644
index 0000000..7ad50b0
--- /dev/null
+++ b/share/quran-json/TheQuran/en/97.json
@@ -0,0 +1,27 @@
+[
+ {
+ "id": "97",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qadr",
+ "translated_name": "The Power",
+ "verse_count": 5,
+ "slug": "al-qadr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1583,
+ 1585
+ ]
+ },
+ 1,
+ "Indeed, ˹it is˺ We ˹Who˺ sent this ˹Quran˺ down on the Night of Glory.",
+ 2,
+ "And what will make you realize what the Night of Glory is?",
+ 3,
+ "The Night of Glory is better than a thousand months.",
+ 4,
+ "That night the angels and the ˹holy˺ spirit descend, by the permission of their Lord, for every ˹decreed˺ matter.",
+ 5,
+ "It is all peace until the break of dawn."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/98.json b/share/quran-json/TheQuran/en/98.json
new file mode 100644
index 0000000..77d7b59
--- /dev/null
+++ b/share/quran-json/TheQuran/en/98.json
@@ -0,0 +1,34 @@
+[
+ {
+ "id": "98",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Bayyinah",
+ "translated_name": "The Clear Proof",
+ "verse_count": 8,
+ "slug": "al-bayyinah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1576,
+ 1610,
+ 1606,
+ 1577
+ ]
+ },
+ 1,
+ "The disbelievers from the People of the Book and the polytheists were not going to desist ˹from disbelief˺ until the clear proof came to them:",
+ 2,
+ "a messenger from Allah, reciting scrolls of ˹utmost˺ purity,",
+ 3,
+ "containing upright commandments.",
+ 4,
+ "It was not until this clear proof came to the People of the Book that they became divided ˹about his prophethood˺—",
+ 5,
+ "even though they were only commanded to worship Allah ˹alone˺ with sincere devotion to Him in all uprightness, establish prayer, and pay alms-tax. That is the upright Way.",
+ 6,
+ "Indeed, those who disbelieve from the People of the Book and the polytheists will be in the Fire of Hell, to stay there forever. They are the worst of ˹all˺ beings.",
+ 7,
+ "Indeed, those who believe and do good—they are the best of ˹all˺ beings.",
+ 8,
+ "Their reward with their Lord will be Gardens of Eternity, under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. This is ˹only˺ for those in awe of their Lord."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/en/99.json b/share/quran-json/TheQuran/en/99.json
new file mode 100644
index 0000000..194cc99
--- /dev/null
+++ b/share/quran-json/TheQuran/en/99.json
@@ -0,0 +1,35 @@
+[
+ {
+ "id": "99",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Az-Zalzalah",
+ "translated_name": "The Earthquake",
+ "verse_count": 8,
+ "slug": "az-zalzalah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1586,
+ 1604,
+ 1586,
+ 1604,
+ 1577
+ ]
+ },
+ 1,
+ "When the earth is shaken ˹in˺ its ultimate quaking,",
+ 2,
+ "and when the earth throws out ˹all˺ its contents,",
+ 3,
+ "and humanity cries, “What is wrong with it?”—",
+ 4,
+ "on that Day the earth will recount everything,",
+ 5,
+ "having been inspired by your Lord ˹to do so˺.",
+ 6,
+ "On that Day people will proceed in separate groups to be shown ˹the consequences of˺ their deeds.",
+ 7,
+ "So whoever does an atom’s weight of good will see it.",
+ 8,
+ "And whoever does an atom’s weight of evil will see it."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/1.json b/share/quran-json/TheQuran/pt/1.json
new file mode 100644
index 0000000..ea4442f
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/1.json
@@ -0,0 +1,33 @@
+[
+ {
+ "id": "1",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Fatihah",
+ "translated_name": "The Opener",
+ "verse_count": 7,
+ "slug": "al-fatihah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1575,
+ 1578,
+ 1581,
+ 1577
+ ]
+ },
+ 1,
+ "Em nome de Deus, o Clemente, o Misericordioso.",
+ 2,
+ "Louvado seja Deus, Senhor do Universo,",
+ 3,
+ "Clemente, o Misericordioso,",
+ 4,
+ "Soberano do Dia do Juízo.",
+ 5,
+ "Só a Ti adoramos e só de Ti imploramos ajuda!",
+ 6,
+ "Guia-nos à senda reta,",
+ 7,
+ "À senda dos que agraciaste, não à dos abominados, nem à dos extraviados."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/10.json b/share/quran-json/TheQuran/pt/10.json
new file mode 100644
index 0000000..aeed211
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/10.json
@@ -0,0 +1,234 @@
+[
+ {
+ "id": "10",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Yunus",
+ "translated_name": "Jonah",
+ "verse_count": 109,
+ "slug": "yunus",
+ "codepoints": [
+ 1610,
+ 1608,
+ 1606,
+ 1587
+ ]
+ },
+ 1,
+ "Alef, Lam, Ra. Eis aqui os versículos do Livro da sabedoria.",
+ 2,
+ "Estranham, acaso, as pessoas, que tenhamos inspirado um homem de seu povo, dizendo-lhe: Admoesta os homens e avisaos fiéis que terão uma sublime dignidade junto ao seu Senhor? Todavia, os incrédulos dizem dele: ë um mago declarado.",
+ 3,
+ "Vosso Senhor é Deus, Que criou os céus e a terra em seis dias, logo assumiu o Trono para reger todas as coisas. Junto aEle ninguém poderá interceder, sem Sua permissão. Tal é Deus, vosso Senhor! Adorai-O, pois! Não meditais?",
+ 4,
+ "A Ele retornareis todos. A promessa de Deus é infalível. Ele origina a criação, e logo a faz reproduzir, para recompensareqüitativamente os fiéis que praticam o bem. Os incrédulos, porém, terão por bebida água fervente e um doloroso castigo, por sua incredulidade.",
+ 5,
+ "Ele foi Quem originou o sol iluminador e a lua refletidora, e determinou as estações do ano, para que saibais o númerodos anos e seus cômputos. Deus não criou isto senão com prudência; ele elucida os versículos aos sensatos.",
+ 6,
+ "Na alteração da noite e do dia, e no que Deus criou nos céus e na terra, há sinais para os tementes.",
+ 7,
+ "Aqueles que não esperam o Nosso encontro, comprazem-se com a vida terrena, conformando-se com ela, e negligenciamos Nossos versículos.",
+ 8,
+ "Sua morada será o fogo infernal, por tudo quanto tiverem lucrado.",
+ 9,
+ "Quanto aos fiéis que praticam o bem, seu Senhor os encaminhará, por sua fé, aos jardins do prazer, abaixo dos quaiscorrem os rios.",
+ 10,
+ "Onde sua prece será: Glorificado sejas, ó Deus! Aí sua mútua saudação será: Paz! E o fim de sua prece será: Louvadoseja Deus, Senhor do Universo!",
+ 11,
+ "Se Deus apressasse o mal aos humanos, como eles apressam o bem para si, alcançariam rapidamente o seu destino. Porém, abandonaremos, vacilantes em sua transgressão, aqueles que não esperam comparecer perante Nós.",
+ 12,
+ "E se o infortúnio açoita o homem, ele Nos implora, quer esteja deitado, sentado ou em pé. Porém, quando o libertamosde seu infortúnio, ei-lo que caminha, como se não Nos tivesse implorado quando o infortúnio o açoitava. Assim foramabrilhantados os atos dos transgressores (por Satanás).",
+ 13,
+ "Aniquilamos gerações anteriores a vós por sua iniqüidade, porque, apesar de lhes haverem apresentado aos seusmensageiros as evidências, jamais creram. Assim castigamos os pecadores.",
+ 14,
+ "Depois disso, designamos-vos sucessores deles na terra, para observarmos como vos iríeis comportar.",
+ 15,
+ "Mas, quando lhes são recitados os Nossos lúcidos versículos, aqueles que não esperam o comparecimento perante Nós, dizem: Apresenta-nos outro Alcorão que não seja este, ou, por outra, modificado! Dize: Não me incumbe modificá-lo porminha própria vontade; atenho-me somente ao que me tem sido revelado, porque temo o castigo do dia aziago, sedesobedeço ao meu Senhor.",
+ 16,
+ "Dize: Se Deus quisesse, não vo-lo teria eu recitado, nem Ele vo-lo teria dado a conhecer, porque antes de sua revelaçãopassei a vida entre vós. Não raciocinais ainda?",
+ 17,
+ "Haverá alguém mais iníquo do que quem forja mentiras acerca de Deus ou desmente os Seus versículos? Jamaisprosperarão pecadores.",
+ 18,
+ "E adoram, em vez de Deus, os que não poder prejudicá-los nem beneficiá-los, dizendo: Estes são os nossosintercessores junto a Deus. Pretendeis ensinar a Deus algo que Ele possa ignorar dos céus e da terra? Glorificado e exaltadoseja de tudo quanto Lhe atribuem!",
+ 19,
+ "A princípio, os humanos formavam uma só comunidade; então, dividiram-se. Porém, senão tivesse sido por uma palavraproferida por teu Senhor, Ter-se-iam destruído, por causa de suas divergências.",
+ 20,
+ "Dizem: Por que não lhe foi revelado um sinal de seu Senhor? Dize: O incognoscível só a Deus pertence; aguardai, pois, que eu serei um dos que convosco aguardam.",
+ 21,
+ "Se agraciarmos os homens com a Nossa misericórdia, depois de os haver açoitado o infortúnio, ainda assim desmentirãoos Nossos versículos. Dize: Deus é Rápido em planejar. Sabei que os Nosso mensageiros registram tudo quando tramais.",
+ 22,
+ "Ele é Quem vos encaminha na terra e no mar. Quando se acham em naves e estas singram o oceano ao sabor de um ventofavorável, regozijam-se. Mas, quando os açoita uma tormenta e as ondas os assaltam por todos lados, e crêem naufragar, então imploram sinceramente a Deus: Se nos salvares deste perigo, contar-nos-emos entre agradecidos!",
+ 23,
+ "Mas, quando os salva, eis que causa, injustamente, iniqüidade na terra. Ó humanos, sabei que a vossa iniqüidade sórecairá sobre vós; isso é somente um entretenimento na vida terrena. Logo retornareis a Nós, e então vos inteiraremos detudo quanto tiverdes feito.",
+ 24,
+ "A similitude da vida terrena equipara-se à água que enviamos do céu. a qual mistura-se com as plantas da terra, de quese alimentam os homens e o gado; e quando a terra se enfeita e se engalana, a ponto de seus habitantes crerem ser seussenhores, açoita-a o Nosso desígnio, seja à noite ou de dia, deixando-a desolada, como se, na véspera, não houvesse sidoverdejante. Assim elucidamos os versículos àqueles que refletem.",
+ 25,
+ "Deus convoca à morada da paz e encaminha à senda reta quem Lhe apraz.",
+ 26,
+ "Aqueles que praticam o bem obterão o bem e ainda algo mais; nem a poeira, nem a ignomínia anuviarão os seus rostos. Eles serão os diletos do Paraíso, em que morarão eternamente.",
+ 27,
+ "Aqueles que cometerem maldades serão pagos na mesma moeda, e a ignomínia os cobrirá. Não terão defensor junto aDeus; estarão como se condenados ao inferno, em que morarão eternamente.",
+ 28,
+ "Um dia, em que os congregaremos a todos, diremos aos idólatras: Ficai onde estais, vós e vossos parceiros! Logo ossepararemos; então, seus parceiros lhes dirão: Não era a nós que adoráveis!",
+ 29,
+ "Basta Deus por testemunha entre nós e vós, de que não nos importava a vossa adoração.",
+ 30,
+ "Aí toda alma conhecerá tudo quanto tiver feito e serão devolvidos a Deus, seu verdadeiro Senhor; e tudo quando tiveremforjado desvanecer-se-á.",
+ 31,
+ "Dize: Quem vos agracia com os seus bens do céu e da terra? Quem possui poder sobre a audição e a visão? E quem regetodos os assuntos? Dirão: Deus! Dize, então: Por que não O temeis?",
+ 32,
+ "Tal é Deus, vosso verdadeiro Senhor; e que há, fora da verdade, senão o erro? Como, então, vos afastais?",
+ 33,
+ "Assim se cumpriu a sentença de teu Senhor sobre os depravados, porque não creram.",
+ 34,
+ "Pergunta-lhes: Existe algum ídolo, dentre os vossos, que possa originar a criação, e então reproduzi-la? Dize-lhes, aseguir: Deus é Quem origina a criação e então a reproduz. Como, pois, vos desviais?",
+ 35,
+ "Pergunta-lhes: Existe algum ídolo, dentre os vossos, que possa guiar-vos à verdade? Dize: Só Deus guia à verdade. Acaso, Quem guia à verdade, não é mais digno e ser seguido do que quem não o faz, sendo ao contrário guiado? Que vossucede pois? Como julgais assim?",
+ 36,
+ "Sua maioria não faz mais do que conjecturar, e a conjectura jamais prevalecerá sobre a verdade; Deus bem sabe tudoquanto fazem!",
+ 37,
+ "É impossível que esta Alcorão tenha sido elaborado por alguém que não seja Deus. Outrossim, é a confirmação das (revelações) anteriores a ele e a elucidação do Livro indubitável do Senhor do Universo.",
+ 38,
+ "Dizem: Ele o forjou! Dize: Componde, pois, uma surata semelhante às deles; e podeis recorrer, para isso, a quemquiserdes, em vez de Deus, se estiverdes certos.",
+ 39,
+ "Porém, desmentiram o que não lograram conhecer, mesmo quando a sua interpretação não lhes havia chegado. Do mesmomodo seus antepassados desmentiram. Repara, pois, qual foi o destino dos iníquos.",
+ 40,
+ "Entre eles, há os que crêem nele (o Alcorão) e os que o negam; porém, teu Senhor é o mais conhecedor dos corruptores.",
+ 41,
+ "Mas, se te desmentem, dize-lhes: Os meus atos só a mim incumbem, e a vós os vossos. Estais isentos do que eu faço, assim como estou isento de tudo quanto fazeis.",
+ 42,
+ "Entre eles há os que te escutam. Poderias fazer ouvir os surdos, uma vez que não entendem?",
+ 43,
+ "E há os que te perscrutam; acaso, poderias fazer ver os cegos, uma vez que não enxergam?",
+ 44,
+ "Deus em nada defrauda os homens; porém, os homens se condenam a si mesmos.",
+ 45,
+ "Recorda-lhes o dia em que Ele os congregará, como se não houvessem permanecido no mundo mais do que uma hora dodia; reconhecer-se-ão entre si. Então, aqueles que tiverem negado o comparecimento ante Deus, serão desventurados ejamais serão encaminhados.",
+ 46,
+ "Ainda que te mostremos algo do que lhes prometemos, ou mesmo que te recolhamos até Nós (antes disso), seu retornoserá para Nós. Deus é Testemunha de tudo quanto fazem.",
+ 47,
+ "Cada povo teve seu mensageiro; e quando seu mensageiro se apresentar, todos serão julgados eqüitativamente e nãoserão injustiçados.",
+ 48,
+ "E dizem (os incrédulos): Quando se cumprirá esta promessa? Dize-o, se estiverdes certo!",
+ 49,
+ "Dize-lhes: Não posso acarretar mais prejuízos nem mais benefícios além dos que Deus quer. Cada povo tem seu destinoe, quando este se cumprir, não poderá atrasá-lo nem adiantá-lo numa só hora.",
+ 50,
+ "Dize: Que vos pareceria, se Seu castigo vos surpreendesse durante a noite ou de dia? Que porção dele os pecadorespretenderiam apressar?",
+ 51,
+ "Quando tal acontecer, crereis, então, nele? Qual! Crereis, então, quando até agora não tendes feito mais do que oapresardes?",
+ 52,
+ "Será dito, então, aos iníquos: Provai o castigo eterno. Sereis, acaso, castigados pelo que não cometestes?",
+ 53,
+ "Pedir-te-ão que os inteires dos fatos: É isso verdade? Dize: Sim, por meu Senhor que é verdade, e jamais podereisimpedi-lo.",
+ 54,
+ "Se todo o ser iníquo possuísse tudo quanto existe na terra, tudo daria para a sua redenção. Sentirão o arrependimentoquando virem o castigo. Então serão julgados eqüitativamente e não serão injustiçados.",
+ 55,
+ "Não pertence, acaso, a Deus tudo quanto existe nos céus e na terra? Não é verdadeira a promessa de Deus? Porém, amaioria o ignora.",
+ 56,
+ "Ele dá a vida e a morte, e a Ele retornareis.",
+ 57,
+ "Ó humanos, já vos chegou uma exortação do vosso Senhor, a qual é um bálsamo para a enfermidade que há em vossoscorações, e é orientação e misericórdia para os fiéis.",
+ 58,
+ "Dize: Contentai-vos com a graça e a misericórdia de Deus! Isso é preferível a tudo quanto entesourarem!",
+ 59,
+ "Dize ainda: Reparastes nas dádivas que Deus vos envia, as quais classificais em lícitas e ilícitas? Dize-lhes mais: Acaso, Deus vo-lo autorizou, ou forjais mentiras acerca de Deus?",
+ 60,
+ "Em que pensarão no Dia da Ressurreição aqueles que forjam mentiras acerca de Deus? Deus é agraciador para com oshumanos: porém, sua maioria não agradece.",
+ 61,
+ "Em qualquer situação em que vos encontrardes, qualquer parte do Alcorão que recitardes, seja qual for a tarefa queempreenderdes, seremos Testemunha quando nisso estiverdes absortos, porque nada escapa do teu Senhor, nem do peso deum átomo ou algo menor ou maior do que este, na terra ou nos céus, pois tudo está registrado num Livro lúcido.",
+ 62,
+ "Não é, acaso, certo que os diletos de Deus jamais serão presas do temor, nem se atribularão?",
+ 63,
+ "Estes são os fiéis e são tementes.",
+ 64,
+ "Obterão alvíssaras de boas-novas na vida terrena e na outra; as promessas de Deus são imutáveis. Tal é o magníficobenefício.",
+ 65,
+ "Que suas palavras não te atribulem, uma vez que a Glória pertence integralmente a Deus, Que é o Oniouvinte, oSapientíssimo.",
+ 66,
+ "Não é certo que é de Deus aquilo que está nos céus e na terra? Que pretendem, pois, aqueles que adoram os ídolos emvez de Deus? Não seguem mais do que a dúvida e não fazem mais do que inventar mentiras!",
+ 67,
+ "Ele é Quem estabeleceu a noite para vosso descanso e o dia luzente, para tornar as coisas visíveis. Nisto há sinais paraos que escutam.",
+ 68,
+ "Dizem: Deus teve um filho! Glorificado seja Deus; Ele é Opulento; Seu é tudo quanto há nos céus e na terra! Queautoridade tendes, referente a isso? Direis acerca de Deus o que ignorais?",
+ 69,
+ "Dize: Aqueles que forjam mentiras acerca de Deus não prosperarão!",
+ 70,
+ "Terão seu gozo neste mundo, então seu retorno será a Nós; depois lhes infligiremos o severo castigo, por suaincredulidade.",
+ 71,
+ "Narra-lhes a história de Noé, quando disse ao seu povo: Ó povo meu, se a minha permanência entre vós e minhaexortação, referentes aos versículos de Deus, vos ofendem, a Deus me encomendo. Decidi-vos, vós e vossos ídolos, e nãooculteis vossa decisão; então, hostilizai-me e não me poupeis.",
+ 72,
+ "Caso contrário, sabei que não vos exijo retribuição alguma por isso, porque minha recompensa só virá de Deus; e foi-meordenado que fosse um dos submissos.",
+ 73,
+ "Porém, desmentiram-no e, então, salvamo-lo, juntamente com aqueles que estavam com ele na arca, e os designamossucessores na terra, e afogamos aqueles que desmentiram os Nossos versículos. Repara, pois, qual foi o castigo dos queforam advertidos.",
+ 74,
+ "Logo, depois dele, enviamos mensageiros aos seus povos, os quais lhes apresentaram as evidências; mesmo assim nãocreram no que antes haviam desmentido. Assim, sigilamos os corações dos transgressores.",
+ 75,
+ "Logo depois deles enviamos, como nossos sinais, Moisés e Aarão ao Faraó e seus chefes; porém, estesensoberbeceram-se e tornaram-se um povo de pecadores.",
+ 76,
+ "Mas, quando lhes chegou a Nossa verdade, disseram: Isto é pura magia!",
+ 77,
+ "Moisés lhes disse: Ousais dizer que a verdade que vos chega é magia? Sabei que os magos jamais prosperarão.",
+ 78,
+ "Disseram: Vieste, acaso, para desviar-nos do que vimos praticarem os nossos pais e para que o predomínio, na terra, seja para ti e teu irmão? Nunca creremos em vós.",
+ 79,
+ "Então, o Faraó disse: Trazei-me todo o mago hábil (que encontrardes).",
+ 80,
+ "E quando chegaram os magos, Moisés lhes disse: Arremessai o que tendes a arremessar!",
+ 81,
+ "Porém, quando arremessaram, disse Moisés: O que haveis feito émagia, e certamente Deus o anulará, porque Ele nãoapóia a obra dos corruptores.",
+ 82,
+ "Deus estabelece a verdade com as Suas palavras, ainda que isto desgoste os pecadores.",
+ 83,
+ "Porém, salvo uma parte do seu povo, ninguém acreditou em Moisés por temor de que o Faraó e seus chefes osoprimissem, porque o Faraó era um déspota na terra; era um dos transgressores.",
+ 84,
+ "E Moisés disse: Ó povo meu, se realmente credes em Deus, encomendai-vos a Ele se sois submissos.",
+ 85,
+ "Disseram: A Deus nos encomendamos! Ó Senhor nosso, não permitas que fiquemos afeitos à fúria dos iníquos;",
+ 86,
+ "E com a Tua misericórdia salva-nos do povo incrédulo.",
+ 87,
+ "E revelamos a Moisés e ao seu irmão: Erigi os abrigos para o vosso povo no Egito e fazei dos vossos lares um templo; observai a oração, e anuncia (ó Moisés) boas novas aos fiéis!",
+ 88,
+ "E Moisés disse: ó Senhor nosso, tens concedido ao Faraó e aos seus chefes esplendores e riquezas na vida terrena eassim, ó Senhor nosso puderam desviar os demais da Tua senda. Ó Senhor nosso, arrasa as suas riquezas e oprime os seuscorações, porque não crerão até verem o doloroso castigo.",
+ 89,
+ "Disse-lhes (Deus): Vossa súplica foi atendida; apegai-vos, pois, à vossa missão e não sigais as sendas dos insipientes.",
+ 90,
+ "E fizemos atravessar o mar os israelitas; porém o Faraó e seu exército perseguiram-no iníqua e hostilmente até que, estando a ponto de afogar-se, o Faraó disse: Creio agora que não há mais divindade além de Deus em que crêem osisraelitas, e sou um dos submissos!",
+ 91,
+ "(E foi-lhe dito): Agora crês, ao passo que antes te havias rebelado e eras um dos corruptores!",
+ 92,
+ "Porém, hoje salvamos apenas o teu corpo, para que sirvas de exemplo à tua posteridade. Em verdade, há muitos humanosque estão negligenciando os Nossos versículos.",
+ 93,
+ "E concedemos aos israelitas um agradável abrigo e os agraciamos com todo o bem. Mas disputaram entre si, depois dereceberem o conhecimento. Teu Senhor julgará entre eles pelas suas divergências, no Dia da Ressurreição.",
+ 94,
+ "Porém, se estás em dúvida sobre o que te temos revelado, consulta aqueles que leram o Livro antes de ti. Sem dúvidaque te chegou a verdade do teu Senhor; não sejas, pois, dos que estão em dúvida.",
+ 95,
+ "Nem tampouco dos que desmentem os versículos de Deus, porque serão desventurados.",
+ 96,
+ "Aqueles que merecem a sentença de teu Senhor não crerão;",
+ 97,
+ "Ainda que lhes chegue qualquer sinal, até verem o doloroso castigo.",
+ 98,
+ "Se o povo de uma única cidade cresse, a sua crença ser-lhe-ia benéfica, pois quando o povo de Yunis (Jonas) acreditou, liberamo-lo do castigo do aviltamento na vida terrena e o agraciamos temporariamente.",
+ 99,
+ "Porém, se teu Senhor tivesse querido, aqueles que estão na terra teriam acreditado unanimemente. Poderias (óMohammad) compelir os humanos a que fossem fiéis?",
+ 100,
+ "Em verdade, não é dado a ser nenhum crer sem a anuência de Deus. Ele destina a abominação àqueles que nãoraciocinam.",
+ 101,
+ "Dize: Contemplai o que há nos céus e na terra! Mas sabei que de nada servem os sinais e as advertências àqueles quenão crêem.",
+ 102,
+ "Aguardam, acaso, outra sorte que não seja a de seus antecessores? Dize-lhes ainda: Aguardai, pois, que aguardareiconvosco.",
+ 103,
+ "Então, salvaremos os Nossos mensageiros, juntamente com os fiéis, porque é Nosso dever salvá-los.",
+ 104,
+ "Dize-lhes mais: Ó humanos, se estais em dúvida quanto à minha religião, sabei que eu não adorarei o que vós adoraisem vez de Deus; outrossim, adoro a Deus, Que recolherá as vossas almas, e tem-me sido ordenado ser um dos fiéis.",
+ 105,
+ "E (ó Mohammad) orienta-te para a religião monoteísta e não sejas um dos idólatras.",
+ 106,
+ "Não invoques, em vez de Deus, o que não pode favorecer-te nem prejudicar-te, porque se o fizeres, serás, então, umdos iníquos.",
+ 107,
+ "E se Deus te infligir algum mal, ninguém, além d'Ele, poderá removê-lo; e se Ele te agraciar, ninguém poderá repelir aSua graça, a qual concede a quem Lhe apraz, dentre Seus servos, porque Ele é o Indulgente, o Misericordiosíssimo.",
+ 108,
+ "Dize: Ó humanos, já vos chegou a verdade do vosso Senhor, e quem se encaminha faz em benefício próprio; e quem sedesvia o faz em seu próprio prejuízo, porque não sou o vosso guardião.",
+ 109,
+ "Observa, pois, o que te foi revelado, e persevera, até que Deus decida, porque é o mais equânime dos juízes."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/11.json b/share/quran-json/TheQuran/pt/11.json
new file mode 100644
index 0000000..c425fa8
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/11.json
@@ -0,0 +1,261 @@
+[
+ {
+ "id": "11",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Hud",
+ "translated_name": "Hud",
+ "verse_count": 123,
+ "slug": "hud",
+ "codepoints": [
+ 1607,
+ 1608,
+ 1583
+ ]
+ },
+ 1,
+ "Alef, Lam, Ra. Eis o Livro dos versículos fundamentais, então elucidados por Alguém Onisciente, Prudentíssimo.",
+ 2,
+ "Não deveis adorar senão a Deus. Sou o vosso admoestador e alvissareiro de Sua parte.",
+ 3,
+ "Implorai o perdão de vosso Senhor e voltai-vos a Ele, arrependidos, que Ele vos agraciará generosamente até um términoprefixado, e agraciará com o merecido a cada um que tiver mérito. Porém, se vos recusardes, temo por vós o castigo doGrande Dia.",
+ 4,
+ "Vosso retorno será a Deus, porque Ele é Onipotente.",
+ 5,
+ "Não é, acaso, certo que eles dissimulam quanto ao que há em seus corações para se ocultarem d'Ele? Que saibam quemesmo quando se ocultam debaixo de suas roupas, Ele conhece o que ocultam e o que manifestam, porque Ele é Conhecedordas intimidades dos corações.",
+ 6,
+ "Não existe criatura sobre a terra cujo sustento não dependa de Deus; Ele conhece a sua estância temporal e permanente, porque tudo está registrado num Livro lúcido.",
+ 7,
+ "Ele foi Quem criou o céus e a terra em seis dias - quando, antes, abaixo de seu Trono só havia água - para provar quem devós melhor se comporta. Mas, se tu lhes dizes: Sereis ressuscitados depois da morte!, os incrédulos dizem: Isto não é senãopura feitiçaria!",
+ 8,
+ "Mas, se suspendemos seu castigo por um tempo determinado, então dizem: Que coisa o retém? Porém, o dia do seu castigoé inexorável e dele não escaparão, e serão envolvidos por aquilo de que escarneciam.",
+ 9,
+ "E se agraciamos o homem com a Nossa misericórdia e logo o privamos dela, ei-lo, então, desesperado e desagradecido.",
+ 10,
+ "Mas, se o fazemos gozar do bem-estar, depois de haver padecido a adversidade, diz: As vicissitudes desapareceram! Eei-lo, então, exultante, jactancioso.",
+ 11,
+ "Quanto aos perseverantes, que praticam o bem, obterão indulgência e uma grande recompensa.",
+ 12,
+ "É possível que omitas algo do que te foi revelado e que te oprima, por isso, o peito, temendo que digam: Por que não lhefoi enviado um tesouro ou não o acompanha um anjo? Tu és tão-somente um admoestador e Deus é o Guardião de tudo.",
+ 13,
+ "Ou dizem: Ele o forjou! Dize: Pois bem, apresentais dez suratas forjadas, semelhantes às dele, e pedi (auxílio), paratanto, a quem possais, em vez de Deus, se estiverdes certos.",
+ 14,
+ "Porém, se não fordes atendidos, sabei, então, que este (Alcorão) foi revelado com a anuência de Deus e que não há maisdivindade além d'Ele. Sois, acaso, muçulmanos?",
+ 15,
+ "Quanto àqueles que preferem a vida terrena e seus encantos, far-lhes-emos desfrutar de suas obras, durante ela, e semdiminuição.",
+ 16,
+ "Serão aqueles que não obterão não vida futura senão o fogo infernal; e tudo quanto tiverem feito aqui tornar-se-á semefeito e será vão tudo quanto fizerem.",
+ 17,
+ "Podem ser iguais àqueles que têm uma evidência de seu Senhor, confirmada por uma testemunha enviada por Ele, precedida pelo Livro de Moisés, sendo guia e misericórdia? Qual! Aqueles crêem nele (o Alcorão); mas aquele dos partidosque o negar, sua morada será o fogo infernal. Não duvides disso, porque é a verdade do teu Senhor; porém, a maioria doshumanos não crê.",
+ 18,
+ "Haverá alguém mais iníquo do que aqueles que forjam mentiras acerca de Deus? Eles serão apresentados ao seu Senhore as testemunhas dirão: Eis os que forjaram mentiras acerca do seu Senhor. Que a maldição de Deus caia sobre os iníquos,",
+ 19,
+ "Que desviam os demais da senda de Deus, tratando de fazê-la tortuosa, e negam a outra vida.",
+ 20,
+ "Estes jamais poderão frustrar (Seus desígnios) na terra, nem terão protetores, em vez de Deus. Ele lhes duplicará ocastigo. Eles já tinham perdido as faculdades da audição e da visão.",
+ 21,
+ "Estes são os que desmereceram a si mesmos e, tudo quanto tenham forjado, desvanecer-se-á.",
+ 22,
+ "É indubitável que na outra vida serão os mais desventurados.",
+ 23,
+ "Os fiéis que praticam o bem e se humilham ante seu Senhor serão os diletos do Paraíso, onde morarão eternamente.",
+ 24,
+ "O exemplo de ambas as partes equipara-se ao do cego e surdo, em contraposição ao do vidente e ouvinte. Podemequiparar-se? Qual! Não meditais?",
+ 25,
+ "Enviamos Noé ao seu povo, ao qual disse: Sou para vós um elucidativo admoestador.",
+ 26,
+ "Não deveis adorar mais do que a deus, porque temo por vós o castigo de um dia doloroso.",
+ 27,
+ "Porém, os chefes incrédulos, dentre seu povo, disseram: Não vemos em ti mais do que um homem como nós, e nãovemos a te seguir mais do que a nossa plebe irreflexiva; tampouco consideramos que tendes (vós e vossos seguidores) algummérito sobre nós; outrossim, cremos que sois uns mentirosos.",
+ 28,
+ "Respondeu-lhes: Ó povo meu, se possuo a evidência de meu Senhor que me agraciou com a Sua misericórdia - a qualvos foi vedada (por tal merecerdes) - posso, acaso, obrigar-vos a aceitá-la, uma vez que a aborreceis?",
+ 29,
+ "Ó povo meu, não vos exijo, por isso, recompensa alguma, porque minha retribuição só procede de Deus e jamaisrechaçarei os fiéis, porquanto eles comparecerão ante seu Senhor. Porém, vejo que sois um povo de insipientes.",
+ 30,
+ "Ó povo meu, quem me defenderá de Deus, se os rechaçar (meus seguidores)? Não meditais?",
+ 31,
+ "Não vos digo que possuo os tesouros de Deus, ou que estou de posse do incognoscível, nem vos digo que eu sou umanjo, nem digo, àqueles que vossos olhos despreza, que Deus jamais lhes concederá favor algum, pois Deus bem conhece oque encerram seus íntimos; se tal fizesse, seria um dos iníquos.",
+ 32,
+ "Disseram-lhe: Ó Noé, tens discutido convosco e prolongado a nossa disputa! Faze com que nos sobrevenha isso com quenos ameaças, se estiveres certo.",
+ 33,
+ "Respondeu-lhes: Deus só o infligirá se quiser, e jamais podereis impedi-Lo.",
+ 34,
+ "Se Deus quisesse, extraviar-vos-ia, e de nada vos valeriam meus conselhos, ainda que quisesse aconselhar-vos, porqueEle é o vosso Senhor, e a Ele retornareis.",
+ 35,
+ "Ou dizem: Ele forjou isso. Dize: Se forjei isso, que caia sobre mim o castigo de meu pecado; porém, estou isento dosvossos pecados!",
+ 36,
+ "E foi revelado a Noé: Ninguém, dentre seu povo, acreditará, salvo quem já tenha acreditado. Não te aflijas, pois, peloque fazem.",
+ 37,
+ "E constrói a arca sob a Nossa vigilância e segundo a Nossa inspiração, e não Me peças em favor dos iníquos, porqueserão afogados.",
+ 38,
+ "E começou a construir a arca. E cada vez que os chefes, dentre seu povo, passavam por perto, escarneciam dele. Disse-lhes: Se escarnecerdes de nós, escarneceremos de vós, tal como o fazeis.",
+ 39,
+ "Porém, logo sabereis a quem açoitará um castigo que o aviltará e quem merecerá um tormento eterno.",
+ 40,
+ "Até que, quando se cumpriu o Nosso desígnio e jorraram as fontes (da terra), dissemos (a Noé): Embarca nela (a arca) um casal de cada espécie, juntamente com a tua família, exceto aquele sobre quem tenha sido pronunciada a sentença, eembarca os que creram. Mas não creram com ele, senão poucos.",
+ 41,
+ "E (Noé) disse: Embarcai nela; que seu rumo e sua ancoragem sejam em nome de Deus, porque meu Senhor é Indulgente, Misericordiosíssimo.",
+ 42,
+ "E nela navegava com eles por entre ondas que eram como montanhas; e Noé chamou seu filho, que permanecia afastado, e disse-lhe: Ó filho meu, embarca conosco e não fiques com os incrédulos!",
+ 43,
+ "Porém, ele disse: Refugiar-me-ei em um monte, que me livrará da água. Retrucou-lhe Noé: Não há salvação paraninguém, hoje, do desígnio de Deus, salvo para aquele de quem Ele se apiade. E as ondas os separaram, e o filho foi dosafogados.",
+ 44,
+ "E foi dito: Ó terra, absorve as tuas águas! Ó céu, detém-te! E as águas foram absorvidas e o desígnio foi cumprido. E (aarca) se deteve sobre o monte Al-judi. E foi dito: distância com o povo iníquo!",
+ 45,
+ "E Noé clamou ao seu Senhor, dizendo: Ó Senhor meu, meu filho é da minha família; e Tua promessa é verdadeira, poisTu és o mais equânime dos juízes!",
+ 46,
+ "Respondeu-lhe: Ó Noé, em verdade ele não é da tua família, porque sua conduta é injusta; não Me perguntes, pois, acerca daquilo que ignoras; exorto-te a que não sejas um do insipientes!",
+ 47,
+ "Disse: Ó Senhor meu, refugio-me em Ti por perguntar acerca do que ignoro e, se não me perdoares e Te compadeceresem mim, serei um dos desventurados.",
+ 48,
+ "Foi-lhe dito: Ó Noé, desembarca, com a Nossa saudação e a Nossa bênção sobre ti e sobre os seres que (advirão doque) estão contigo. Porém, haverá povos, os quais (por um tempo) agraciaremos; logo, (depois) atingi-los-á o Nossodoloroso castigo.",
+ 49,
+ "Esses são alguns relatos do incognoscível que te revelamos, que os não conhecias tu, nem o teu povo, antes disso. Persevera, pois, porque a recompensa será para os tementes.",
+ 50,
+ "E (enviamos) ao povo de Ad seu irmão Hud, o qual lhes disse: ó povo meu, adorai a Deus, porque noa tereis outradivindade além d'Ele. Sabei que não sois mais do que forjadores (quanto a outros deuses).",
+ 51,
+ "Ó povo meu, não vos exijo, por isso, recompensa alguma, porque minha recompensa só procede de Quem me criou. Nãoraciocinais?",
+ 52,
+ "Ó povo meu, implorai o perdão de vosso Senhor e voltai-vos arrependidos para Ele, Que vos enviará do céu copiosachuva e adicionará força à vossa força. Não vos afasteis, tornando-vos pecadores!",
+ 53,
+ "Responderam-lhe: Ó Hud, não tens apresentado nenhuma evidência, e jamais abandonaremos os nossos deuses pela tuapalavra, nem em ti creremos;",
+ 54,
+ "Somente dizemos que algum dos nossos deuses te transtornou. Disse: Ponho Deus por testemunha, e testemunhai vósmesmos que estou isento de tudo quanto adorais,",
+ 55,
+ "Em vez d'Ele. Conspirai, pois, todos contra mim, e não me poupeis.",
+ 56,
+ "Porque me encomendo a Deus, meu Senhor e vosso; sabei que não existe criatura que Ele não possa agarrar pelo topete. Meu Senhor está na senda reta.",
+ 57,
+ "Porém, se vos recusais, sabei que vos comuniquei a Mensagem com a qual fui enviado a vós; e o meu Senhor fará comque vos suceda um outro povo, e em nada podereis prejudicá-Lo, porque meu Senhor é Guardião de todas as coisas.",
+ 58,
+ "E quando se cumpriu o Nosso desígnio, salvamos Hud e com ele os fiéis, por Nossa misericórdia, e os livramos de umsevero castigo.",
+ 59,
+ "E eis que o povo de Ad negou os versículos do seu Senhor; rebelaram-se contra os Seus mensageiros e seguiram asordens de todo o déspota obstinado.",
+ 60,
+ "E, neste mundo, forma perseguidos por uma maldição, e o mesmo acontecerá no Dia da Ressurreição. Não é certo que opovo de Ad renegou seu Senhor? Distância de Ad, povo de Hud!",
+ 61,
+ "E ao povo de Samud enviamos seu irmão Sáleh, que lhes disse: Ó povo meu, adorai a Deus porque não tereis outradivindade além d'Ele; Ele foi Quem vos criou a terra e nela vos enraizou. Implorai, pois, Seu perdão; voltai a Elearrependidos, porque meu Senhor está próximo e é Exorável.",
+ 62,
+ "Responderam-lhe: Ó Sáleh, eras para nós a esperança antes disto. Pretendes impedir-nos de adorar o que nossos paisadoravam? Estamos em uma inquietante dúvida acerca do que nos predicas.",
+ 63,
+ "Disse: Ó povo meu, pensai: se eu possuo uma evidência de meu Senhor que me agraciou com a Sua misericórdia, quemme defenderá de Deus, se Lhe desobedecer? Não fareis mais do que agravar a minha desventura!",
+ 64,
+ "Ó povo meu, eis aqui a camela de Deus, a qual é um sinal para vós! Deixai-a pastar na terra de Deus e não a maltrateis, porque um castigo, que está próximo, açoitar-vos-á.",
+ 65,
+ "Não obstante, abateram-na. E ele lhes disse: Diverti-vos durante três dias em vossas casas; (logo sereis exterminados). Esta é uma ameaça iniludível.",
+ 66,
+ "Mas quando se cumpriu o Nosso desígnio, salvamos Sáleh e os fiéis que com ele estavam, por Nossa misericórdia, doaviltamento daquele dia, porque teu Senhor é o Poderoso, Fortíssimo.",
+ 67,
+ "E o estrondo fulminou os iníquos, e a manhã encontrou-os jacentes em seus lares,",
+ 68,
+ "Como se jamais neles houvessem vivido. Acaso, não é certo que o povo de Samud renegou seu Senhor? Distância dopovo de Samud!",
+ 69,
+ "E eis que os Nossos mensageiros trouxeram a Abraão alvíssaras de boas novas, dizendo: Paz! E ele respondeu: Paz! Enão tardou em obsequiá-los com um vitelo assado.",
+ 70,
+ "Porém, quando observou que suas mãos hesitavam em tocar o vitelo, desconfiou deles, sentindo-lhes temor. Disseram: Não temas, porque somos enviados contra o povo de Lot!",
+ 71,
+ "E sua mulher, que estava presente, pôs-se a rir, por alvissaramo-la com o nascimento de Isaac e, depois deste, com o deJacó.",
+ 72,
+ "Ela exclamou: Ai de mim! Conceber, eu, que já sou uma anciã, deste meu marido, um ancião? Isto é algo assombroso!",
+ 73,
+ "Disseram: Assombras-te, acaso, dos desígnios de Deus? Pois sabei que a misericórdia de Deus e as Suas bênçãos vosamparam, ó descendentes da casa (profética); Ele é Louvável, Gloriosíssimo.",
+ 74,
+ "Mas, quando o temor de Abraão se dissipou e lhe chegaram alvíssaras de boas novas, começou a interceder junto a Nóspelo povo de Lot.",
+ 75,
+ "Sabei que Abraão era tolerante, sentimental, contrito.",
+ 76,
+ "Ó Abraão, não insistais mais nisso, porque a sentença de teu Senhor foi pronunciada, e em breve os fustigará um castigoirrevogável.",
+ 77,
+ "Mas, quando Nossos mensageiros se apresentaram a Lot, este ficou aflito por eles, sentindo-se impotente paradefendê-los, e disse: Este é um dia sinistro!",
+ 78,
+ "E seu povo, que desde antanho havia cometido obscenidades, acudiu precipitadamente a ele; (Lot) disse: Ó povo meu; eis aqui minhas filhas; elas vos são mais puras. Temei, pois, a Deus e não me avilteis perante os meus hóspedes. Não haveráentre vós um homem sensato?",
+ 79,
+ "Responderam: Tu bem sabes que não temos necessidade de tuas filhas também sabes o que queremos.",
+ 80,
+ "Disse: Quem me dera ter forças para resistir a vós ou encontrar um forte auxílio (contra vós)!",
+ 81,
+ "Disseram-lhe (os anjos): Ó Lot, somos os mensageiros do teu Senhor; eles jamais poderão atingir-te. Sai, pois, com a tuafamília, no decorrer da noite, e que nenhum de vós olhe para trás. À tua mulher, porém, acontecerá o mesmo que a eles. Talsentença se executará ao amanhecer. Acaso, não está próximo o amanhecer?",
+ 82,
+ "E quando se cumpriu o Nosso desígnio, reviramos a cidade nefasta e desencadeamos sobre ela uma ininterrupta chuva depedras de argila endurecida,",
+ 83,
+ "Estigmatizadas por teu Senhor; e isso não está distante dos iníquos.",
+ 84,
+ "E enviamos ao povo de Madian seu irmão Xuaib (Jetro), o qual disse: Ó povo meu, adorai a Deus porque não tereisoutra divindade além d'Ele; e não altereis a medida nem o peso, porque vejo a prosperidade em vós; porém temo por vós ocastigo do dia abrangedor.",
+ 85,
+ "Ó povo meu, disponde da medida e do peso com eqüidade; não defraudeis os humanos em seus bens e não pratiqueis adevassidão na terra, como corruptores.",
+ 86,
+ "O que Deus vos deixou ser-vos-á mais vantajoso, se sois fiéis. E não sou vosso guardião.",
+ 87,
+ "Disseram-lhe: Ó Xuaib, recomendas, porventura, em tuas preces, que renunciemos ao que os nossos pais adoravam, ouque não façamos de nossos bens o que quisermos, tu que és tolerante, sensato?",
+ 88,
+ "Respondeu: Ó povo meu, não vedes que possuo a evidência do meu Senhor e Ele me agraciou generosamente...? Nãopretendo contrariar-vos, a não ser no que Ele vos vedou; só desejo a vossa melhoria, de acordo com a minha capacidade; emeu êxito só depende de Deus, a Quem me encomendo e a Quem retornarei, contrito.",
+ 89,
+ "Ó povo meu, que a hostilidade contra mim não vos induza ao pecado e vos não ocorra o que ocorreu ao povo de Noé, ouao de Hud, ou ao de Sáleh! Recordai-vos de que o povo de Lot não está distante de vós (no tempo)!",
+ 90,
+ "E implorai o perdão de vosso Senhor; voltai a Ele, arrependidos, porque meu Senhor é Misericordioso, Afetuosíssimo.",
+ 91,
+ "Disseram: Ó Xuaib, não compreendemos muito do que dizes e, para nós, é incapaz; se não fosse por tua família, ter-te-íamos apedrejado, porque não ocupas grande posição entre nós.",
+ 92,
+ "Retrucou-lhes: Ó povo meu, acaso minha família vos é mais estimada do que Deus, a Quem deixastes completamente noesquecimento? Sabei que meu Senhor está inteirado de tudo quanto fazeis.",
+ 93,
+ "Ó povo meu, agi segundo o vosso critério, que eu agirei segundo o meu. Logo sabereis a quem açoitará um castigo que oaviltará e quem de nós é impostor. Esperai, pois, que eu espero convosco!",
+ 94,
+ "Mas, quando se cumpriu o Nosso desígnio, salvamos, por Nossa misericórdia, Xuaib, e com ele os fiéis. E o estrondofulminou os iníquos e a manhã encontrou-os jacentes em seus lares,",
+ 95,
+ "Como se jamais neles houvessem vivido. Da mesma maneira que foi extirpado o povo de Madian, também foi extirpadoo povo de Samud!",
+ 96,
+ "E enviamos Moisés com os Nossos versículos, e com autoridade evidente,",
+ 97,
+ "Ao Faraó e seus chefes; porém, estes obedeceram à ordem do Faraó, embora a ordem do Faraó fosse insensata.",
+ 98,
+ "Ele encabeçará o seu povo, no Dia da Ressurreição, e os fará entrar no fogo infernal. Que infeliz entrada a sua!",
+ 99,
+ "E foram perseguidos pela maldição, neste mundo, tal como o serão no Dia da Ressurreição. Que detestável presenteser-lhes-á outorgado!",
+ 100,
+ "Eis aqui alguns dos relatos da história das cidades que te referimos; algumas ainda de pé, outras já arrasadas.",
+ 101,
+ "E não os condenamos, senão que se condenaram a si próprios. De nada lhes valeram as deidades que invocaram, emvez de Deus, quando se cumpriu o desígnio do teu Senhor! Não fizeram mais do que lhes agravar a perdição.",
+ 102,
+ "E assim é o extermínio (vindo do teu Senhor, que extermina as cidades por sua iniqüidades. O Seu extermínio éterrível, severíssimo.",
+ 103,
+ "Nisto há um sinal para quem teme o castigo da outra vida. Isso acontecerá no dia em que forem congregados oshumanos; aquele será um dia testemunhável,",
+ 104,
+ "Que só adiamos por um prazo predeterminado.",
+ 105,
+ "Quando tal dia chegar, ninguém falará, senão com a vênia d'Ele, e entre eles haverá desventurados e venturosos.",
+ 106,
+ "Quanto aos desventurados, serão precipitados no fogo, donde exalarão gemidos e gritos,",
+ 107,
+ "Onde permanecerão eternamente, enquanto perdurarem os céus e a terra, a menos que teu Senhor disponha outra sorte, porque dispõe como Lhe apraz.",
+ 108,
+ "Os venturosos, porém, morarão eternamente no Paraíso, enquanto perdurarem os céus e a terra, a menos que teu Senhordisponha doutra sorte. Esta é uma graça ininterrupta.",
+ 109,
+ "Não tenhas dúvidas sobre o que esses (incrédulos) adorarão, porque não adorarão senão o que anteriormente seus paishaviam adorado. Nós lhes pagaremos o que lhes corresponde, sem diminuí-lo.",
+ 110,
+ "Havíamos concedido o Livro a Moisés, acerca do qual houve discórdias; e, se não houvesse sido por uma palavrapredita, por teu Senhor, Este já os teria julgado. Mas continuam em dúvida inquietante, a tal respeito.",
+ 111,
+ "Teu Senhor retribuirá a cada um segundo suas obras, porque Ele está bem inteirado de tudo quando fazem.",
+ 112,
+ "Sê firme, pois, tal qual te foi ordenado, juntamente com os arrependidos, e não vos extravieis, porque Ele bem vê tudoquanto fazeis.",
+ 113,
+ "E não vos inclineis para os iníquos, porque o fogo apoderar-se-á de vós; e não tereis, em vez de Deus, protetores, nemsereis socorridos.",
+ 114,
+ "E observa a oração em ambas as extremidades do dia e em certas horas da noite, porque as boas ações anulam as más. Nisto há mensagem para os que recordam.",
+ 115,
+ "E persevera, porque Deus não frustra a recompensa dos benfeitores.",
+ 116,
+ "Se ao menos houvesse, entre as gerações que vos precederam, alguns sensatos que proibissem a corrupção na terra, como o fizeram uns poucos do que havíamos salvo! Mas os iníquos se entregaram às suas concupiscências e forampecadores.",
+ 117,
+ "É inconcebível que teu Senhor exterminasse as cidades injustamente, caso seus habitantes fossem conciliadores!",
+ 118,
+ "Se teu Senhor quisesse, teria feito dos humanos uma só nação; porém, jamais cessarão de disputar entre si,",
+ 119,
+ "Salvo aqueles de quem teu Senhor Se apiade. Para isso os criou. Assim, cumprir-se-á a palavra do teu Senhor: Encherei o inferno, tanto de gênios, como de humanos, todos juntos.",
+ 120,
+ "E tudo o que te relatamos, da história dos mensageiros, é para se firmar o teu coração. Nesta (surata) chegou-te averdade, e a exortação e a mensagem para os fiéis.",
+ 121,
+ "E dize aos incrédulos: Agi segundo o vosso critério, que nós agiremos segundo o nosso.",
+ 122,
+ "E aguardai, que nós aguardaremos.",
+ 123,
+ "A Deus pertence o mistério dos céus e da terra, e a Ele retornarão todas as coisas. Adora-O, pois, e encomenda-te aEle, porque teu Senhor não está desatento de tudo quanto fazeis!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/12.json b/share/quran-json/TheQuran/pt/12.json
new file mode 100644
index 0000000..6d87306
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/12.json
@@ -0,0 +1,238 @@
+[
+ {
+ "id": "12",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Yusuf",
+ "translated_name": "Joseph",
+ "verse_count": 111,
+ "slug": "yusuf",
+ "codepoints": [
+ 1610,
+ 1608,
+ 1587,
+ 1601
+ ]
+ },
+ 1,
+ "Alef, Lam, Ra. Eis aqui os versículos do Livro lúcido.",
+ 2,
+ "Revelamo-lo como um Alcorão árabe, para que raciocineis.",
+ 3,
+ "Nós te relatamos a mais formosa das narrativas, ao inspirar-te este Alcorão, se bem que antes disso eras um dosdesatentos.",
+ 4,
+ "Recorda-te de quando José disse a seu pai: Ó pai, vi, em sonho, onze estrelas, o sol e a lua; vi-os prostrando-se ante mim.",
+ 5,
+ "Respondeu-lhe: Ó filho meu, não relates teu sonho aos teus irmãos, para que não conspirem astutamente contra ti. Ficasabendo que Satanás é inimigo declarado do homem.",
+ 6,
+ "E assim teu Senhor te elegerá e ensinar-te-á a interpretação das histórias e te agraciará com a Sua mercê, a ti e à famíliade Jacó, como agraciou anteriormente teus avós, Abraão e Isaac, porque teu Senhor é Sapiente, Prudentíssimo.",
+ 7,
+ "Na história de José e de seus irmãos há exemplos para os inquiridores.",
+ 8,
+ "Eis que (os irmãos de José) disseram (entre si): José e seu irmão (Benjamim) são mais queridos por nosso pai do que nós, apesar de sermos muitos. Certamente, nosso pai está (mentalmente) divagante!",
+ 9,
+ "Matai, pois, José ou, então, desterrai-o; assim, o carinho de vosso pai se concentrará em vós e, depois disso, sereisvirtuosos.",
+ 10,
+ "Um deles disse, então: Não mateis José, mas arrojai-o no fundo de um poço, pois se assim o fizerdes poderá ser tiradopor alguém de alguma caravana.",
+ 11,
+ "Disseram (depois de combinarem agastar José do pai): Ó pai, que há contigo? Por que não nos confias José, apesar desermos conselheiros dele?",
+ 12,
+ "Envia-o amanhã conosco, para que divirta e brinque, que tomaremos conta dele.",
+ 13,
+ "Respondeu-lhes: Sem dúvida que me condói que o leveis, porque temo que o devore um lobo, enquanto estiverdesdescuidados.",
+ 14,
+ "Asseguraram: Se o lobo o devorar, apesar de sermos muitos, seremos então desventurados.",
+ 15,
+ "Mas quando o levaram, resolvidos a arrojá-lo no fundo do poço, revelamos-lhes: Algum dia hás de inteirá-los desta suaação, mas eles não te conhecerão.",
+ 16,
+ "E, ao anoitecer, apresentaram-se chorando ate seu pai.",
+ 17,
+ "Disseram: Ó pai, estávamos apostando corrida e deixamos José junto à nossa bagagem, quando um lobo o devorou. Porém, tu não irás crer, ainda que estejamos falando a verdade!",
+ 18,
+ "Então lhe mostraram sua túnica falsamente ensangüentada; porém, Jacó lhes disse: Qual! Vós mesmo tramastes cometersemelhante crime! Porém, resignar-me-ei pacientemente, pois Deus me confortará, em relação ao que me anunciais.",
+ 19,
+ "Então, aproximou-se do poço uma caravana, e enviou seu aguadeiro em busca de água; jogou seu balde (no poço) edisse: Alvíssaras! Eis aqui um adolescente! E o ocultaram entre seus petrechos, sendo Deus sabedor do que faziam.",
+ 20,
+ "Venderam-no a ínfimo preço, ao peso de poucos adarmes, sem lhe dar maior importância.",
+ 21,
+ "E o egípcio que o adquiriu disse à sua mulher: Acolhe-o condignamente; pode ser que nos venha a ser útil, ou poderemosadotá-lo como filho. Assim estabilizamos José na terra, e ensinamos-lhes a interpretação das histórias. Sabei que Deuspossui total controle sobre os Seus assuntos; porém, a maioria dos humanos o ignora.",
+ 22,
+ "E quando alcançou a puberdade, agraciamo-lo com poder e sabedoria; assim recompensamos os benfeitores.",
+ 23,
+ "A mulher, em cuja casa se alojara, tentou seduzi-lo; fechou as portas e lhe disse: Agora vem! Porém, ele disse: Amparo-me em Deus! Ele (o marido) é meu amo e acolheu-me condignamente. Em verdade, os iníquos jamais prosperarão.",
+ 24,
+ "Ela o desejou, e ele a teria desejado, se não se apercebesse da evidência do seu Senhor. Assim procedemos, paraafastá-lo da traição e da obscenidade, porque era um dos Nossos sinceros servos.",
+ 25,
+ "Então correram ambos até à porta e ela lhes rasgou a túnica por trás, e deram ambos com o senhor dela (o marido) juntoà porta. Ela lhe disse: Que pena merece quem pretende desonrar a tua família, senão o cárcere ou um doloroso castigo?",
+ 26,
+ "Disse (José): Foi ela quem procurou instigar-me ao pecado. Um parente dela declarou, então, dizendo: Se a túnica deleestiver rasgada na frente, ela é quem diz a verdade e ele é dos mentirosos.",
+ 27,
+ "E se a túnica estiver rasgada por detrás, ela é que mente e ele é dos verazes.",
+ 28,
+ "E quando viu que a túnica estava rasgada por detrás, disse (o marido à mulher): Esta é uma de vossas conspirações, poisque elas são muitas!",
+ 29,
+ "Ó José, esquece-te disto! E tu (ó mulher), pede perdão por teu pecado, porque és uma das muitas pecadoras.",
+ 30,
+ "As mulheres da cidade comentavam: A esposa do governador prendeu-se apaixonadamente ao seu servo e tentouseduzi-lo. Certamente, vemo-la em evidente erro.",
+ 31,
+ "Mas quando ela se inteirou de tais falatórios, convidou-as à sua casa e lhes preparou um banquete, ocasião em que deuuma faca a cada uma delas; então disse (a José): Apresenta-te ante elas! E quando o viram, extasiaram-se, à visão dele, chegando mesmo a ferir suas próprias mãos. Disseram: Valha-nos Deus! Este não é um ser humano. Não é senão um anjonobre.",
+ 32,
+ "Então ela disse: Eis aquele por causa do qual me censuráveis e eis que tentei seduzi-lo e ele resistiu. Porém, se não fizertudo quanto lhe ordenei, juro que será encarcerado e será um dos vilipendiados.",
+ 33,
+ "Disse (José): Ó Senhor meu, é preferível o cárcere ao que me incitam; porém, se não afastares de mim as suasconspirações, cederei a elas e serei um dos néscios.",
+ 34,
+ "E seu Senhor o atendeu e afastou dele as conspirações delas, porque Ele é o Oniouvinte, o Sapientíssimo.",
+ 35,
+ "Mas apesar das provas, houveram por bem encarcerá-lo temporariamente.",
+ 36,
+ "Dois jovens ingressaram com ele na prisão. Um deles disse: Sonhei que estava espremendo uvas. E eu - disse o outro -sonhei que em cima da cabeça levava pão, o qual era picado por pássaros. Explica-nos a interpretação disso, porque teconsideramos entre os benfeitores.",
+ 37,
+ "Respondeu-lhes: Antes da chegada de qualquer alimento destinado a vós, informar-vos-ei sobre a interpretação. Isto éalgo que me ensinou o meu Senhor, porque renunciei ao credo daqueles que não crêem em Deus e negam a vida futura.",
+ 38,
+ "E sigo o credo dos meus antepassados: Abraão, Isaac e Jacó, porque não admitimos parceiros junto a Deus. Tal é agraça de Deus para conosco, assim como para os humanos; porém, a maioria dos humanos não Lhe agradece.",
+ 39,
+ "Ó meus parceiros de prisão, que é preferível: deidades discrepantes ou o Deus Único, o Irresistível?",
+ 40,
+ "Não adorais a Ele, mas a nomes que inventastes, vós e vossos pais, para o que Deus não vos investiu de autoridadealguma. O juízo somente pertence a Deus, que vos ordenou não adorásseis senão a Ele. Tal é a verdadeira religião; porém, amaioria dos humanos o ignora.",
+ 41,
+ "Ó meus companheiros de prisão, um de vós servirá vinho ao seu rei e ao outro será crucificado, e os pássarospicar-lhe-ão a cabeça. Já está resolvido a questão sobre a qual me consultastes.",
+ 42,
+ "E disse àquele que ele (José) sabia estar a salvo daquilo: Recorda-te de mim ante teu rei! Mas Satanás o fez esquecer-sede mencioná-lo a seu rei permanecendo (José), então, por vários anos no cárcere.",
+ 43,
+ "Disse o rei: Sonhei com sete vacas gordas sendo devoradas por sete magras, e com sete espigas verdes e outras setesecas. Ó chefes, interpretai o meu sonho, se sois interpretadores de sonhos.",
+ 44,
+ "Responderam-lhe: É uma confusão de sonhos e nós não somos interpretadores de sonhos.",
+ 45,
+ "E disse aquele dos dois prisioneiros, o que foi liberto, recordando-se (de José), depois de algum tempo: Eu vos darei averdadeira interpretação disso: Enviai-me, portanto, até José.",
+ 46,
+ "(Foi enviado e, quando lá chegou, disse): Ó José, ó veracíssimo, explicai-me o que significam sete vacas gordas sendodevoradas por sete magras, e sete espigas verdes e outras sete secas, para que eu possa regressar àquela gente, a fim de quese conscientizem.",
+ 47,
+ "Respondeu-lhe: Semeareis durante sete anos, segundo o costume e, do que colherdes, deixai ficar tudo em suas espigas, exceto o pouco que haveis de consumir.",
+ 48,
+ "Então virão, depois disso, sete (anos) estéreis, que consumirão o que tiverdes colhido para isso, menos o pouco quetiverdes poupado (à parte).",
+ 49,
+ "Depois disso virá um ano, no qual as pessoas serão favorecidas com chuvas, em que espremerão (os frutos).",
+ 50,
+ "Então, disse o rei: Trazei-me esse homem! Mas quando o mensageiro se apresentou a José, ele lhe disse: Volta ao teuamo e dize-lhe que se inteire quanto à intenção das mulheres que haviam ferido as mãos. Meu Senhor é conhecedor das suasconspirações.",
+ 51,
+ "O rei perguntou (às mulheres): Que foi que se passou quando tentastes seduzir José? Disseram: Valha-nos Deus! Nãocometeu delito algum que saibamos. A mulher do governador disse: Agora a verdade se evidenciou. Eu tentei seduzi-lo e eleé, certamente, um dos verazes.",
+ 52,
+ "Isto para que (ele) saiba que não fui falsa durante a sua ausência, porque Deus não dirige as conspirações dos falsos.",
+ 53,
+ "Porém, eu não me escuso, porquanto o ser é propenso ao mal, exceto aqueles de quem o meu Senhor se apiada, porque omeu Senhor é Indulgente, Misericordiosíssimo.",
+ 54,
+ "Então o rei disse: Trazei-mo! Quero que sirva exclusivamente a mim! E quando lhe falou, disse: Doravante gozarás, entre nós, de estabilidade e de confiança.",
+ 55,
+ "Pediu-lhes: Confia-me os armazéns do país que eu serei um bom guardião deles, pois conheço-lhes a importância.",
+ 56,
+ "E assim estabelecemos José no país, para que governasse onde, quando e como quisesse. Agraciamos com a Nossamisericórdia quem Nos apraz e jamais frustramos a recompensa dos benfeitores.",
+ 57,
+ "A recompensa da outra vida, porém, é preferível para os fiéis, que são constantes no temor (a Deus).",
+ 58,
+ "E chegaram os irmãos de José, ao qual se apresentaram. Ele os reconheceu, porém ele não o reconheceram.",
+ 59,
+ "E quando, lhes fornecendo as provisões, disse-lhes: Trazei-me um vosso irmão, por parte de vosso pai! Não reparais emque vos cumulo a medida, e que sou o melhor dos anfitriões?",
+ 60,
+ "Porém, se não mo trouxerdes, não tereis aqui mais provisões nem podereis acercar-vos de mim!",
+ 61,
+ "Responderam-lhe: Tentaremos persuadir seu pai; faremos isso, sem dúvida.",
+ 62,
+ "Então, disse aos seus servos: Colocai seus produtos (trazidos para a troca) em seus alforjes para que, quandoregressarem para junto de sua família, os encontrem e talvez voltem.",
+ 63,
+ "E quando regressaram e se defrontaram com o pai, disseram: Ó pai, negar-nos-ão as provisões (se não enviares conosconosso irmão); se enviares o nosso irmão conosco, tê-las-emos, e nós tomaremos conta dele.",
+ 64,
+ "Disse-lhes: Porventura, deverei confiá-lo a vós, como anteriormente vos confiei seu irmão (José)? Porém, Deus é omelhor Guardião e é o mais clemente dos misericordiosos.",
+ 65,
+ "E quando abriram os seus alforjes constataram que os seus produtos haviam-lhes sido devolvidos. Disseram então: Ópai, que mais queremos? Eis que os nossos produtos nos foram devolvidos! Proveremos a nossa família, cuidaremos donosso irmão, uma vez que nos darão a mais a carga de um camelo, a qual não é de pouca monta.",
+ 66,
+ "Disse-lhe: Não o enviarei, até que me jureis solenemente por Deus o que trareis a salvo, a manos que sejais impedidosdisso. E quando lhe prometeram isso, disse: Que Deus seja testemunha de tudo quanto dizemos!",
+ 67,
+ "Depois disse: Ó filhos meus, não entreis (na cidade) por uma só porta; outrossim, entrai por portas distintas; porém, sabei que nada poderei fazer por vós contra os desígnios de Deus, porque o juízo é só d'Ele. A Ele me encomendo, e que aEle se encomendem os que (n'Ele) confiam.",
+ 68,
+ "E entraram na cidade tal como seu pai lhes havia recomendado; porém, esta precaução de nada lhes valeria contra osdesígnios de Deus, a não ser atender a um desejo íntimo de Jacó, que tal lhes pedira. Eis que era sábio pelo que lhehavíamos ensinado; porém, a maioria dos humanos o ignora.",
+ 69,
+ "E quando se apresentaram a José, este hospedou seu irmão e lhes disse: Sou teu irmão; não te aflijas por tudo quantotenham cometido.",
+ 70,
+ "E quando lhes forneceu as provisões, colocou uma ânfora no alforje do seu irmão; logo um arauto gritou: Ó caravaneiros, sois uns ladrões!",
+ 71,
+ "Disseram, acercando-se deles (o arauto e os servos de José): Que haveis perdido?",
+ 72,
+ "Responderam-lhes: Perdemos a ânfora do rei e quem a restituir receberá a carga de um camelo. (E o arauto disse): E eugaranto isso.",
+ 73,
+ "Disseram: Amparamo-nos em Deus! Bem sabeis que não viemos para corromper a terra (egípcia) e que não somosladrões!",
+ 74,
+ "Perguntaram-lhes: Qual será, então, o castigo, se fordes mentirosos?",
+ 75,
+ "Responderam: Aquele cujo alforje se achar a ânfora será retido como escravo; assim castigamos os iníquos.",
+ 76,
+ "E começou ele a revistar os alforjes, deixando o de seu irmão Benjamim por último; depois tirou-a do alforje deste. Assim inspiramos a José esta argúcia, porque de outra maneira não teria podido apoderar-se do irmão, seguindo uma lei dorei, exceto se Deus o quisesse. Nós elevamos as dignidades de quem queremos, e acima de todo o conhecedor está oOnisciente.",
+ 77,
+ "Disseram (os irmãos): Se Benjamim roubou, um irmão seu já havia roubado antes dele! Porém, José dissimulou aquilo enão se manifestou a eles, e disse para si: Estais em pior situação; e Deus bem sabe o que inventais.",
+ 78,
+ "Disseram, então: Ó excelência, em verdade ele tem um pai ancião respeitável; aceita, pois, em seu lugar um de nós, porque te consideramos um dos benfeitores.",
+ 79,
+ "Respondeu-lhes: Deus me perdoe! Não reteremos senão aquele em cujo poder encontrarmos a nossa ânfora, porque docontrários seríamos iníquos.",
+ 80,
+ "E quando desesperaram de demovê-lo, retiraram-se para deliberar. O chefe, dentre eles, disse: Ignorais, acaso, quevosso pai recebeu de vós uma solene promessa perante Deus? Recordai quando vos desvencilhastes de José? Jamais memoverei, pois, desta terra, até que mo consinta meu pai ou que Deus mo comande, porque é o melhor dos comandantes.",
+ 81,
+ "Voltai ao vosso pai e dizei-lhe: Ó pai, teu filho roubou e não declaramos mais do que sabemos, e não podemos nosguardar dos juízes.",
+ 82,
+ "E indaga na cidade em que estivemos e aos caravaneiros com quem viajamos e comprovarás que somos verazes.",
+ 83,
+ "(Quando falaram ao seu pai), este lhes disse: Qual! Vós mesmos deliberastes cometer semelhante crime! Porém, resignar-me-ei a ser paciente, talvez Deus me devolva ambos, porque Ele é o Sapiente, o Prudentíssimo.",
+ 84,
+ "E afastou-se deles, dizendo: Ai de mim! Quanto sinto por José! E seus olhos ficaram anuviados pela tristeza, havia muitoretida.",
+ 85,
+ "Disseram-lhe: Por Deus, não cessarás de recordar-te de José até que adoeças gravemente ou fiques moribundo!?",
+ 86,
+ "Ele lhes disse: Só exponho perante Deus o meu pesar e a minha angústia porque sei de Deus o que vós ignorais...",
+ 87,
+ "Ó filhos meus, ide e informai-vos sobre José e seu irmão e não desespereis quanto à misericórdia de Deus, porque nãodesesperam da Sua misericórdia senão os incrédulos.",
+ 88,
+ "E quando se apresentaram a ele (José) disseram: Ó excelência, a miséria caiu sobre nós e nossa família; trazemos poucamercadoria; cumula-nos, pois, a medida, e faze-nos caridade, porque Deus retribui os caritativos.",
+ 89,
+ "Perguntou-lhes: Sabeis, acaso, o que nesciamente fizerdes a José e ao seu irmão com a vossa ignorância?",
+ 90,
+ "Disseram-lhe: És tu, acaso, José? Respondeu-lhes: Sou José e este é meu irmão! Deus nos agraciou com a Sua mercê, porque quem teme e persevera sabe que Deus jamais frustra a recompensa dos benfeitores.",
+ 91,
+ "Disseram-lhe: Por Deus! Ele te preferiu a nós, e confessamos que fomos culpados.",
+ 92,
+ "Asseverou-lhes: Hoje não sereis recriminados! Eis que Deus vos perdoará, porque é o mais clemente dosmisericordiosos.",
+ 93,
+ "Levai esta minha túnica e jogai-a sobre o rosto de meu pai, que assim recuperará a visão; em seguida, trazei-me toda avossa família.",
+ 94,
+ "E quando a caravana se aproximou, seu pai disse: Em verdade, pressinto a presença de José, muito embora pensais quedeliro!",
+ 95,
+ "Disseram-lhe: Por Deus! Certamente continuas com a tua velha ilusão.",
+ 96,
+ "E quando chegou o alvissareiro, jogou-a (a túnica de José) sobre o seu rosto, que recuperou a visão. Imediatamente lhesdisse: Não vos disse que eu si de Deus o que vós ignorais?",
+ 97,
+ "Disseram-lhe: Ó pai, implora a Deus que nos perdoe porque somos culpados!",
+ 98,
+ "Disse: Suplicai pelo vosso perdão ao meu Senhor, porque Ele é o Indulgente, o Misericordiosíssimo.",
+ 99,
+ "E quando todos se apresentaram ante José, este acolhes seus pais, dizendo-lhes: Entrai a salvo no Egito, se é pelavontade de Deus.",
+ 100,
+ "José honrou seus pais, sentando-os em seu sólio, e todos se prostraram perante eles; e José disse: Ó meu pai, esta é ainterpretação de um sonho passado que meu Senhor realizou. Ele me beneficiou ao tirar-me do cárcere e ao trazer-vos dodeserto, depois de Satanás ter semeado a discórdia entre meus irmão e mim. Meu Senhor é Amabilíssimo com quem Lheapraz, porque Ele é o Sapiente, o Prudentíssimo.",
+ 101,
+ "Ó Senhor meu, já me agraciastes com a soberania e me ensinastes a interpretação das histórias! Ó Criador dos céus eda terra, Tu és o meu Protetor neste mundo e no outro. Faze com que eu morra muçulmano, e junta-me aos virtuosos!",
+ 102,
+ "Esses são alguns relatos do incognoscível que te revelamos. Tu não estavas presente com eles quando tramaramastutamente.",
+ 103,
+ "Porém, a maioria dos humanos, por mais que anseies, jamais crerá.",
+ 104,
+ "Tu não lhes pedes por isso recompensa alguma, pois isto não é mais do que uma mensagem para a humanidade.",
+ 105,
+ "E quantos sinais há nos céus e na terra, que eles contemplam desdenhosamente!",
+ 106,
+ "E sua maioria não crê em Deus, sem atribuir-Lhe parceiros.",
+ 107,
+ "Estão, por acaso, certos de que não os fulminará um evento assolador, como castigo de Deus, ou que a Hora não ossurpreenderá, subitamente, sem que o saibam?",
+ 108,
+ "Dize: Esta é a minha senda. Apregôo Deus com lucidez, tanto eu como aqueles que me seguem. Glorificado seja Deus! E não sou um dos politeístas.",
+ 109,
+ "Antes de ti, não enviamos senão homens que habitavam as cidades, aos quais revelamos a verdade. Acaso, nãopercorreram a terra para observar qual foi o destino dos seus antecessores? A morada da outra vida é preferível, para ostementes. Não raciocinais?",
+ 110,
+ "Quando os mensageiros se desesperavam e pensavam que seriam desmentidos, chegava-lhes o Nosso socorro; esalvamos quem Nos aprouve, e o Nosso castigo foi inevitável para os pecadores.",
+ 111,
+ "Em suas histórias há um exemplo para os sensatos. É inconcebível que seja uma narrativa forjada, pois é acorroboração das anteriores, a elucidação de todas as coisas, orientação e misericórdia para os que crêem."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/13.json b/share/quran-json/TheQuran/pt/13.json
new file mode 100644
index 0000000..fcff929
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/13.json
@@ -0,0 +1,103 @@
+[
+ {
+ "id": "13",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Ar-Ra'd",
+ "translated_name": "The Thunder",
+ "verse_count": 43,
+ "slug": "ar-rad",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1585,
+ 1593,
+ 1583
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim, Ra. Estes são os versículos do Livro. O que te foi revelado por teu Senhor é a pura verdade; porém, amaioria dos humanos não crê nisso.",
+ 2,
+ "Foi Deus Quem erigiu os céus sem colunas aparentes; logo assumiu o Trono e submeteu o sol e a lua (à Sua vontade); cadaqual prosseguirá o seu curso, até um término prefixado. Ele rege os assuntos e elucida os versículos para que fiqueispersuadidos do comparecimento ante o vosso Senhor.",
+ 3,
+ "Ele foi Quem dilatou a terra, na qual dispôs sólidas montanhas e rios, assim como estabeleceu dois gêneros de todos osfrutos. É Ele Quem faz o dia suceder à noite. Nisso há sinais para aqueles que refletem.",
+ 4,
+ "E na terra há regiões fronteiriças (de diversas características); há plantações, videiras, sementeiras e tamareiras, semelhantes (em espécie) e diferentes (em variedade); são regadas pela mesma água e distinguimos umas das outras nocomer. Nisto há sinais para os sensatos.",
+ 5,
+ "E se te deslumbras com algo (ó Mensageiro), mais deslumbrante é a pergunta que fazem: Quando formos convertidos empó, reapareceremos como novas criaturas? São os tais que negam seu Senhor; são os que levarão cangas em seus pescoços, eserão condenados ao inferno, onde permanecerão eternamente.",
+ 6,
+ "Pedem-te que lhes seja apressado o mal, ao invés do bem, quando antes disso houve castigos exemplares, embora teuSenhor seja Indulgente para com os humanos, apesar das suas iniqüidades; porém, teu Senhor é Severíssimo no castigo.",
+ 7,
+ "E os incrédulos dizem: Por que não lhe foi revelado um sinal de seu Senhor? Porém, tu és tão-somente um admoestador, ecasa povo tem o seu guia.",
+ 8,
+ "Deus sabe o que concebe cada fêmea, bem como o absorvem as suas entranhas e o que nelas aumenta; e com Ele tudo temsua medida apropriada.",
+ 9,
+ "Ele é Conhecedor do incognoscível e do cognoscível, o Grandioso, o Altíssimo.",
+ 10,
+ "Para Ele é igual quem de vós oculta o seu pensamento e quem o divulga, quem se esconde nas travas e quem se mostraem pleno dia.",
+ 11,
+ "Cada (de tais pessoas) tem (anjos) protetores. Escoltam-no em turnos sucessivos, por ordem de Deus. Ele jamais mudaráas condições que concedeu a um povo, a menos que este mude o que tem em seu íntimo. E quando Deus quer castigar umpovo, ninguém pode impedi-Lo e não tem, em vez d'Ele, protetor algum.",
+ 12,
+ "Ele é Quem mostra o relâmpago como temor e esperança, e faz surgir as nuvens saturadas de chuva.",
+ 13,
+ "O trovão celebra os Seus louvores e o mesmo fazem os anjos, por temor a Ele, o Qual lança as centelhas, fulminando, assim, quem Lhe apraz enquanto disputam sobe Deus, apesar de Ele ser poderosamente Inexorável.",
+ 14,
+ "Somente a Ele são dirigidas as súplicas verdadeiras, e os que invocam, em vez d'Ele, em nada os atenderão; sãosemelhantes a quem estende a mão até à água, para que a mesma lhe suba à boca, coisa que jamais acontecerá. Sabei que asúplica dos incrédulos é improfícua.",
+ 15,
+ "A Deus se prostram aqueles que estão nos céus e na terra, de bom ou mau grado, tal como acontece com as suas sombras, ao amanhece e ao entardecer.",
+ 16,
+ "Pergunta-lhes: Quem é o Senhor dos céus e da terra? E afirma-lhes: Deus! E dize-lhes: Adotareis, acaso, em vez d'Ele, ídolos, que não podem beneficiar-se sem defender-se? Poderão equiparar-se as trevas e a luz? Atribuem, acaso, a Deusparceiros, que criaram algo como a Sua criação, de tal modo que a criação lhes pareça similar? Dize: Deus é o Criador detodas as coisas, porque Ele é o Único, o Irresistibilíssimo.",
+ 17,
+ "Ele faz descer a água do céu, que corre pelos vales, mesuradamente; sua corrente arrasta uma espuma flutuante. Também (os metais) que os homens fundes com afã, no fogo, para fabricar utensílios e ornamentos, produzem uma espuma semelhante. Assim Deus evidencia o verdadeiro e o falso. A espuma desvanece-se rapidamente: o que beneficia o homem, porém, permanece na terra. Assim Deus exemplifica (os fatos).",
+ 18,
+ "Aqueles que atendem ao chamado do seu Senhor obterão o bem; e aqueles que não atendem, ainda que possuíssem tudoquanto existe na terra, ou outro tanto, tentariam (em troca do que possuem) redimir-se com ele. Estes terão pior cômputo esua morada será o inferno. Que funesta morada!",
+ 19,
+ "Acaso, quem está ciente da verdade que tem sido revelada pelo teu Senhor é comparável àqueles que é cego? Só oentendem os sensatos,",
+ 20,
+ "Que cumprem os compromissos com Deus e não quebram a promessa;",
+ 21,
+ "Que unem o que Deus ordenou fosse unido, temem seu Senhor e receiam o terrível ajuste de contas.",
+ 22,
+ "E que perseveram no anelo de contemplar o Rosto de seu Senhor, observam a oração e fazem caridade, privativa oumanifestamente, daquilo com que os agraciamos, e retribuem o mal com o bem; estes obterão a última morada.",
+ 23,
+ "São jardins do Éden, nos quais entrarão com seus pais, seus companheiros e sua prole que tiverem sido virtuosos; e osanjos entrarão por todas as portas, saudando-os:",
+ 24,
+ "Que a paz esteja convosco por vossa perseverança! Que magnífica é a última morada!",
+ 25,
+ "Em troca, aqueles que violam o compromisso com Deus, depois de o haverem constituído, que desunem o que Deusordenou fosse unido e causam corrupção na terra, sobre eles pesará a maldição e obterão a pior morada.",
+ 26,
+ "Deus prodigaliza ou restringe o Seu sustento a quem Lhe apraz. Eles se regozijam da vida terrena; porém, o que é a vidaterrena, comparada com a outra, senão um prazer transitório?",
+ 27,
+ "Os incrédulos dizem: Por que não lhe foi revelado um sinal de seu Senhor? Responde-lhes: Deus deixa que se desvie aquem Lhe apraz e encaminha até Ele os contritos,",
+ 28,
+ "Que são fiéis e cujos corações sossegam com a recordação de Deus. Não é, acaso, certo, que à recordação de Deussossegam os corações?",
+ 29,
+ "Os fiéis que praticam o bem terão a bem-aventurança e terão feliz retorno.",
+ 30,
+ "Assim te enviamos a um povo, ao qual precederam outros, para que lhes recites o que temos revelado, apesar denegarem o Clemente. Dize-lhes: Ele é o meu Senhor! Não há mais divindade além d'Ele! A Ele me encomendo e a Ele será omeu retorno!",
+ 31,
+ "E se houvesse um Alcorão, mediante o qual movimentar-se-iam as montanhas ou fender-se-ia a erra, e os mortosfalariam (seria este); porém, o comando pertence integralmente a Deus. Não reparam os fiéis que se Deus quisesse, teriaencaminhado todos os humanos? Porém, a calamidade não cessará de açoitar os incrédulos, pelo que tiverem cometido, ouentão rondará os seus lares, até que se cumpra a promessa de Deus. Sabei que Deus não falta à Sua promessa.",
+ 32,
+ "Mensageiros anteriores a ti foram escarnecidos; porém, tolerei os incrédulos e depois os castiguei. E que aziago foi oMeu castigo!",
+ 33,
+ "Portanto, quem é observador de tudo quanto faz toda a alma? E atribuíram parceiros a Deus! Dize: Nomeia-os! Porventura podereis inteirá-Lo de algo que Ele não saiba, na terra? Ou isso é uma maneira de falar? Qual! Porém, suaconspiração alucinou os incrédulos, que foram afastados da senda reta. Mas quem Deus desviar não terá guia algum.",
+ 34,
+ "Sofrerão um castigo na vida terrena; porém, o do outro mundo será mais severo ainda e não terão defensor algum, anteDeus.",
+ 35,
+ "Eis a descrição do Paraíso, prometido aos tementes, abaixo do qual correm os rios; seus frutos são inesgotáveis, assimcomo suas sombras. Tal será o destino dos tementes. O destino dos incrédulos, porém, será o Fogo.",
+ 36,
+ "Aqueles aos quais concedemos o Livro enchem-se de júbilio pelo que te foi revelado. Entre os grupos (de pessoas) háalguns que negam uma parte dele. Dize: Tem-me sido ordenado adorar a Deus e não Lhe atribuir parceiros; só a Ele imploro, e para Ele será meu retorno!",
+ 37,
+ "Deste modo to temos revelado, para que seja um código de autoridade, em língua árabe. E se te renderes às suasconcupiscências, depois de teres recebido a ciência, não terás protetor, nem defensor, em Deus.",
+ 38,
+ "Antes de ti havíamos enviado mensageiros; e lhes concedemos esposas e descendência, e a nenhum mensageiro foipossível apresentar sinal algum, senão com a anuência de Deus. A cada época corresponde um Livro.",
+ 39,
+ "Deus impugna e confirma o que Lhe apraz, porque o Livro-matriz está em Seu poder.",
+ 40,
+ "Quer te mostremos algo do que lhes temos prometido, quer te acolhamos em Nós, a ti só cabe a proclamação damensagem, e a Nós o cômputo.",
+ 41,
+ "Não reparam em como temos reduzido as terras, de suas fronteiras remotas? Deus julga, e ninguém pode revogar a Suasentença. Ele é destro em ajustar contas.",
+ 42,
+ "Seus antepassados também conspiraram; porém, Deus conscientizou-Se de todas as conspirações. Ele bem sabe o que fazcada ser, e os incrédulos logo saberão a quem pertence a última morada.",
+ 43,
+ "Os incrédulos dizem: Tu não és mensageiro! Responde-lhes: Basta Deus por testemunha, entre vós e mim, e quem tem aciência do Livro."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/14.json b/share/quran-json/TheQuran/pt/14.json
new file mode 100644
index 0000000..80be381
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/14.json
@@ -0,0 +1,123 @@
+[
+ {
+ "id": "14",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ibrahim",
+ "translated_name": "Abraham",
+ "verse_count": 52,
+ "slug": "ibrahim",
+ "codepoints": [
+ 1575,
+ 1576,
+ 1585,
+ 1575,
+ 1607,
+ 1610,
+ 1605
+ ]
+ },
+ 1,
+ "Alef, Lam, Ra. Um Livro que te temos revelado para que retires os humanos das trevas (e os transportes) para a luz, com aanuência de seu Senhor, e o encaminhes até à senda do Poderoso, Laudabilíssimo.",
+ 2,
+ "É de Deus tudo quanto existe nos céus e na terra. Ai dos incrédulos, no que respeita ao severo castigo!",
+ 3,
+ "Quanto àqueles que preferem a vida terrena à outra vida, e desviam os demais da senda de Deus, procurando fazê-latortuosa, esses estão em profundo erro.",
+ 4,
+ "Jamais enviamos mensageiro algum, senão com a fala de seu povo, para elucidá-lo. Porém, Deus permite que se desviequem quer, e encaminha quem Lhe apraz, porque Ele é o Poderoso, o Prudentíssimo.",
+ 5,
+ "Enviamos Moisés com os Nossos sinais, (dizendo-lhe): Transporta o teu povo das trevas para a luz, e recorda-lhe os diasde Deus! Nisso há sinais para todo o perseverante, agradecido.",
+ 6,
+ "Recordai-vos de quando Moisés disse ao seu povo: Lembrai as graças de Deus para convosco ao libertar-vos do povo doFaraó, que vos infligia o pior castigo, sacrificando os vossos filhos e deixando com vida as vossas mulheres. E nissotivestes uma grande prova do vosso Senhor!",
+ 7,
+ "E de quando o vosso Senhor vos proclamou: Se Me agradecerdes, multiplicar-vos-ei; se Me desagradecerdes, sem dúvidaque o Meu castigo será severíssimo.",
+ 8,
+ "E de quando Moisés disse: Se renegardes, tanto vós como os que existem na terra, sabei que Deus é Opulento, Laudabilíssimo.",
+ 9,
+ "Ignorais, acaso, as histórias de vossos antepassados? Do povo de Noé, de Ad, de Tamud e daqueles que os sucederam? Ninguém, senão Deus, as conhece. Quando os seus mensageiros lhes apresentar as evidências, levaram as mãos às bocas, edisseram: Negamos a vossa missão, e estamos em uma dúvida inquietante sobre o que nos predicais.",
+ 10,
+ "Seus mensageiros retrucaram: Existe, acaso, alguma dúvida acerca de Deus, Criador dos céus e da terra? É Ele que vosconvoca para perdoar-vos os pecados, e vos tolera até ao término prefixado! Responderam: Vós não sois senão uns mortais, como nós; quereis afastar-nos do que adoravam os nossos pais? Apresentai-nos, pois, uma autoridade evidente!",
+ 11,
+ "Seus mensageiros lhes asseveraram: Não somos mais do que mortais como vós; porém, Deus agracia quem Lhe apraz, dentre Seus servos, e ser-nos-ia impossível apresentar-vos uma autoridade, a não ser com a anuência de Deus. Que os fiéisse encomendem a Deus!",
+ 12,
+ "E que escusa teremos para nos encomendarmos a Deus, sendo que Ele nos mostrou os caminhos? Nós suportaremos asvossas injúrias, e que a Deus se encomendem os que n'Ele confiam!",
+ 13,
+ "E os incrédulos disseram ao seus mensageiros: Nós vos expulsaremos da nossa terra, a menos que volteis ao nossocredo! Mas o seu Senhor inspirou-lhes: Exterminaremos os iníquos.",
+ 14,
+ "E depois disso vos faremos habitar a terra. Isso, para quem temer o comparecimento perante Mim e temer a advertência.",
+ 15,
+ "Então (eles) imploraram a vitória e a decisão, e eis que fracassou o plano do poderoso opressor obstinado,",
+ 16,
+ "Que terá pela frente o inferno, onde lhe será dado a beber licor;",
+ 17,
+ "Que sorverá, mas não poderá tragar. A morte o espreitará por todas as partes, mas ele não morrerá, e terá pela frente umseveríssimo castigo!",
+ 18,
+ "As obras daqueles que negaram seu Senhor assemelham-se às cinzas esparramadas em um dia tempestuoso. Não terãopoder por tudo quanto tiveram acumulado. Tal é o profundo erro.",
+ 19,
+ "Não reparas, acaso, em que, na verdade, Deus criou os céus e a terra? Se a Ele aprouvesse, far-vos-ia desaparecer e vossuplantaria por uma nova geração.",
+ 20,
+ "Porque isso não é uma grande empresa para Deus.",
+ 21,
+ "Todos comparecerão ante Deus! E os fracos dirão aos que se ensoberbeceram: Já que fomos vossos seguidores, podereis, porventura, livrar-nos do castigo de Deus? Responder-lhes-ão: Seu Deus nos houvesse encaminhado, o mesmoteríamos feito convosco; quer nos desesperemos, quer sejamos pacientes, não teremos escapatória.",
+ 22,
+ "E quando a questão for decidida, Satanás lhes dirá: Deus vos fez uma verdadeira promessa; assim, eu também vosprometi; porém, faltei à minha, pois não tive autoridade alguma sobre vós, a não ser convocar-vos, e vós me atendestes. Nãome reproveis, mas reprovai a vós mesmos. Não sou o vosso salvador, nem vós sois os meus. Renego (o fato de) que metenhais associado a Deus, e os iníquos sofrerão um doloroso castigo!",
+ 23,
+ "Os fiéis que tiverem praticado o bem serão introduzidos em jardins, abaixo dos quais correm os rios, onde morarãoeternamente, com o beneplácito do seu Senhor. Ali, a sua saudação será: Paz!",
+ 24,
+ "Não reparas em como Deus exemplifica? Uma boa palavra é como uma árvore nobre, cuja raiz está profundamente firme, e cujos ramos se elevam até ao céu.",
+ 25,
+ "Frutifica em todas as estações com o beneplácito do seu Senhor. Deus fala por parábolas aos humanos para que serecordem.",
+ 26,
+ "Por outra, há a parábola de uma palavra vil, comparada a uma árvore vil, que foi desarraigada da terra e carece deestabilidade.",
+ 27,
+ "Deus afirmará os fiéis com a palavra firme da vida terrena, tão bem como na outra vida; e deixará que os iníquos sedesviem, porque procede como Lhe apraz.",
+ 28,
+ "Não reparastes naqueles que permutaram a graça de Deus pela ingratidão e arrastaram o seu povo até à morada daperdição?",
+ 29,
+ "É o inferno em que entrarão! E que detestável paradeiro!",
+ 30,
+ "E atribuem semelhantes a Deus, para desviar os demais da Sua senda. Dize-lhes: Deletai-vos (nesta vida), porque o fogoserá o vosso destino.",
+ 31,
+ "Dize aos Meus servos fiéis que observem a oração, que façam caridade, privativa ou paladinamente, com aquilo comque os agraciamos, antes que chegue o dia em que não haverá transação, nem amparo.",
+ 32,
+ "Deus foi Quem criou os céus e a terra e é Quem envia a água do céu, com a qual produz os frutos para o vosso sustento! Submeteu, para vós, os navios que, com a Sua anuência, singram os mares, e submeteu, para vós, os rios.",
+ 33,
+ "Submeteu, para vós, o sol e a luz, que seguem os seus cursos; submeteu para vós, a noite e o dia.",
+ 34,
+ "E vos agraciou com tudo quanto Lhe pedistes. E se contardes as mercês de Deus, não podereis enumerá-las. Sabei que ohomem é iníquo e ingrato por excelência.",
+ 35,
+ "E recorda-te de quando Abraão disse: Ó Senhor meu, pacifica esta Metrópole e preserva a mim e aos meus filhos daadoração dos ídolos!",
+ 36,
+ "Ó Senhor meu, já se desviaram muitos humanos. Porém, quem me seguir será dos meus, e quem medesobedecer... Certamente Tu és Indulgente, Misericordiosíssimo!",
+ 37,
+ "Ó Senhor nosso, estabeleci parte da minha descendência em um vale inculto perto da Tua Sagrada Casa para que, óSenhor nosso, observem a oração; faze com que os corações de alguns humanos os apreciem, e agracia-os com os frutos, afim de que Te agradeçam.",
+ 38,
+ "Ó Senhor nosso, Tu sabes tudo quanto ocultamos e tudo quanto manifestamos, porque nada se oculta a Deus, tanto naterra como no céu.",
+ 39,
+ "Louvado seja Deus que, na minha velhice, me agraciou com Ismael e Isaac! Como o meu Senhor é Exorável!",
+ 40,
+ "Ó Senhor meu, faze-me observante da oração, assim como à minha prole! Ó Senhor nosso, escuta a minha súplica!",
+ 41,
+ "Ó Senhor nosso, perdoa-me a mim, aos meus pais e aos fiéis, no Dia da prestação de contas!",
+ 42,
+ "E não creiais que Deus está desatento a tudo quanto cometem os iníquos. Ele somente os tolera, até ao dia em que seusolhos ficarão atônitos,",
+ 43,
+ "Correndo a toda a brida, com as cabeças hirtas, com os olhares inexpressivos e os corações vazios.",
+ 44,
+ "Admoesta, pois, os humanos sobre o dia em que os açoitará o castigo, e os iníquos dirão: ó Senhor nosso, poupa-nos pormais um pouco. Obedeceremos ao Teu apelo e seguiremos os mensageiros! (Ser-lhes-á respondido): Mas não jurastes antesque não seríeis aniquilados?",
+ 45,
+ "Residistes nos mesmos lugares daqueles que se condenaram, apesar de terdes presenciado o que lhes aconteceu e de vostermos dado (tantos) exemplos!",
+ 46,
+ "E conspiraram; porém, Deus tem registrado tais conspirações, mesmo que as suas conspirações tenham abalado asmontanhas.",
+ 47,
+ "Nunca penseis que Deus falte à promessa feita aos Seus mensageiros, porque Deus é Punidor, Poderosíssimo.",
+ 48,
+ "No dia em que a terra for trocada por outra (coisa) que não seja terra, como também os céus, quando os homenscomparecerem ante Deus, Único, Irresistível,",
+ 49,
+ "Verás os pecadores, nesse dia, cingidos por correntes.",
+ 50,
+ "As suas roupas serão de alcatrão, e o fogo envolverá os seus rostos.",
+ 51,
+ "Isso, para que Deus puna cada alma segundo os que tiver merecido. Sabei que Deus é destro em ajustar contas.",
+ 52,
+ "Esta é uma mensagem para os humanos, a fim de que com ela sejam admoestados, e saibam que somente Ele é o DeusÚnico, e para que os sensatos nela meditem."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/15.json b/share/quran-json/TheQuran/pt/15.json
new file mode 100644
index 0000000..6008dde
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/15.json
@@ -0,0 +1,215 @@
+[
+ {
+ "id": "15",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Hijr",
+ "translated_name": "The Rocky Tract",
+ "verse_count": 99,
+ "slug": "al-hijr",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1580,
+ 1585
+ ]
+ },
+ 1,
+ "Alef, Lam, Ra. Estes são os versículos do Livro da revelação do Alcorão esclarecedor.",
+ 2,
+ "Talvez os incrédulos desejassem ter sido muçulmanos.",
+ 3,
+ "Deixa-os comerem e regozijarem-se, e a falsa esperança os alucinar; logo saberão!",
+ 4,
+ "Jamais aniquilamos cidade alguma, sem antes lhes termos predestinado o término.",
+ 5,
+ "Nenhum povo pode antecipar nem atrasar o seu destino!",
+ 6,
+ "E disseram: Ó tu, a quem foi revelada a Mensagem, és, sem dúvida, um energúmeno!",
+ 7,
+ "Por que não te apresentas a nós com os anjos, se és um dos verazes?",
+ 8,
+ "Só enviamos os anjos com a verdade em última instância e, em tal caso, (os incrédulos) não serão tolerados.",
+ 9,
+ "Nós revelamos a Mensagem e somos o Seu Preservador.",
+ 10,
+ "Já, antes de ti, tínhamos enviado mensageiros às seitas primitivas.",
+ 11,
+ "Porém, jamais se apresentou a eles algum mensageiro, sem que o escarnecessem.",
+ 12,
+ "Mesmo assim diligenciamos, no sentido de infundi-la (a Mensagem) nos corações dos pecadores.",
+ 13,
+ "Todavia, não crerão nela, apesar de os haver precedido o exemplo dos povos primitivos.",
+ 14,
+ "E se abríssemos uma porta para o céu, pela qual eles ascendesse,",
+ 15,
+ "Diriam: Nossos olhos foram ofuscados ou fomos mistificados!",
+ 16,
+ "Colocamos constelações no firmamento e o adornamos para os contempladores.",
+ 17,
+ "E o protegemos de todo o demônio maldito.",
+ 18,
+ "E àquele que tentar espreitar persegui-lo-á um meteoro flamejante.",
+ 19,
+ "E dilatamos a terra, em que fixamos firmes montanhas, fazendo germinar tudo, comedidamente.",
+ 20,
+ "E nela vos proporcionamos meios de subsistência, tanto para vós como para aqueles por cujo sustento sois responsáveis.",
+ 21,
+ "E não existe coisa alguma cujos tesouros não estejam em Nosso poder, e não vo-la enviamos, senão proporcionalmente.",
+ 22,
+ "E enviamos os ventos fecundantes e, então, fazemos descer água do céu, da qual vos damos de beber e que não podeisarmazenar (por muito tempo).",
+ 23,
+ "Somos Aquele que dá a vida e a morte, e somos o Único Herdeiro de tudo.",
+ 24,
+ "Nos conhecemos os vossos predecessores, assim como conhecemos os vossos sucessores.",
+ 25,
+ "Em verdade, teu Senhor (ó Mohammad) os congregará, porque é Prudente, Sapientíssimo.",
+ 26,
+ "Criamos o homem de argila, de barro modelável.",
+ 27,
+ "Antes dele, havíamos criado os gênios de fogo puríssimo.",
+ 28,
+ "Recorda-te de quando o teu Senhor disse aos anjos: Criarei um ser humano de argila, de barro modelável.",
+ 29,
+ "E ao tê-lo terminado e alentado com o Meu Espírito, prostrai-vos ante ele.",
+ 30,
+ "Todos os anjos se prostraram unanimemente,",
+ 31,
+ "Menos Lúcifer, que se negou a ser um dos prostrados.",
+ 32,
+ "Então, (Deus) disse: Ó Lúcifer, que foi que te impediu de seres um dos prostrados?",
+ 33,
+ "Respondeu: É inadmissível que me prostre ante um ser que criaste de argila, de barro modelável.",
+ 34,
+ "Disse-lhe Deus: Vai-te daqui (do Paraíso), porque és maldito!",
+ 35,
+ "E a maldição pesará sobre ti até o Dia do Juízo.",
+ 36,
+ "Disse: Ó Senhor meu, tolera-me até ao dia em que forem ressuscitados!",
+ 37,
+ "Disse-lhe: Serás, pois, dos tolerados,",
+ 38,
+ "Até ao dia do término prefixado.",
+ 39,
+ "Disse: Ó Senhor meu, por me teres colocado no erro, juro que os alucinarei na terra e os colocarei, a todos, no erro;",
+ 40,
+ "Salvo, dentre eles, os Teus servos sinceros.",
+ 41,
+ "Disse-lhes: Eis aqui a senda rela, que conduzirá a Mim!",
+ 42,
+ "Tu não terá autoridade alguma sobre os Meus servos, a não ser sobre aqueles que te seguirem, dentre os seduzíveis.",
+ 43,
+ "O inferno será o destino de todos eles.",
+ 44,
+ "Nele há sete portas e cada porta está destinada a uma parte deles.",
+ 45,
+ "Entretanto, os tementes estarão entre jardins e manaciais.",
+ 46,
+ "(Ser-lhes-á dito): Adentrai-os, seguros e em pas!",
+ 47,
+ "E exitinguiremos todo o rancor do seus corações; serão como irmãos, descansando sobre coxins, contemplando-semutuamente,",
+ 48,
+ "Onde não serão acometidos de fadiga e de onde nunca serão retirados.",
+ 49,
+ "Notifica Meus servos de que sou o Indulgente, o Misericordiosíssimo.",
+ 50,
+ "E que Meu castigo será o dolorosíssimo castigo!",
+ 51,
+ "Notifica-os da história dos hóspedes de Abraão,",
+ 52,
+ "Quando se apresentaram a ele, dizendo-lhe: Pas! Respondeu-lhes: Sabei que vos tememos (eu e meu povo)!",
+ 53,
+ "Disseram-lhe: Não temas, porque viemos alvissarar-te com a vinda de um filho, que será sábio.",
+ 54,
+ "Perguntou-lhes: Alvissarar-me-eis a vinda de um filho, sendo que a velhice jah se acercou de mim? O que mealvissarais, então?",
+ 55,
+ "Responderam-lhe: O que te alvissaramos é a verdade. Não sejas, pois, um dos desesperados!",
+ 56,
+ "Disse-lhes: E quem desespera a misericórdia do seu Senhor, senão os desviados?",
+ 57,
+ "E perguntou (mais): Qual é a vossa missão, ó mensageiros?",
+ 58,
+ "Responderam-lhe: Fomos enviados a um povo de pecadores.",
+ 59,
+ "Com exceção da família de Lot, a qual salvaremos inteiramente,",
+ 60,
+ "Exceto sua mulher, que nos dispusemos a contar entre os deixados para trás.",
+ 61,
+ "E quando os mensageiros se apresentaram ante a família de Lot,",
+ 62,
+ "Este lhes disse: Pareceis estranhos a mim!",
+ 63,
+ "Disseram-lhe: Sim! Trazemos-te aquilo de que os teus concidadãos haviam duvidado.",
+ 64,
+ "Trazemos-te a verdade, porque somos verazes.",
+ 65,
+ "Sai com a tua família no fim da noite, e segue tu na sua retaguarda, e que nenhum de vós olhe para trás; ide aonda vos forordenado!",
+ 66,
+ "E lhe revelamos a notícia de que aquela gente seria aniquilada ao amanhecer.",
+ 67,
+ "Os habitantes da cidade acudiram, regozijando-se (à casa de Lot),",
+ 68,
+ "Que lhes disse: Estes são meus hóspedes; não me desonreis,",
+ 69,
+ "Temei a Deus e não me avilteis.",
+ 70,
+ "Disseram-lhe: Não te havíamos advertido para não hospedares estranhos?",
+ 71,
+ "Disse-lhes: Aqui tendes as minhas filhas, se as quiserdes.",
+ 72,
+ "Por tua vida (ó Mohammad), eles vacilam em sua ebriedade!",
+ 73,
+ "Porém, o estrondo os fulminou, ao despontar do sol.",
+ 74,
+ "Reviramo-la (a cidade) e desencadeamos sobre os seus habitantes uma chuva de pedras de argila endurecida.",
+ 75,
+ "Nisto há sinais para os perspicazes.",
+ 76,
+ "E (as cidades) constituem um exemplo à beira da estrada (que permanece indelével até hoje na memória de todos).",
+ 77,
+ "Nisto há um exemplo para os fiéis.",
+ 78,
+ "E os habitantes da floresta eram iníquos.",
+ 79,
+ "Pelo que Nos vingamos deles. E, em verdade, ambas (as cidades) são ainda elucidativas.",
+ 80,
+ "Sem dúvida que os habitantes de Alhijr haviam desmentido os mensageiros,",
+ 81,
+ "Apesar de lhes termos apresentado os Nossos versículos; porém, eles os desdenharam,",
+ 82,
+ "E talharam as suas casas nas montanhas, crendo-se seguros!",
+ 83,
+ "Porém, o estrondo os fulminou ao amanhecer.",
+ 84,
+ "E de nada lhes valeu tudo quanto haviam elaborado.",
+ 85,
+ "E não criamos os céus e a terra e tudo quanto existe entre ambos, senão com justa finalidade, e sabei que a Hora éinfalível; mas tu (ó Mensageiro) perdoa-os generosamente.",
+ 86,
+ "Atenta para o fato de que o Teu Senhor é o Criador, o Sapientíssimo.",
+ 87,
+ "Em verdade, temos-te agraciado com os sete versículos reiterativos, assim como com o magnífico Alcorão.",
+ 88,
+ "Não cobices tudo aquilo com que temos agradecido certas classes, nem te aflijas por eles, e abaixa gentilmente as asaspara os fiéis.",
+ 89,
+ "E dize-lhes: Sou o elucidativo admoestador.",
+ 90,
+ "Tal como admoestamos aqueles que dividiram (as escrituras),",
+ 91,
+ "E que transformaram o Alcorão em frangalhos!",
+ 92,
+ "Por teu Senhor que pediremos contas a todos.",
+ 93,
+ "De tudo quanto tenham feito!",
+ 94,
+ "Proclama, pois, o que te tem sido ordenado e afasta-te do idólatras.",
+ 95,
+ "Porque somos-te Suficiente contra os escarnecedores,",
+ 96,
+ "Que adoram, com Deus, outra divindade. Logo saberão!",
+ 97,
+ "Bem sabemos que o teu coração se angustia pelo que dizem.",
+ 98,
+ "Porém, celebra os louvores do teu Senhor, sê um dos prostrados.",
+ 99,
+ "E adora ao teu Senhor até que te chegue a certeza."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/16.json b/share/quran-json/TheQuran/pt/16.json
new file mode 100644
index 0000000..84b4036
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/16.json
@@ -0,0 +1,273 @@
+[
+ {
+ "id": "16",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Nahl",
+ "translated_name": "The Bee",
+ "verse_count": 128,
+ "slug": "an-nahl",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1581,
+ 1604
+ ]
+ },
+ 1,
+ "Os desígnios de Deus são inexoráveis; não trateis de apressá-los. Glorificado e exaltado seja, pelos parceiros que Lheatribuem.",
+ 2,
+ "Envia, por Sua ordem, os anjos, com a inspiração, a quem Lhe apraz dentre os Seus servos, dizendo-lhes: Adverti que nãohá divindade além de Mim! Temei-me, pois!",
+ 3,
+ "Ele criou, com justa finalidade, os céus e a terra. Exaltado seja, pelos parceiros que Lhe atribuem.",
+ 4,
+ "Criou o homem de uma gota de sêmen, e o mesmo passou a ser um declarado opositor.",
+ 5,
+ "E criou o gado, do qual obtendes vestimentas, alimento e outros benefícios.",
+ 6,
+ "E tendes nele encanto, quer quando o conduzis ao apriscos, quer quando, pela manhã, os levais para o pasto.",
+ 7,
+ "Ainda leva as vossas cargas até as cidades, às quais jamais chegaríeis, senão à custa de grande esforço. Sabei que ovosso Senhor é Compassivo, Misericordiosíssimo.",
+ 8,
+ "E (criou) o cavalo, o mulo e o asno para serem cavalgados e para o vosso deleite, e cria coisas mais, que ignorais.",
+ 9,
+ "A Deus incumbe indicar a verdadeira senda, da qual tantos se desviam. Porém, se Ele quisesse, iluminar-vos-ia a todos.",
+ 10,
+ "Ele é Quem envia a água do céu, da qual bebeis, e mediante a qual brotam arbustos com que alimentais o gado.",
+ 11,
+ "E com ela faz germinar a plantação, a oliveira, a tamareira, a videira, bem como toda a sorte de frutos. Nisto há um sinalpara os que refletem.",
+ 12,
+ "E submeteu, para vós, a noite e o dia; o sol, a lua e as estrelas estão submetidos às Suas ordens. Nisto há sinais para ossensatos.",
+ 13,
+ "Bem como em tudo quanto vos multiplicou na terra, de variegadas cores. Certamente nisto há sinal para os que meditam.",
+ 14,
+ "E foi Ele Quem submeteu, para vós, o mar para que dele comêsseis carne fresca e retirásseis certos ornamentos com quevos enfeitais. Vedes nele os navios sulcando as águas, à procura de algo de Sua graça; quiçá sejais agradecidos.",
+ 15,
+ "E fixou na terra sólidas montanhas, para que ela não estremeça convosco, bem como rios, e caminhos pelos quais vosguiais.",
+ 16,
+ "Assim como os marcos, constituindo-se das estrelas, pelas quais (os homens) se guiam.",
+ 17,
+ "Poder-se-á comparar o Criador com quem nada pode criar? Não meditais?",
+ 18,
+ "Porém, se pretenderdes contar as mercês de Deus, jamais podereis enumerá-las. Sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 19,
+ "Deus conhece tanto o que ocultais, como o que manifestais.",
+ 20,
+ "E os que eles invocam, em vez de Deus, nada podem criar, posto que eles mesmos são criados.",
+ 21,
+ "São mortos, sem vida, e ignoram quando serão ressuscitados.",
+ 22,
+ "Vosso Deus é um Deus Único! Porém, quanto àqueles que não crêem na outra vida, os seus corações se negam (aentendê-lo) e estão ensoberbecidos.",
+ 23,
+ "Indubitavelmente Deus conhece tanto o que ocultam, como o que manifestam. Ele não aprecia os ensoberbecidos.",
+ 24,
+ "E quando lhes é dito: Que é que o vosso Senhor tem revelado? Dizem: As fábulas dos primitivos.",
+ 25,
+ "Carregarão com todos os seus pecados no Dia da Ressurreição, e com parte dos pecados daqueles que, nesciamente, eles desviaram. Que péssimo é o que carregarão!",
+ 26,
+ "Seus antepassados haviam conspirado; porém, Deus fez desmoronar as suas construções até ao alicerce; o teto ruiu sobreeles e o castigo os açoitou quando menos esperavam.",
+ 27,
+ "Então, no Dia da Ressurreição, Ele os aviltará, dizendo-lhes: Onde estão os parceiros pelos quais disputáveis? Ossábios dirão: O aviltamento e o castigo recairão hoje sobre os incrédulos,",
+ 28,
+ "De cujas almas os anjos se apossam, em estado de iniqüidade. Naquela hora submeter-se-ão e dirão: Nunca fizemos mal! Qual! Deus é Sabedor de tudo quanto fizestes.",
+ 29,
+ "Adentrai as portas do inferno, onde permanecereis eternamente. Que péssima é a morada dos arrogantes!",
+ 30,
+ "Será dito aos tementes: Que revelou o vosso Senhor? Dirão: O melhor! Para os benfeitores, neste mundo, há umarecompensa; porém, a da outra vida é preferível. Que magnífica é a morada dos tementes!",
+ 31,
+ "São jardins do Éden em que entrarão, abaixo dos quais correm os rios, onde terão tudo quanto anelaram. Assim Deusrecompensará os tementes,",
+ 32,
+ "De cujas almas os anjos se apossam em estado de pureza, dizendo-lhes: Que a paz esteja convosco! Entrai no Paraíso, pelo que haveis feito!",
+ 33,
+ "Esperam os incrédulos, que os anjos se apresentem a eles ou que os surpreendam os desígnios do teu Senhor? Assimfizeram os seus antepassados. Deus não os condenou, outrossim eles condenaram a si próprios.",
+ 34,
+ "Receberam o castigo pelo que cometeram e foram envolvidos por aquilo de que escarneciam.",
+ 35,
+ "Os idólatras dizem: Se Deus quisesse, a ninguém teríamos adorado em vez d'Ele, nem nós, nem nossos pais, nemteríamos prescrito proibições que não fossem as d'Ele. Assim falavam os seus antepassados. Acaso, incumbe aosmensageiros algo além da proclamação da lúcida Mensagem?",
+ 36,
+ "Em verdade, enviamos para cada povo um mensageiro (com a ordem): Adorai a Deus e afastai-vos do sedutor! Porém, houve entre eles quem Deus encaminhou e houve aqueles que mereceram ser desviados. Percorrei, pois, a terra, e observaiqual foi a sorte dos desmentidores.",
+ 37,
+ "Se anseias (ó Mensageiro) por encaminhá-los, fica sabendo que Deus não ilumina aqueles que se têm extraviado, e quenão terão defensores.",
+ 38,
+ "E juraram por Deus solenemente que Ele não ressuscitará os mortos. Qual! Ressuscitá-los-á, mercê de Sua infalívelpromessa! Porém, a maioria dos humanos o ignora.",
+ 39,
+ "Ele o fará, para elucidá-los na sua divergência, a fim de que os incrédulos reconheçam que eram mentirosos.",
+ 40,
+ "Sabei que quando desejamos algo, dizemos: Seja! e é.",
+ 41,
+ "Quanto àqueles que migraram pela causa de Deus, depois de terem sido oprimidos, apoiá-los-emos dignamente nestemundo, e, certamente, a recompensa do outro mundo será maior, se quiserem saber.",
+ 42,
+ "São aqueles que perseveram e se encomendam ao seu Senhor.",
+ 43,
+ "Antes de ti não enviamos senão homens, que inspiramos. Perguntai-o, pois, aos adeptos da Mensagem, se o ignorais!",
+ 44,
+ "(Enviamo-los) com as evidências e os Salmos. E a ti revelamos a Mensagem, para que elucides os humanos, a respeitodo que foi revelado, para que meditem.",
+ 45,
+ "Aqueles que urdiram as maldades estão, acaso, seguros de que Deus não fará com que os trague a terra ou lhessurpreenda o castigo quando menos o esperam?",
+ 46,
+ "Ou que os surpreenda, em seu caminho errante, uma vez que não podem impedi-Lo de fazer isso?",
+ 47,
+ "Ou que os alcance com um processo de aniquilamento gradual? Porém, sabei que o vosso Senhor é Compassivo, Misericordiosíssimo.",
+ 48,
+ "Não reparam, acaso, em tudo quanto Deus tem criado, entre as coisas inanimadas, cujas sombras se projetam ora para adireita ora para esquerda, prostrando-se ante Ele humildemente?",
+ 49,
+ "Ante Deus se prostra tudo o que há nos céus e na terra, bem como os anjos, que não se ensoberbecem!",
+ 50,
+ "Temem ao seu Senhor, que está acima deles, e executam o que lhes é ordenado.",
+ 51,
+ "Deus disse: Não adoteis dois deuses - posto que somos um Único Deus! - Temei, pois, a Mim somente!",
+ 52,
+ "Seu é tudo quanto existe nos céus e na terra. Somente a Ele devemos obediência permanente. Temeríeis, acaso, alguémalém de Deus?",
+ 53,
+ "Todas a mercês de que desfrutais emanam d'Ele; e quando vos açoita a adversidade, só a Ele rogais.",
+ 54,
+ "Logo, quando Ele vos livra da adversidade, eis que alguns de vós atribuem parceiros ao seu Senhor,",
+ 55,
+ "Para desagradecerem aquilo com que os temos agraciado. Gozai, pois logo o sabereis!",
+ 56,
+ "Atribuem a coisas que desconhecem uma parte daquilo com que os agraciamos. Por Deus que rendereis contas, arespeito de tudo quanto forjáveis.",
+ 57,
+ "E atribuem filhas a Deus! Glorificado seja! E anseiam, para si, somente o que desejam.",
+ 58,
+ "Quando a algum deles é anunciado o nascimento de uma filha, o seu semblante se entristece e fica angustiado.",
+ 59,
+ "Oculta-se do seu povo, pela má notícia que lhe foi anunciada: deixá-la-á viver, envergonhado, ou a enterrará viva? Quem péssimo é o que julgam!",
+ 60,
+ "Àqueles que não crêem na outra vida aplica-se a pior similitude. A Deus, aplica-se a mais sublime similitude, porqueEle é o Poderoso, o Prudentíssimo.",
+ 61,
+ "Se Deus castigasse os humanos, por sua iniqüidade, não deixaria criatura alguma sobre a terra; porém, tolera-os até aotérmino prefixado. E quando o seu prazo se cumprir, não poderão atrasá-lo nem adiantá-lo numa só hora.",
+ 62,
+ "Atribuem a Deus as vicissitudes, e as línguas mentem, ao dizerem que deles será todo o bem; sem dúvida o que lhes estáreservado é o fogo infernal, e serão negligenciados.",
+ 63,
+ "Por Deus! Antes de ti enviamos mensageiros e outros povos; porém, Satanás abrilhantou as próprias obras (a esse povo) e hoje é o seu amo; mas sofrerão um doloroso castigo!",
+ 64,
+ "Só te revelamos o Livro, para que eles elucides as discórdias e para que seja orientação e misericórdia para os quecrêem.",
+ 65,
+ "Deus envia a água do céus, mediante a qual faz vivificar a terra, depois de a mesma haver sido árida. Nisso há sinal paraos que escutam.",
+ 66,
+ "E tendes exemplos nos animais; damos-vos para beber o que há em suas entranhas; provém da conjunção de sedimentos esangue, leite puro e saboroso para aqueles que o bebem.",
+ 67,
+ "E os frutos das tamareiras e das videiras, extraís bebida e alimentação. Nisto há sinal para os sensatos.",
+ 68,
+ "E teu Senhor inspirou as abelhas, (dizendo): Construí as vossas colmeias nas montanhas, nas árvores e nas habitações (dos homens).",
+ 69,
+ "Alimentai-vos de toda a classe de frutos e segui, humildemente, pelas sendas traçadas por vosso Senhor! Sai do seuabdômen um líquido de variegadas cores que constitui cura para os humanos. Nisto há sinal para os que refletem.",
+ 70,
+ "Deus é Quem vos cria, depois vos recolhe. Entre vós há quem chegará à senilidade, até ao ponto em que de nada selembrará do que tenha sabido. Sabei que Deus é Onipotente, Sapientíssimo.",
+ 71,
+ "Deus favoreceu, com a Sua mercê, uns mais do que outros; porém, os favorecidos não repartem os seus bens com os seusservos, para que com isso sejam iguais. Desagradecerão, acaso, as mercês de Deus!",
+ 72,
+ "Deus vos designou esposas de vossa espécie, e delas vos concedeu filhos e netos, e vos agraciou com todo o bem; crêem, porventura, na falsidade e descrêem das mercês de Deus?",
+ 73,
+ "E adoram, em vez de Deus, os que noa podem proporcionar-lhes nenhum sustento, nem dos céus, nem da terra, por nãoterem poder para isso.",
+ 74,
+ "Não compareis ninguém a Deus, porque Ele sabe e vós ignorais.",
+ 75,
+ "Deus põe em comparação um escravo subserviente, que nada possui, com um livre, que temos agraciado prodigamente eque esbanja íntima e manifestamente. Poderão, acaso, equiparar-se? Louvado seja Deus! Porém, a maioria o ignora.",
+ 76,
+ "Deus vos propões outra comparação, a de dois homens: um deles é mudo, incapaz, resultando numa carga para o seuamo; aonde quer que o envie não lhe traz benefício algum. Poderia, acaso, equiparar-se com o que ordena a justiça, e marchapela senda reta?",
+ 77,
+ "A Deus pertence o mistério dos céus e da terra. E o advento da Hora não tardará mais do que um pestanejar de olhos, oufração menor ainda; sabei que Deus é Onipotente.",
+ 78,
+ "Deus vos extraiu das entranhas de vossas mães, desprovidos de entendimento, proporcionou-vos os ouvidos, as vistas eos corações, para que Lhe agradecêsseis.",
+ 79,
+ "Não reparam, acaso, nos pássaros dóceis, que podem voar através do espaço? Ninguém senão Deus é capaz desustentá-los ali! Nisto há sinal para os fiéis.",
+ 80,
+ "Deus vos designou lares, para morada, e vos proporcionou tendas, feitas de peles de animais, as quais manejaisfacilmente no dia de vossa viagem, bem como no dia do vosso acampamento; e da sua lã, de sua fibra e de seus peloselaborais alfaias e artigos que duram por algum tempo.",
+ 81,
+ "E Deus vos proporcionou abrigos contra o sul em tudo quanto criou, destinou abrigos nos montes, concedeu-vosvestimentas para resguardar-vos do calor e do frio e armaduras para proteger-vos em vossos combates. Assim vos agracia, para que vos consagreis a Ele.",
+ 82,
+ "Porém, se se recusarem, sabe que a ti somente incumbe a proclamação da lúcida Mensagem.",
+ 83,
+ "Muitos tomam conhecimento da graça de Deus, e em seguida a negam, porque a sua maioria é iníqua.",
+ 84,
+ "Recorda-lhes o dia em que faremos surgir uma testemunha de cada povo; então não será permitido aos incrédulosescusarem-se, nem receberão qualquer favor.",
+ 85,
+ "E quando os iníquos virem o tormento, este em nada lhes será atenuado, nem serão tolerados.",
+ 86,
+ "E quando os idólatras virem os seus ídolos, dirão: Ó Senhor nosso, eis os nossos ídolos, aos quais implorávamos, emvez de a Ti! E os ídolos contestarão: Sois uns mentirosos!",
+ 87,
+ "Então, submeter-se-ão a Deus, e tudo quanto tenham forjado desvanecer-se-á.",
+ 88,
+ "Quanto aos incrédulos, que desencaminham os demais da senda de Deus, aumentar-lhe-emos o castigo, por suacorrupção.",
+ 89,
+ "Recorda-lhes o dia em que faremos surgir uma testemunha de cada povo para testemunhar contra os seus, e teapresentaremos por testemunha contra os teus. Temos-te revelado, pois, o Livro, que é uma explanação de tudo, éorientação, misericórdia e alvíssaras para os muçulmanos.",
+ 90,
+ "Deus ordena a justiça, a caridade, o auxílio aos parentes, e veda a obscenidade, o ilícito e a iniqüidade. Ele vos exorta aque mediteis.",
+ 91,
+ "Cumpri o pacto com Deus, se houverdes feito, e não perjureis, depois de haverdes jurado solenemente, uma vez quehaveis tomado Deus por garantia, porque Deus sabe tudo quanto fazeis.",
+ 92,
+ "E não imiteis aquela (mulher) que desfiava sua roca depois de havê-la enrolado profusamente; não façais juramentosfraudulentos (com segundas intenções), pelo fato de ser a vossa tribo mais numerosa do que outra. Deus somente vosexperimentará e sanará a vossa divergência no Dia da Ressurreição.",
+ 93,
+ "Se Deus quisesse, ter-vos-ia constituído em um só povo; porém, desvia quem quer e encaminha quem Lhe apraz. Porcerto que sereis interrogados sobre tudo quanto tiverdes feito.",
+ 94,
+ "Não façais juramentos fraudulentos, porque tropeçareis, depois de haverdes pisado firmemente, e provareis o infortúnio, por terdes desencaminhado os demais da senda de Deus, e sofrereis um severo castigo.",
+ 95,
+ "Não negocieis o pacto com Deus a vil preço, porque o que está ao lado de Deus é preferível para vós; se o soubésseis!",
+ 96,
+ "O que possuís é efêmero; por outra o que Deus possui é eterno. Em verdade, premiaremos os perseverantes com umarecompensa, de acordo com a melhor das suas ações.",
+ 97,
+ "A quem praticar o bem, seja homem ou mulher, e for fiel, concederemos uma vida agradável e premiaremos com umarecompensa, de acordo com a melhor das ações.",
+ 98,
+ "Quando leres o Alcorão, ampara-te em Deus contra Satanás, o maldito.",
+ 99,
+ "Porque ele não tem nenhuma autoridade sobre os fiéis, que confiam em seu Senhor.",
+ 100,
+ "Sua autoridade só alcança aqueles que a ele se submetem e aqueles que, por ele, são idólatras.",
+ 101,
+ "E quando ab-rogamos um versículo por outro - e Deus bem sabe o que revela - dizem-te: Só tu és dele o forjador! Porém, a maioria deles é insipiente.",
+ 102,
+ "Dize que, em verdade, o Espírito da Santidade tem-no revelado, de teu Senhor, para firmar os fiéis de orientação ealvíssaras aos muçulmanos.",
+ 103,
+ "Bem sabemos o que dizem: Foi um ser humano que lho ensinou (o Alcorão a Mohammad). Porém, o idioma daquele aquem eludem tê-lo ensinado é o persa, enquanto que a deste (Alcorão) é a elucidativa língua árabe.",
+ 104,
+ "Aqueles que não crerem nos versículos de Deus não serão guiados por Deus e sofrerão um doloroso castigo.",
+ 105,
+ "Os que forjam mentiras são aqueles que não crêem nos versículos de Deus. Tais são os mentirosos.",
+ 106,
+ "Aquele que renegar Deus, depois de ter crido - salvo quem houver sido obrigado a isso e cujo coração se mantenhafirme na fé - e aquele que abre seu coração à incredulidade, esses serão abominados por Deus e sofrerão um severo castigo.",
+ 107,
+ "Isso porque preferiram a vida terra à outra; e Deus não ilumina o povo incrédulo.",
+ 108,
+ "São aqueles aos quais Deus selou os corações, os ouvidos e os olhos; tais são os desatentos.",
+ 109,
+ "Sem dúvida alguma que serão os desventurados na outra vida.",
+ 110,
+ "E o teu Senhor é, para com aqueles que emigraram (de Makka) e que depois de terem sido torturados, combateram pelafé e perseveraram, por isso, Indulgente, Misericordiosíssimo.",
+ 111,
+ "Recorda-lhes o dia em que cada alma advogará pela própria causa e em que todo o ser será recompensado segundo oque houver feito e (ambos) não serão defraudados.",
+ 112,
+ "Deus exemplifica (osso) com o relato de uma cidade que vivia segura e tranqüila, à qual chegavam, de todas as partes, provisões em prodigalidade; porém, (seus habitantes) desagradeceram as mercês de Deus; então Ele lhes fez sofrer fome eterror extremos, pelo que haviam cometido.",
+ 113,
+ "Foi quando se apresentou a eles um mensageiro de sua raça e o desmentiram; porém, o castigo o surpreendeu, por causade sua iniqüidade.",
+ 114,
+ "Desfrutai, pois, de todo o lícito e bom com que Deus vos tem agraciado, e agradecei as mercês de Deus, se só a Eleadorais.",
+ 115,
+ "Ele só vos vedou a carniça, o sangue, a carne de suíno e tudo o que tenha sido sacrificado com a invocação de outronome que não seja o de Deus; porém, quem, sem intenção nem abuso, for compelido a isso, saiba que Deus é Indulgente, Misericordiosíssimo.",
+ 116,
+ "E não profirais falsidades, dizendo: Isto é lícito e aquilo é ilícito, para forjardes mentiras acerca de Deus. Sabei queaqueles que forjam mentiras acerca de Deus jamais prosperarão.",
+ 117,
+ "Seus prazeres são transitórios, e sofrerão um severo castigo.",
+ 118,
+ "Havíamos vedado aos judeus o que te mencionamos anteriormente. Porém, não os condenamos; sem dúvidacondenaram-se a si mesmos.",
+ 119,
+ "Quanto àqueles que cometem uma falta por ignorância e logo se arrependem e se encomendam a Deus, saiba que teuSenhor, depois disso, será Indulgente, Misericordiosíssimo.",
+ 120,
+ "Abraão era Imam e monoteísta, consagrado a Deus, e jamais se contou entre os idólatras.",
+ 121,
+ "Agradecido pelas Suas mercês, pois Deus o elegeu e o encaminhou até à senda reta.",
+ 122,
+ "E lhe concedemos um galardão neste mundo, e no outro estará entre os virtuosos.",
+ 123,
+ "E revelamos-te isto, para que adotes o credo de Abraão, o monoteísta, que jamais se contou entre os idólatras.",
+ 124,
+ "O sábado foi instituído para aqueles que disputaram a seu propósito (os judeus); mas teu Senhor julgará entre eles, devido às suas divergências, no Dia da Ressurreição.",
+ 125,
+ "Convoca (os humanos) à senda do teu Senhor com sabedoria e uma bela exortação; dialoga com eles de maneirabenevolente, porque teu Senhor é o mais conhecedor de quem se desvia da Sua senda, assim como é o mais conhecedor dosencaminhados.",
+ 126,
+ "Quando castigardes, fazei-o do mesmo modo como fostes castigados; porém, se fordes pacientes será preferível para osque forem pacientes.",
+ 127,
+ "Sê paciente, que a tua paciência será levada em conta por Deus; não te condoas deles, nem te angusties por suaconspirações,",
+ 128,
+ "Porque Deus está com os tementes, e com os benfeitores!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/17.json b/share/quran-json/TheQuran/pt/17.json
new file mode 100644
index 0000000..085ae48
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/17.json
@@ -0,0 +1,241 @@
+[
+ {
+ "id": "17",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Isra",
+ "translated_name": "The Night Journey",
+ "verse_count": 111,
+ "slug": "al-isra",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1573,
+ 1587,
+ 1585,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "Glorificado seja Aquele que, durante a noite, transportou o Seu servo, tirando-o da Sagrada Mesquita (em Makka) elevando-o à Mesquita de Alacsa (em Jerusalém), cujo recinto bendizemos, para mostrar-lhe alguns dos Nossos sinais. Sabeique Ele é Oniouvinte, o Onividente.",
+ 2,
+ "E concedemos o Livro a Moisés, (Livro esse) que transformamos em orientação para os israelitas, (dizendo-lhes): Nãoadoteis, além de Mim, outro guardião!",
+ 3,
+ "Ó geração daqueles que embarcamos com Noé! Sabei que ele foi um servo agradecido!",
+ 4,
+ "E lançamos, no Livro, um vaticínio aos israelitas: causareis corrupção duas vezes na terra e vos tornareis muitoarrogantes.",
+ 5,
+ "E quanto se cumpriu a primeira, enviamos contra eles servos Nossos poderosos, que adentraram seus lares e foi cumpridaa (Nossa) cominação.",
+ 6,
+ "Logo vos concedemos a vitória sobre eles, e vos agraciamos com bens e filhos, e vos tornamos mais numerosos.",
+ 7,
+ "Se praticardes o bem, este reverte-se-á em vosso próprio benefício; se praticardes o mal, será em prejuízo vosso. Equando se cumpriu a (Nossa) Segunda cominação, permitimos (aos vossos inimigos afligir-vos e invadir o Templo, talcomo haviam invadido da primeira vez, e arrasar totalmente com tudo quanto havíeis conquistado.",
+ 8,
+ "Pode ser que o vosso Senhor tenha misericórdia de vós; porém, se reincidirdes (no erro), Nós reincidiremos (no castigo) e faremos do inferno um cárcere para os incrédulos.",
+ 9,
+ "Em verdade, este Alcorão encaminha à senda mais reta e anuncia aos fiéis benfeitores que obterão uma granderecompensa.",
+ 10,
+ "E para aqueles que negam a outra vida, porém, temos preparado um doloroso castigo.",
+ 11,
+ "O homem impreca pelo mal, ao invés de suplicar pelo bem, porque o homem é impaciente.",
+ 12,
+ "Fizemos da noite e do dia dois exemplos; enquanto obscurecemos o sinal da noite, fizemos o sinal do dia parailuminar-vos, para que procurásseis a graça de vosso Senhor, e para que conhecêsseis o número dos anos e o seu cômputo; eexplanamos claramente todas as coisas.",
+ 13,
+ "E casa homem lhe penduramos ao pescoço o seu destino e, no Dia da Ressurreição, apresentar-lhes-emos um livro, queencontrará aberto.",
+ 14,
+ "(E lhe diremos): Lê o teu livro! Hoje bastarás tu mesmo para julgar-te.",
+ 15,
+ "Quem se encaminha, o faz em seu benefício; quem se desvia, o faz em seu prejuízo, e nenhum pecador arcará com a culpaalheia. Jamais castigamos (um povo), sem antes termos enviado um mensageiro.",
+ 16,
+ "E se pensamos em destruir uma cidade, primeiramente enviamos uma ordem aos seus habitantes abastados que estão nelacorromperem os Nossos mandamentos; esta (cidade), então, merecerá o castigo; aniquilá-la-emos completamente.",
+ 17,
+ "Quantas gerações temos exterminado depois de Noé! Porém, basta tão-somente que teu Senhor conheça e veja ospecados dos Seus servos.",
+ 18,
+ "A quem quiser as coisas transitórias (deste mundo), atendê-lo-emos ao inferno, em que entrará vituperado, rejeitado.",
+ 19,
+ "Aqueles que anelarem a outra vida e se esforçarem para obtê-la, e forem fiéis, terão os seus esforços retribuídos.",
+ 20,
+ "Tanto a estes como àqueles agraciamos com as dádivas do teu Senhor; porque as dádivas do teu Senhor jamais foramnegadas a alguém.",
+ 21,
+ "Repara em como temos dignificado uns mais do que outros. Porém, na outra vida, há maiores dignidades e maisdistinção.",
+ 22,
+ "Não tomes, junto com Deus (ó humano) outra divindade, porque serás vituperado, aviltado.",
+ 23,
+ "O decreto de teu Senhor é que não adoreis senão a Ele; que sejais indulgentes com vossos pais, mesmo que a velhicealcance um deles ou ambos, em vossa companhia; não os reproveis, nem os rejeiteis; outrossim, dirigi-lhes palavrashonrosas.",
+ 24,
+ "E estende sobre eles a asa da humildade, e dize: Ó Senhor meu, tem misericórdia de ambos, como eles tiverammisericórdia de mim, criando-me desde pequenino!",
+ 25,
+ "Vosso Senhor é mais sabedor do que ninguém do que há em vossos corações. Se sois virtuosos, sabei que Ele éIndulgente para com os contritos.",
+ 26,
+ "Concede a teu parente o que lhe é devido, bem como ao necessitado e ao viajante, mas não sejas perdulário,",
+ 27,
+ "Porque os perdulários são irmãos dos demônios, e o demônio foi ingrato para com o seu Senhor.",
+ 28,
+ "Porém, se te absténs (ó Mohammad) de privar com eles com o fim de alcançares a misericórdia de teu Senhor, a qualalmejas, fala-lhes afetuosamente.",
+ 29,
+ "Não cerres a tua mão excessivamente, nem a abras completamente, porque te verás censurado, arruinado.",
+ 30,
+ "Teu Senhor prodigaliza e provê, na medida exata, a Sua mercê a quem Lhe apraz, porque está bem inteirado e éObservador dos Seus servos.",
+ 31,
+ "Não mateis vossos filhos por temor à necessidade, pois Nós os sustentaremos, bem como a vós. Sabei que o seuassassinato é um grave delito.",
+ 32,
+ "Evitai a fornicação, porque é uma obscenidade e um péssimo exemplo!",
+ 33,
+ "Não mateis o ser que Deus vedou matar, senão legitimamente; mas, quanto a quem é morto injustamente, facultamos aoseu parente a represália; porém, que não se exceda na vingança, pois ele está auxiliado (pela lei).",
+ 34,
+ "Não disponhais do patrimônio do órfão senão da melhor forma, até que ele chegue à puberdade, e cumpri oconvencionado, porque o convencionado será reivindicado.",
+ 35,
+ "E quanto instituirdes a medida, fazei-o corretamente; pesai na balança justa, porque isto é mais vantajoso e de melhorconseqüência.",
+ 36,
+ "Não sigas (ó humano) o que ignoras, porque pelo teu ouvido, pela tua vista, e pelo teu coração, por tudo isto seráresponsável!",
+ 37,
+ "E não te conduzas com jactância na terra, porque jamais poderás fendê-la, nem te igualar, em altura, às montanhas.",
+ 38,
+ "De todas as coisas, a maldade é a mais detestável, ante o teu Senhor.",
+ 39,
+ "Eis o que da sabedoria te inspirou teu Senhor: Não tomes, junto com Deus, outra divindade, porque será arrojado noinferno, censurado, rejeitado.",
+ 40,
+ "Porventura, vosso Senhor designou para vós os varões e escolheu para Si, dentre os anjos, as filhas? Sabei que proferisuma grande blasfêmia.",
+ 41,
+ "Temos reiterado os Nossos conselhos neste Alcorão, para que se persuadam; porém, isso não logra fazer mais do queaumentar-lhes a aversão.",
+ 42,
+ "Dize-lhes: Se, como dize, houvesse, juntamente com Ele, outros deuses, teriam tratado de encontrar um meio decontrapor-se ao Soberano do Trono.",
+ 43,
+ "Glorificado e sublimemente exaltado seja Ele, por tudo quanto blasfemam!",
+ 44,
+ "Os setes céus, a terra, e tudo quanto neles existe glorificam-No. Nada existe que não glorifique os Seus louvores! Porém, não compreendeis as suas glorificações. Sabei que Ele é Tolerante, Indulgentíssimo.",
+ 45,
+ "E, quando recitas o Alcorão, interpomos um véu invisível entre ti e aqueles que não crêem na outra vida.",
+ 46,
+ "E sigilamos os corações para que não o compreendessem, e ensurdecemos os seus ouvidos. E, quando, no Alcorão, mencionas unicamente teu Senhor, voltam-te as costas desdenhosamente.",
+ 47,
+ "Sabemos, melhor do que ninguém, quando vêm escutar-te e porque o fazem; e quando se encontram em confidência, osiníquos dizem: Não seguis senão um homem enfeitiçado!",
+ 48,
+ "Olha com o que te comparam! Porém, assim se desviam, e nunca encontrarão senda alguma.",
+ 49,
+ "Dizem: Quê! Quando estivermos reduzidos a ossos e pó, seremos, acaso reencarnados em uma nova criação?",
+ 50,
+ "Dize-lhes: Ainda que fôsseis pedras ou ferro,",
+ 51,
+ "Ou qualquer outra criação inconcebível às vossas mentes (seríeis ressuscitados). Perguntarão, então: Quem nosressuscitará? Respondeu-lhes: Quem vos criou da primeira vez! Então, meneando a cabeça, dirão: Quando ocorrerá isso? Responde-lhes: Talvez seja logo!",
+ 52,
+ "Será no dia em que Ele vos chamar e em que vós O atendereis, glorificando os Seus louvores; e vos parecerá que nãopermanecestes ali senão pouco tempo.",
+ 53,
+ "E dize aos Meus servos que digam sempre o melhor, porque Satanás causa dissensões entre eles, pois Satanás é uminimigo declarado do homem.",
+ 54,
+ "Vosso Senhor vos conhece melhor do que ninguém. Se Lhe apraz, apiada-Se de vós e, se quer, castiga-vos. Não teenviamos como guardião deles.",
+ 55,
+ "Teu Senhor conhece melhor do que ninguém aqueles que estão nos céus e na terra. Temos preferido a uns profetas sobreoutros, e concedemos os Salmos a Davi.",
+ 56,
+ "Dize-lhes: Invocai os que pretendeis em vez d'Ele! Porém não poderão vos livrar das adversidades, nem as modificar.",
+ 57,
+ "Aqueles que invocam anseiam por um meio que os aproxime do seu Senhor e esperam a Sua misericórdia e temem o Seucastigo, porque o castigo do teu Senhor é temível!",
+ 58,
+ "Não existe cidade alguma que não destruiremos antes do Dia da Ressurreição ou que não a castigaremos severamente; isto está registrado no Livro.",
+ 59,
+ "E não enviamos os sinais somente porque os primitivos os desmentiram. Havíamos apresentado ao povo de Tamud acamela como um sinal evidente, e eles a trataram erradamente; porém, jamais enviamos sinais, senão para adverti-los.",
+ 60,
+ "E quanto te dissemos: Teu Senhor abrange toda a humanidade. A visão que te temos mostrado não foi senão uma provapara os humanos, o mesmo que a árvore maldita no Alcorão. Nós o advertimos! Porém, isto não fez mais do que aumentar asua grande transgressão.",
+ 61,
+ "E quando dissemos aos anjos: Prostrai-vos ante Adão!, prostraram-se todos, menos Lúcifer, que disse: Terei deprostrar-me ante quem criaste do barro?",
+ 62,
+ "E continuou: Atenta para este, que preferiste a mim! Juro que se me tolerares até o Dia da Ressurreição, salvo unspoucos, apossar-me-ei da sua descendência!",
+ 63,
+ "Disse-lhe (Deus): Vai-te, (Satanás)! E para aqueles que te seguirem, o inferno será o castigo bem merecido!",
+ 64,
+ "Seduze com a tua voz aqueles que puderes, dentre eles; aturde-os com a tua cavalaria e a tua infantaria; associa-te a elesnos bens e nos filhos, e faze-lhes promessas! Qual! Satanás nada lhes promete, além de quimeras.",
+ 65,
+ "Não terás autoridade alguma sobre os Meus servos, porque basta o teu Senhor para Guardião.",
+ 66,
+ "Vosso Senhor é Quem faz singrar o mar, os navios para que procureis algo da Sua graça, porque Ele é Misericordiosopara convosco.",
+ 67,
+ "E quando, no mar, vos açoita a adversidade, aqueles que invocais além d'Ele desvanecem-se; porém, quando vos salva, conduzindo-vos à terra, negai-Lo, porque é próprio do homem ser ingrato.",
+ 68,
+ "Estais, acaso, seguros de que Ele não fará a terra tragar-vos ou de que não desencadeará sobre vós um furacão, sem quepossais encontrar guardião algum?",
+ 69,
+ "Ou estais, então, seguros de que não vos devolverá novamente ao mar e de que não desencadeará sobre vós umatormenta que vos afogará, por vossa ingratidão, sem que possais encontrar quem vos aproxime de Nós?",
+ 70,
+ "Enobrecemos os filhos de Adão e os conduzimos pela terra e pelo mar; agraciamo-los com todo o bem, e preferimosenormemente sobre a maior parte de tudo quanto criamos.",
+ 71,
+ "Um dia convocaremos todos os seres humanos, com os seus (respectivos) imames. E aqueles a quem forem entregues osseus livros na destra, lê-los-ão e não serão defraudados no mínimo que seja.",
+ 72,
+ "Porém, quem estiver cego neste mundo estará cego no outro, e mais desencaminhado ainda!",
+ 73,
+ "Se pudessem, afastar-te-iam do que te temos inspirado para forjares algo diferente. Então, aceitar-te-iam por amigo.",
+ 74,
+ "E se não te tivéssemos firmado, ter-te-ias inclinado um pouco para eles.",
+ 75,
+ "Neste caso, ter-te-íamos duplicado (o castigo) nesta vida e na outra, e não terias encontrado quem te defendesse de Nós.",
+ 76,
+ "Conspiraram atemorizar-te na terra (de Makka), com o fito de te expulsarem dela; porém, não permaneceriam muitotempo ali, depois de ti.",
+ 77,
+ "Tal é a lei que havíamos enviado, antes de ti, aos Nossos mensageiros, e não acharás mudança em Nossa lei.",
+ 78,
+ "Observa a oração, desde o declínio do sol até à chegada da noite, e cumpre a recitação matinal, porque é sempretestemunhada.",
+ 79,
+ "E pratica, durante a noite, orações voluntárias; talvez assim teu Senhor te conceda uma posição louvável.",
+ 80,
+ "E dize: Ó Senhor meu, faze com que eu entre com honradez e saia com honradez; concede-me, de Tua parte, umaautoridade para socorrer(-me).",
+ 81,
+ "Dize também: Chegou a Verdade, e a falsidade desvaneceu-se, porque a falsidade é pouco durável.",
+ 82,
+ "E revelamos, no Alcorão, aquilo que é bálsamo e misericórdia para os fiéis; porém, isso não fará mais do que aumentara perdição dos iníquos.",
+ 83,
+ "Mas, quando agraciamos o homem, ele Nos desdenha e se envaidece; em troca, quando o mal o açoita, ei-lodesesperado.",
+ 84,
+ "Dize-lhes: Cada qual age a seu modo; porém, vosso Senhor conhece mais do que ninguém o melhor encaminhado.",
+ 85,
+ "Perguntar-te-ão sobre o Espírito. Responde-lhes: O Espírito está sob o comando do meu Senhor, e só vos tem sidoconcedida uma ínfima parte do saber.",
+ 86,
+ "Se quiséssemos, poderíamos anular tudo quanto te temos inspirado, e não encontrarias, então, defensor algum, ante Nós;",
+ 87,
+ "Porém, (tal não foi anulado) por misericórdia de teu Senhor. Sua graça para contigo é imensa.",
+ 88,
+ "Dize-lhes: Mesmo que os humanos e os gênios se tivessem reunido para produzir coisa similar a este Alcorão, jamaisteriam feito algo semelhante, ainda que se ajudassem mutuamente.",
+ 89,
+ "Temos exposto neste Alcorão toda a sorte de exemplos para os humanos, porém, a maioria dos humanos o nega.",
+ 90,
+ "E dizem: Não creremos em ti, a menos que nos faças brotar um manancial da terra,",
+ 91,
+ "Ou que possuas um jardim de tamareiras e videiras, em meio ao qual faças brotar rios abundantes.",
+ 92,
+ "Ou que faças cair o céus em pedaços sobre nós, como disseste (que aconteceria), ou nos apresentes Deus e os anhos empessoa,",
+ 93,
+ "Ou que possuas uma casa adornada com ouro, ou que escales o céus, pois jamais creremos na tua ascensão, até que nosapresentes um livro que possamos ler. Dize-lhes: Glorificado seja o meu Senhor! Sou, porventura, algo mais do que umMensageiro humano?",
+ 94,
+ "Que foi que impediu os humanos de crerem, quando lhes chegou a orientação? Disseram: Acaso, Deus teria enviado porMensageiro um mortal?",
+ 95,
+ "Responde-lhes: Se na terra houvesse anjos, que caminhassem tranqüilos, Ter-lhes-íamos enviado do céu um anjo pormensageiro.",
+ 96,
+ "Dize-lhes: Basta-me Deus por Testemunha, entre vós e mim, porque Ele está bem inteirado de Seus servos e éOnividente.",
+ 97,
+ "Aquele que Deus encaminhar estará bem encaminhado; e àqueles que deixar que se extraviem, jamais lhes encontrarásprotetor, em vez d'Ele. No Dia da Ressurreição os congregaremos, prostrados sobre os seus rostos, cegos, surdos e mudos; oinferno será a sua morada e, toda a vez que se extinguir a sua chama, avivá-la-emos.",
+ 98,
+ "Isso será o seu castigo, porque negam os Nosso versículos e dizem: Quê! Quando estivermos reduzidos a ossos e pó, seremos, acaso, reencarnados em uma nova criação?",
+ 99,
+ "Não reparam em que Deus, Que criou os céus e a terra, é capaz de criar outros seres semelhantes a eles, e fixar-lhes umdestino indubitável? Porém, os iníquos negam tudo.",
+ 100,
+ "Dize-lhes: Se possuísseis os tesouros da misericórdia de meu Senhor, vós os mesquinharíeis, por temor de gastá-los, pois o homem foi sempre avaro.",
+ 101,
+ "Concedemos a Moisés nove sinais evidentes - pergunta, pois, aos israelitas, sobre isso -; então o Faraó lhe disse: Creio, ó Moisés, que estás enfeitiçado!",
+ 102,
+ "Moisés lhe disse: Tu bem sabes que ninguém, senão o Senhor dos céus e da terra, revelou estas evidências, e por certo, ó Faraó, creio que estás condenado à perdição.",
+ 103,
+ "E o Faraó quis bani-los da terra; porém, afogamo-lo, com os que com ele estavam.",
+ 104,
+ "E depois disso dissemos aos israelitas: Habitai a Terra, porque, quando chegar a Segunda cominação, reunir-vos-emosem grupos heterogêneos.",
+ 105,
+ "E o temos revelado (o Alcorão) em verdade e, em verdade, revelamo-lo e não te enviamos senão como alvissareiro eadmoestador.",
+ 106,
+ "É um Alcorão que dividimos em partes, para que o recites paulatinamente aos humanos, e que revelamos por etapas.",
+ 107,
+ "Dize-lhes: Quer creiais nele ou não, sabei que aqueles que receberam o conhecimento, antes dele, quando lhos érecitado, caem de bruços, prostrando-se.",
+ 108,
+ "E dizem: Glorificado seja o nosso Senhor, porque a Sua promessa foi cumprida!",
+ 109,
+ "E caem de bruço, chorando, e isso lhes aumenta a humildade.",
+ 110,
+ "Dize-lhes: Quer invoqueis a Deus, quer invoqueis o Clemente, sabei que d'Ele são os mais sublimes atributos! Nãoprofiras (ó Mohammad) a tua oração em voz muito alta, nem em vos demasiado baixa, mas procura um tom médio, entreambas.",
+ 111,
+ "E dize: Louvado seja Deus, que jamais teve filho algum, tampouco teve parceiro algum na Soberania, nem (necessita) de ninguém para protegê-Lo da humilhação, e é exaltado com toda a magnificência."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/18.json b/share/quran-json/TheQuran/pt/18.json
new file mode 100644
index 0000000..bf5b1a4
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/18.json
@@ -0,0 +1,237 @@
+[
+ {
+ "id": "18",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Kahf",
+ "translated_name": "The Cave",
+ "verse_count": 110,
+ "slug": "al-kahf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1603,
+ 1607,
+ 1601
+ ]
+ },
+ 1,
+ "Louvado seja Deus que revelou o Livro ao Seu servo, no qual não colocou contradição alguma.",
+ 2,
+ "Fê-lo reto, para admoestar do Seu castigo e alvissarar aos fiéis que praticam o bem que obterão uma boa recompensa,",
+ 3,
+ "Da qual desfrutarão eternamente,",
+ 4,
+ "E para admoestar aqueles que dizem: Deus teve um filho!",
+ 5,
+ "A despeito de carecerem de conhecimento a tal respeito; o mesmo tendo acontecido com seus antepassados. É umablasfêmia o que proferem as suas bocas; não dizem senão mentiras!",
+ 6,
+ "É possível que te mortifiques de pena por causa deles, se não crerem nesta Mensagem.",
+ 7,
+ "Tudo quanto existe sobre a terra, criamo-lo para ornamentá-la, a fim de os experimentarmos e vermos aqueles, dentreeles, que melhor se comportam.",
+ 8,
+ "Em verdade, tudo quanto existe sobre ela, reduzi-lo-emos a cinza e solo seco.",
+ 9,
+ "Pensas, acaso, que os ocupantes da caverna e da inscrição forma algo extraordinário entre os Nossos sinais?",
+ 10,
+ "Recorda de quando um grupo de jovens se refugiou na caverna, dizendo: Ó Senhor nosso, concede-nos Tua misericórdia, e reserva-nos um bom êxito em nossa empresa!",
+ 11,
+ "Adormecemo-los na caverna durante anos.",
+ 12,
+ "Então despertamo-los, para assegurar-Nos de qual dos dois grupos sabia calcular melhor o tempo que haviampermanecido ali.",
+ 13,
+ "Narramos-te a sua verdadeira história: Eram jovens, que acreditavam em seu Senhor, pelo que os aumentamos emorientação.",
+ 14,
+ "E robustecemos os seus corações; e quando se ergueram, dizendo: Nosso Senhor é o Senhor dos céus e da terra e nuncainvocaremos nenhuma outra divindade em vez d'Ele; porque, com isso, proferiríamos extravagâncias.",
+ 15,
+ "Estes povos adoram outras divindades, em vez d'Ele, embora não lhes tenha sido concedida autoridade evidente algumapara tal. Haverá alguém mais iníquo do que quem forja mentiras acerca de Deus?",
+ 16,
+ "Quando vos afastardes dele, com tudo quanto adoram, além de Deus, refugiai-vos na caverna; então, vosso Senhor vosagraciará com a Sua misericórdia e vos reservará um feliz êxito em vosso empreendimento.",
+ 17,
+ "E verias o sol, quando se elevava, resvalar a caverna pela direita e, quando se punha, deslizar pela esquerda, enquantoeles ficavam no seu espaço aberto. Este é um dos sinais de Deus. Aquele que Deus encaminhar estará bem encaminhado; poroutra, àquele que desviar, jamais poderás achar-lhe protetor que o guie.",
+ 18,
+ "(Se os houvesses visto), terias acreditado que estavam despertos, apesar de estarem dormindo, pois Nós os virávamos, ora para a direita, ora para a esquerda, enquanto o seu cão dormia, com as patas estendidas, na entrada da caverna. Sim, seos tivesses visto, terias retrocedido e fugido, transido de espanto!",
+ 19,
+ "E eis que os despertamos para que se interrogassem entre si. Um deles disse: Quanto tempo permanecestes aqui? Responderam: Estivemos um dia, ou parte dele! Outros disseram: Nosso Senhor sabe melhor do que ninguém o quantopermanecestes. Enviai à cidade alguns de vós com este dinheiro; que procure o melhor alimento e vos traga uma parte; queseja afável e não inteire ninguém a vosso respeito,",
+ 20,
+ "Porque, se vos descobrirem, apedrejar-vos-ão ou vos coagirão a abraçar seu credo e, então, jamais prosperareis.",
+ 21,
+ "Assim revelamos o seu caso às pessoas, para que se persuadissem de que a promessa de Deus é verídica e de que aHora é indubitável. E quando estes discutiram entre si a questão, disseram: Erigi um edifício, por cima deles; seu Senhor é omais sabedor disso. Aqueles, cujas opiniões prevalecia, disseram: Erigi um templo, por cima da caverna!",
+ 22,
+ "Alguns diziam: Eram três, e o cão deles perfazia um total de quatro. Outros diziam: Eram cinco, e o cão totalizava seis, tentando, sem dúvida, adivinhar o desconhecido. E outros, ainda, diziam: Eram sete, oito com o cão. Dize: Meu Senhorconhece melhor do que ninguém o seu número e só poucos o desconhece! Não discutais, pois, a respeito disto, a menos queseja de um modo claro e não inquiras, sobre eles, ninguém",
+ 23,
+ "Jamais digas: Deixai, que farei isto amanhã,",
+ 24,
+ "A menos que adiciones: Se Deus quiser! Recorda teu Senhor quando esqueceres, e dize: É possível que meu Senhor meencaminhe para o que está mais próximo da verdade.",
+ 25,
+ "Eis que permaneceram na caverna trezentos e nove anos.",
+ 26,
+ "Dize-lhes: Deus sabe melhor do que ninguém o quanto permaneceram, porque é Seu o mistério dos céus e da terra. QuãoVidente e quão Ouvinte é! Eles têm, em vez d'Ele, protetor algum, e Ele não divide com ninguém o seu comando.",
+ 27,
+ "Recita, pois, o que te foi revelado do Livro de teu Senhor, cujas palavras são imutáveis; nunca acharás amparo forad'Ele.",
+ 28,
+ "Sê paciente, juntamente com aqueles que pela manhã e à noite invocam seu Senhor, anelando contemplar Seu Rosto. Nãonegligencies os fiéis, desejando o encanto da vida terrena e não escutes aquele cujo coração permitimos negligenciar o atode se lembrar de Nós, e que se entregou aos seus próprios desejos, excedendo-se em suas ações.",
+ 29,
+ "Dize-lhes: A verdade emana do vosso Senhor; assim, pois, que creia quem desejar, e descreia quem quiser. Preparamospara os iníquos o fogo, cuja labareda os envolverá. Quando implorarem por água, ser-lhes-á dada a beber água semelhante ametal em fusão, que lhes assará os rostos. Que péssima bebida! Que péssimo repouso!",
+ 30,
+ "Em troca, os fiéis, que praticam o bem - certamente que não frustraremos a recompensa do benfeitor -,",
+ 31,
+ "Obterão os jardins do Éden, abaixo dos quais correm os rios, onde usarão braceletes de ouro, vestirão roupas verdes detafetá e brocado, e repousarão sobre tronos elevados. Que ótima recompensa e que feliz repouso!",
+ 32,
+ "Expõe-lhes o exemplo de dois homens: a um deles concedemos dois parreirais, que rodeamos de tamareiras e, entreambos, dispusemos plantações.",
+ 33,
+ "Ambos os parreirais frutificaram, sem em nada falharem, e no meio deles fizemos brotar um rio.",
+ 34,
+ "E abundante era a sua produção. Ele disse ao seu vizinho: Sou mais rico do que tu e tenho mais poderio.",
+ 35,
+ "Entrou em seu parreiral num estado (mental) injusto para com a sua alma. Disse: Não creio que (este parreiral) jamaispereça,",
+ 36,
+ "Como tampouco creio que a Hora chegue! Porém, se retornar ao meu Senhor, serei recompensado com outra dádivamelhor do que esta.",
+ 37,
+ "Seu vizinho lhe disse, argumentando: Porventura negas Quem te criou, primeiro do pó, e depois de esperma e logo temoldou como homem?",
+ 38,
+ "Quanto a mim, Deus é meu Senhor e jamais associarei ninguém ao meu Senhor.",
+ 39,
+ "Por que quando entrastes em teu parreiral não dissestes: Seja o que Deus quiser; não existe poder senão de Deus! Mesmoque eu seja inferior a ti em bens e filhos,",
+ 40,
+ "É possível que meu Senhor me conceda algo melhor do que o teu parreiral e que, do céu, desencadeie sobre o teu umacentelha, que o converta em um terreno de areia movediça.",
+ 41,
+ "Ou que a água seja totalmente absorvida e nunca mais possa recuperá-la.",
+ 42,
+ "E foram arrasadas as suas propriedades; e (o incrédulo, arrependido) retorcia, então, as mãos, pelo que nelas haviainvestido, e, vendo-as revolvidas, dizia: Oxalá não tivesse associado ninguém ao meu Senhor!",
+ 43,
+ "E não houve ajuda que o defendesse de Deus, nem pôde salvar-se.",
+ 44,
+ "Assim, a proteção só incumbe ao Verdadeiro Deus, porque Ele é o melhor Recompensador e o melhor Destino.",
+ 45,
+ "Expõe-lhes o exemplo da vida terrena, que se assemelha à água, que enviamos do céu, a qual se mescla com as plantasda terra, as quais se convertem em feno, que os ventos disseminam. Sabei que Deus prevalece sobre todas as coisas.",
+ 46,
+ "Os bens e os filhos são o encanto da vida terrena; por outra, as boas ações, perduráveis, ao mais meritórias e maisesperançosas, aos olhos do teu Senhor.",
+ 47,
+ "E recorda-lhes o dia em que moveremos as montanhas, quando então verás a terra arrasada, e os congregaremos, sem seomitir nenhum deles.",
+ 48,
+ "Então serão apresentados em filas, ante o seu Senhor, que lhes dirá: Agora compareceis ante Nós, tal como vos criamospela primeira vez, embora pretendêsseis que jamais vos fixaríamos este comparecimento.",
+ 49,
+ "O Livro-registro será exposto. Verás os pecadores atemorizados por seu conteúdo, e dirão: Ai de nós! Que significa esteLivro? Não omite nem pequena, nem grande falta, senão que as enumera! E encontrarão registrado tudo quanto tiverem feito. Teu Senhor não defraudará ninguém.",
+ 50,
+ "E (lembra-te) de quando dissemos aos anjos: Prostrai-vos ante Adão! Prostraram-se todos, menos Lúcifer, que era umdos gênios, e que se rebelou contra a ordem do seu Senhor. Tomá-los-íeis, pois, juntamente com a sua prole, por protetores, em vez de Mim, apesar de serem vossos inimigos? Que péssima troca a dos iníquos!",
+ 51,
+ "Não os tomei por testemunhas na criação dos céus e da terra, nem na sua própria criação, porque jamais tomei porassistentes os sedutores.",
+ 52,
+ "E no dia em que Ele disser (aos idólatras): Chamais os Meus pretendido parceiros!, chamá-los-ão; porém, estes nãoatenderão a eles, pois lhes teremos imposto um abismo.",
+ 53,
+ "Os pecadores divisarão o fogo, estarão cientes de que cairão nele, porém não acharão escapatória.",
+ 54,
+ "Temos reiterado, neste Alcorão, toda a classe de exemplos para os humanos; porém, o homem é o litigioso maisrecalcitrante (que existe).",
+ 55,
+ "E o que impediu os humanos de crerem, quando lhes chegou a orientação, de implorarem o perdão do seu Senhor? Desejam, acaso, que os surpreenda o escarmento dos primitivos ou lhes sobrevenha abertamente o castigo?",
+ 56,
+ "Jamais enviamos mensageiros, a não ser como alvissareiros e admoestadores; porém, os incrédulos disputam com vãosargumentos a falsidade, para com ela refutarem a verdade; e tomam os Meus versículos e as Minhas advertências comoobjeto de escárnio.",
+ 57,
+ "E haverá alguém mais iníquo do que quem, ao ser exortado com os versículos do seu Senhor, logo os desdenha, esquecendo-se de tudo quanto tenha cometido? Em verdade, sigilamos as suas mentes para que não os compreendessem, eensurdecemos os seus ouvidos; e ainda que os convides à orientação, jamais se encaminharão.",
+ 58,
+ "Porém, teu Senhor é Indulgente, Misericordiosíssimo. Se ele os punisse pelo que cometeram, acelerar-lhes-ia o castigo; porém, terão um prazo, depois do qual jamais terão escapatória.",
+ 59,
+ "Tais eram as cidades que, pela iniqüidade dos seus habitantes, exterminamos, e prefixamos um término para isso.",
+ 60,
+ "Moisés disse ao seu ajudante: Não descansarei até alcançar a confluência dos dois mares, ainda que para isso tenha deandar anos e anos.",
+ 61,
+ "Mas quando ambos se aproximaram da confluência dos dois mares, haviam esquecido o seu peixe, o qual seguira, serpeando, seu rumo até ao mar.",
+ 62,
+ "E quando a alcançaram, Moisés disse ao seu servo: Providencia nosso alimento, pois sofremos fadigas durante a nossaviagem.",
+ 63,
+ "Respondeu-lhe: Lembras-te de quando nos refugiamos junto à rocha? Eu me esqueci do peixe - e ninguém, senão Satanás, me fez esquecer de me recordar! - Creio que ele tomou milagrosamente o rumo do mar.",
+ 64,
+ "Disse-lhe: Eis o que procurávamos! E voltaram pelo mesmo caminho.",
+ 65,
+ "E encontraram-se comum dos Nossos servos, que havíamos agraciado com a Nosso misericórdia e iluminado com aNossa ciência.",
+ 66,
+ "E Moisés lhe disse: Posso seguir-te, para que me ensines a verdade que te foi revelada?",
+ 67,
+ "Respondeu-lhe: Tu não serias capaz de ser paciente para estares comigo.",
+ 68,
+ "Como poderias ser paciente em relação ao que não compreendes?",
+ 69,
+ "Moisés disse: Se Deus quiser, achar-me-á paciente e não desobedecerei às tuas ordens.",
+ 70,
+ "Respondeu-lhe: Então segue-me e não me perguntes nada, até que eu te faça menção disso.",
+ 71,
+ "Então, ambos se puseram a andar, até embarcarem em um barco, que o desconhecido perfurou. Moisés lhe disse: perfuraste-o para afogar seus ocupantes? Sem dúvida que cometeste um ato insólito!",
+ 72,
+ "Retrucou-lhe: Não te disse que és demasiado impaciente para estares comigo?",
+ 73,
+ "Disse-lhe: Desculpa-me por me ter esquecido, mas não me imponhas uma condição demasiado difícil.",
+ 74,
+ "E ambos se puseram a andar, até que encontraram um jovem, o qual (o companheiro de Moisés) matou. Disse-lhe entãoMoisés: Acabas de matar um inocente, sem que tenha causado morte a ninguém! Eis que cometeste uma ação inusitada.",
+ 75,
+ "Retrucou-lhe: Não te disse que não poderás ser paciente comigo?",
+ 76,
+ "Moisés lhe disse: Se da próxima vez voltar a perguntar algo, então não permitas que te acompanhe, e me desculpa.",
+ 77,
+ "E ambos se puseram a andar, até que chegaram a uma cidade, onde pediram pousada aos seus moradores, os quais senegaram a hospedá-los. Nela, acharam um muro que estava a ponto de desmoronar e o desconhecido o restaurou. Moisés lhedisse então: Se quisesses, poderia exigir, recompensa por isso.",
+ 78,
+ "Disse-lhe: Aqui nós nos separamos; porém, antes, inteirar-te-ei da interpretação, porque tu és demasiado impacientepara isso:",
+ 79,
+ "Quanto ao barco, pertencia aos pobres pescadores do mar e achamos por bem avariá-lo, porque atrás dele vinha um reique se apossava, pela força, de todas as embarcações.",
+ 80,
+ "Quanto ao jovem, seus pais eram fiéis e temíamos que os induzisse à transgressão e à incredulidade.",
+ 81,
+ "Quisemos que o seu Senhor os agraciasse, em troca, com outro puro e mais afetuoso.",
+ 82,
+ "E quanto ao muro, pertencia a dois jovens órfãos da cidade, debaixo do qual havia um tesouro seu. Seu pai era virtuoso eteu Senhor tencinou que alcançassem a puberdade, para que pudessem tirar o seu tesouro. Isso é do beneplácito de teuSenhor. Não o fiz por minha própria vontade. Eis a explicação daquilo em relação ao qual não foste paciente.",
+ 83,
+ "Interrogar-te-ão a respeito de Zul-Carnain. Dize-lhes: Relatar-vos-ei algo de sua história:",
+ 84,
+ "Consolidamos o seu poder na terra e lhe proporcionamos o meio de tudo.",
+ 85,
+ "E seguiu um rumo,",
+ 86,
+ "Até que, chegando ao poente do sol, viu-o pôr-se numa fonte fervente, perto da qual encontrou um povo. Dissemos-lhe: Ó Zul Carnain, tens autoridade para castigá-los ou tratá-los com benevolência.",
+ 87,
+ "Disse: Castigaremos o iníquo; logo retornará ao seu Senhor, que o castigará severamente.",
+ 88,
+ "Quanto ao crente que praticar o bem, obterá por recompensa a bem-aventurança, e o trataremos com brandura.",
+ 89,
+ "Então, seguiu (outro) rumo.",
+ 90,
+ "Até que, chegando ao nascente do sol, viu que este saía sobre um povo contra o qual noa havíamos provido nenhumabrigo.",
+ 91,
+ "Assim foi, porque temos pleno conhecimento de tudo sobre ele.",
+ 92,
+ "Então, seguiu (outro) rumo.",
+ 93,
+ "Até que chegou a um lugar entre duas montanhas, onde encontrou um povo que mal podia compreender uma palavra.",
+ 94,
+ "Disseram-lhe: Ó Zul Carnain, Gog e Magog são devastadores na terra. Queres que te paguemos um tributo, para quelevantes uma barreira entre nós e eles?",
+ 95,
+ "Respondeu-lhes: Aquilo com que o meu Senhor me tem agraciado é preferível. Secundai-me, pois, com denodo, elevantarei uma muralha intransponível, entre vós e eles.",
+ 96,
+ "Trazei-me blocos de ferro, até cobrir o espaço entre as duas montanhas. Disse aos trabalhadores: Assoprai (com vossosfoles), até que fiquem vermelhas como fogo. Disse mais: Trazei-me chumbo fundido, que jogarei por cima.",
+ 97,
+ "E assim a muralha foi feita e (Gog e Magog) não puderam escalá-la, nem perfurá-la.",
+ 98,
+ "Disse (depois): Esta muralha é uma misericórdia de meu Senhor. Porém, quando chegar a Sua promessa, Ele a reduzirá apó, porque a promessa de meu Senhor é infalível.",
+ 99,
+ "Nesse dia, deixaremos alguns deles insurgirem-se contra os outros e a trombeta será soada. E os congregaremos a todos.",
+ 100,
+ "Nesse dia, apresentaremos abertamente, aos incrédulos, o inferno,",
+ 101,
+ "Bem como àqueles cujos olhos estavam velados para se lembrarem de Mim, e que não foram capazes de escutar.",
+ 102,
+ "Pensaram, acaso, os incrédulos tomar Meus servos por protetores, em vez de Mim? temos destinado o inferno, pormorada, aos incrédulos.",
+ 103,
+ "Dize-lhes: Quereis que vos inteire de quem são os mais desmerecedores, por suas obras?",
+ 104,
+ "São aqueles cujos esforços se desvaneceram na vida terrena, não obstante crerem haver praticado o bem.",
+ 105,
+ "Estes são os que renegaram os versículos de seu Senhor e o comparecimento ate Ele; porém, suas obras tornaram-sesem efeito e não lhes reconheceremos mérito algum, no Dia da Ressurreição.",
+ 106,
+ "Sua morada será o inferno, por sua incredulidade, e por terem escarnecido os Meus versículos e os Meus mensageiros.",
+ 107,
+ "Por outra, os fiéis, que praticarem o bem, terão por abrigo os jardins do Paraíso,",
+ 108,
+ "Onde morarão eternamente e não ansiarão por mudar de sorte.",
+ 109,
+ "Dize-lhes: Se o oceano se transformasse em tinta, com que se escrevessem as palavras de meu Senhor, esgotar-se-iaantes de se esgotarem as Suas palavras, ainda que para isso se empregasse outro tanto de tinta.",
+ 110,
+ "Dize: Sou tão-somente um mortal como vós, a quem tem sido revelado que o vosso Deus é um Deus único. Porconseguinte, quem espera o comparecimento ante seu Senhor que pratique o bem e não associe ninguém ao culto d'Ele."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/19.json b/share/quran-json/TheQuran/pt/19.json
new file mode 100644
index 0000000..be657f0
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/19.json
@@ -0,0 +1,212 @@
+[
+ {
+ "id": "19",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Maryam",
+ "translated_name": "Mary",
+ "verse_count": 98,
+ "slug": "maryam",
+ "codepoints": [
+ 1605,
+ 1585,
+ 1610,
+ 1605
+ ]
+ },
+ 1,
+ "Caf, Ha, Yá, Ain, Sad.",
+ 2,
+ "Eis o relato da misericórdia de teu Senhor para com o Seu servo, Zacarias.",
+ 3,
+ "Ao invocar, intimamente, seu Senhor,",
+ 4,
+ "Dizendo: Ó Senhor meu, os meus ossos estão debilitados, o meu cabelo embranqueceu; mas nunca fui desventurado emminhas súplicas a Ti, ó Senhor meu!",
+ 5,
+ "Em verdade, temo pelo que farão os meus parentes, depois da minha morte, visto que minha mulher é estéril. Agracia-me, de tua parte, com um sucessor!",
+ 6,
+ "Que represente a mim e à família de Jacó; e faze, ó meu Senhor, com que esse seja complacente!",
+ 7,
+ "Ó Zacarias, alvissaramos-te o nascimento de uma criança, cujo nome será Yahia (João). Nunca denominamos, assim, ninguém antes dele.",
+ 8,
+ "Disse (Zacarias): Ó Senhor meu, como poderei ter um filho, uma vez que minha mulher é estéril e eu cheguei à senilidade?",
+ 9,
+ "Respondeu-lhe: Assim será! Disse teu Senhor: Isso Me é fácil, visto que te criei antes mesmo de nada seres.",
+ 10,
+ "Suplicou: Ó Senhor meu, faze-me um sinal! Disse-lhe: Teu sinal consistirá em que não poderás falar com ninguémdurante três noites.",
+ 11,
+ "Saiu do templo e, dirigindo-se ao seu povo, indicou-lhes, por sinais, que glorificassem Deus, de manhã e à tarde.",
+ 12,
+ "(Foi dito): Ó Yahia, observa fervorosamente o Livro! E o agraciamos, na infância, com a sabedoria,",
+ 13,
+ "assim como com as Nossas clemência e pureza, e foi devoto,",
+ 14,
+ "e piedoso para com seus pais, e jamais foi arrogante ou rebelde.",
+ 15,
+ "A paz esteve com ele desde o dia em que nasceu, no cia em que morreu e estará no dia em que foi ressuscitado.",
+ 16,
+ "E menciona Maria, no Livro, a qual se separou de sua família, indo para um local que dava para o leste.",
+ 17,
+ "E colocou uma cortina para ocultar-se dela (da família), e lhe enviamos o Nosso Espírito, que lhe apareceupersonificado, como um homem perfeito.",
+ 18,
+ "Disse-lhe ela: Guardo-me de ti no Clemente, se é que temes a Deus.",
+ 19,
+ "Explicou-lhe: Sou tão-somente o mensageiro do teu Senhor, para agraciar-te com um filho imaculado.",
+ 20,
+ "Disse-lhe: Como poderei ter um filho, se nenhum homem me tocou e jamais deixei de ser casta?",
+ 21,
+ "Disse-lhe: Assim será, porque teu Senhor disse: Isso Me é fácil! E faremos disso um sinal para os homens, e será umaprova de Nossa misericórdia. E foi uma ordem inexorável.",
+ 22,
+ "E quando concebeu, retirou-se, com um rebento a um lugar afastado.",
+ 23,
+ "As dores do parto a constrangeram a refugiar-se junto a uma tamareira. Disse: Oxalá eu tivesse morrido antes disto, ficando completamente esquecida.",
+ 24,
+ "Porém, chamou-a uma voz, junto a ela: Não te atormentes, porque teu Senhor fez correr um riacho a teus pés!",
+ 25,
+ "E sacode o tronco da tamareira, de onde cairão sobre ti tâmaras madura e frescas.",
+ 26,
+ "Come, pois, bebe e consola-te; e se vires algum humano, faze-o saber que fizeste um voto de jejum ao Clemente, e quehoje não poderás falar com pessoa alguma.",
+ 27,
+ "Regressou ao seu povo levando-o (o filho) nos braços. E lhes disseram: Ó Maria, eis que fizeste algo extraordinário!",
+ 28,
+ "Ó irmão de Aarão, teu pai jamais foi um homem do mal, nem tua mãe uma (mulher) sem castidade!",
+ 29,
+ "Então ela lhes indicou que interrogassem o menino. Disseram: Como falaremos a uma criança que ainda está no berço?",
+ 30,
+ "Ele lhes disse: Sou o servo de Deus, o Qual me concedeu o Livro e me designou como profeta.",
+ 31,
+ "Fez-me abençoado, onde quer que eu esteja, e me encomendou a oração e (a paga do) zakat enquanto eu viver.",
+ 32,
+ "E me fez piedoso para com a minha mãe, não permitindo que eu seja arrogante ou rebelde.",
+ 33,
+ "A paz está comigo, desde o dia em que nasci; estará comigo no dia em que eu morrer, bem como no dia em que eu forressuscitado.",
+ 34,
+ "Este é Jesus, filho de Maria; é a pura verdade, da qual duvidam.",
+ 35,
+ "É inadmissível que Deus tenha tido um filho. Glorificado seja! quando decide uma coisa, basta-lhe dizer: Seja!, e é.",
+ 36,
+ "E Deus é o meu Senhor e vosso. Adorai-O, pois! Esta é a senda reta.",
+ 37,
+ "Porém, as seita discordaram a seu respeito. Ai daqueles que não crêem no comparecimento ao grande dia!",
+ 38,
+ "Quão ouvintes e quão videntes serão, no dia em que comparecerem ante Nós! Porém, os iníquos estão, hoje, em umevidente erro.",
+ 39,
+ "E admoesta-os sobre o dia do lamento, quando a sentença for cumprida, enquanto estão negligentes e não crêem.",
+ 40,
+ "Em verdade, Nós herdaremos a terra com todos os que nela estão e a Nós retornarão todos.",
+ 41,
+ "E menciona, no Livro, (a história de) Abraão; ele foi um homem de verdade, e um profeta.",
+ 42,
+ "Ele disse ao seu pai: Ó meu pai, por que adoras quem não ouve, nem vê, ou que em nada pode valer-te?",
+ 43,
+ "Ó meu pai, tenho recebido algo da ciência, que tu não recebeste. Segue-me, pois, que eu te conduzirei pela senda reta!",
+ 44,
+ "Ó meu pai, não adores Satanás, porque Satanás foi rebelde para com o Clemente!",
+ 45,
+ "Ó meu pai, em verdade, temo que te açoite um castigo do Clemente, tornando-te, assim, amigo de Satanás.",
+ 46,
+ "Disse-lhe: Ó Abraão, porventura detestas as minhas divindades? Se não desistires, apedrejar-te-ei. Afasta-te de mim!",
+ 47,
+ "Disse-lhe: Que a paz esteja contigo! Implorarei, para ti, o perdão do meu Senhor, porque é Agraciante para comigo.",
+ 48,
+ "Abandonar-vos-ei, então, com tudo quanto adorais, em vez de Deus. Só invocarei o meu Senhor; espero, com ainvocação de meu Senhor, não ser desventurado.",
+ 49,
+ "E quando os abandonou com tudo quanto adoravam, em vez de Deus, agraciamo-lo com Isaac e Jacó, e designamosambos como profetas.",
+ 50,
+ "E os recompensamos com a Nossa misericórdia, e lhes garantimos honra e a língua veraz.",
+ 51,
+ "E menciona Moisés, no Livro, porque foi leal e foi um mensageiro e um profeta.",
+ 52,
+ "Chamamo-lo à escarpa direita do Monte e fizemos com que se aproximasse, para uma confidência.",
+ 53,
+ "E o agraciamos com a Nossa misericórdia, com seu irmão Aarão, outro profeta.",
+ 54,
+ "E menciona, no Livro, (a história real) de Ismael, porque foi leal às suas promessas e foi um mensageiro e profeta.",
+ 55,
+ "Encomendava aos seus a oração e a paga do zakat, e foi dos mais aceitáveis aos olhos de seu Senhor.",
+ 56,
+ "E menciona, no Livro, (a história de) Idris, porque foi (um homem) de verdade e, um profeta.",
+ 57,
+ "Que elevamos a um estado de graça.",
+ 58,
+ "Eis aqueles que Deus agraciou, dentre os profetas, da descendência de Adão, os que embarcamos com Noé, dadescendência de Abraão e de Israel, que encaminhamos e preferimos sobre os outros, os quais, quando lhes são recitados osversículos do Clemente, prostram-se, contritos, em prantos.",
+ 59,
+ "Sucedeu-lhes, depois, uma descendência, que abandonou a oração e se entregou às concupiscências. Porém, logo terão oseu merecido castigo,",
+ 60,
+ "Salvo aqueles que se arrependerem, crerem e praticarem o bem; esses entrarão no Paraíso, e não serão injustiçados.",
+ 61,
+ "(Repousarão nos) Jardins do Éden, que o Clemente prometeu aos Seus servos por meio de revelação, incognoscivelmente, e Sua promessa é infalível.",
+ 62,
+ "Ali não escutarão futilidades, mas palavras de saudações, e receberão o seu sustento de manhã e à tarde.",
+ 63,
+ "Tal é o Paraíso, que deixaremos como herança a quem, dentre os Nossos servos, for devoto.",
+ 64,
+ "E (os anjos) dirão: Não nos locomovemos de um local para o outro sem a anuência de teu Senhor, a Quem pertencem onosso passado, o nosso presente e nosso futuro, porque o teu Senhor jamais esquece.",
+ 65,
+ "É o Senhor dos céus e da terra, e de tudo quanto existe entre ambos. Adora-O, pois, e sê perseverante em Sua adoração! Conheces-Lhe algum parceiro?",
+ 66,
+ "Porém, o homem diz: Quê! Porventura, depois de morto serei ressuscitado?",
+ 67,
+ "Por que não recorda o homem que o criamos quando nada era?",
+ 68,
+ "Por teu Senhor, que os congregaremos com os demônios, e de pronto os faremos comparecer, de joelhos, à beira doinferno!",
+ 69,
+ "Depois arrancaremos, de cada grupo, aquele que tiver sido mais rebelde para com o Clemente.",
+ 70,
+ "Certamente, sabemos melhor do que ninguém quem são os merecedores de ser ali queimados.",
+ 71,
+ "E não haverá nenhum de vós que não tenha por ele, porque é um decreto irrevogável do teu Senhor.",
+ 72,
+ "Logo salvaremos os devotos e deixaremos ali, genuflexos, os iníquos.",
+ 73,
+ "Quando lhes são recitados os Nosso lúcidos versículos, os incrédulos dizem aos fiéis: Qual dos dois partidos, o nossoou o vosso, ocupa melhor posição e está em melhores condições?",
+ 74,
+ "Quantas gerações, anteriores a eles aniquilamos! São eles mais opulentos e de melhor aspecto?",
+ 75,
+ "Dize-lhes: Quem quer que seja que estiver no erro, o Clemente o tolerará deliberadamente até que veja o que lhe foiprometido, quer seja o castigo terreno, quer seja o da Hora (do Juízo final); então, saberão quem estará em pior situação, eterá os prosélitos mais débeis.",
+ 76,
+ "E Deus aumentará os orientados na orientação. As boas ações, as perduráveis, são mais meritórias e mais apreciáveisaos olhos do teu Senhor.",
+ 77,
+ "Não reparaste naquele que negava os Nossos versículos e dizia: Ser-me-ão dados bens e filhos?",
+ 78,
+ "Está, porventura, de posse do incognoscível? Estabeleceu, acaso, um pacto com o Clemente?",
+ 79,
+ "Qual! Registramos tudo o quanto disser, e lhe adicionaremos mais e mais o castigo!",
+ 80,
+ "E a nós retornará tudo que disser, e comparecerá, solitário, ante Nós.",
+ 81,
+ "Adotam divindades, em vez de Deus, para lhes dar poder.",
+ 82,
+ "Qual! Tais divindades renegarão a adoração e serão os seus adversários!",
+ 83,
+ "Não reparas em que concedemos o predomínio dos demônios sobre os incrédulos para que os seduzissemprofundamente?",
+ 84,
+ "Não lhes apresses, pios, seu castigo (ó Mohammad), porque computamos estritamente os seus dias.",
+ 85,
+ "Recorda-lhes o dia em que o congregaremos, em grupos, os devotos, ante o Clemente.",
+ 86,
+ "E arrastaremos os pecadores, sequiosos, para o inferno.",
+ 87,
+ "Não lograrão intercessão, senão aqueles que tiverem recebido a promessa do Clemente.",
+ 88,
+ "Afirmam: O Clemente teve um filho!",
+ 89,
+ "Sem dúvida que haveis proferido uma heresia.",
+ 90,
+ "Por isso, pouco faltou para que os céus se fundissem, a terra se fendesse e as montanhas, desmoronassem.",
+ 91,
+ "Isso, por terem atribuído um filho ao Clemente,",
+ 92,
+ "Quando é inadmissível que o Clemente houvesse tido um filho.",
+ 93,
+ "Sabei que tudo quanto existe nos céus e na terra comparecerá, como servo, ante o Clemente.",
+ 94,
+ "Ele já os destacou e os enumerou com exatidão.",
+ 95,
+ "Cada um deles comparecerá, solitário, ante Ele, no Dia da Ressurreição.",
+ 96,
+ "Quanto aos crentes que praticarem o bem, o Clemente lhes concederá afeto perene.",
+ 97,
+ "Só to facilitamos (o Alcorão), na tua língua para que, com ele, exortes os devotos e admoestes os impugnadores.",
+ 98,
+ "Quantas gerações anteriores a eles aniquilamos! Vês, acaso, algum deles ou ouves algum murmúrio deles?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/2.json b/share/quran-json/TheQuran/pt/2.json
new file mode 100644
index 0000000..c7b7274
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/2.json
@@ -0,0 +1,590 @@
+[
+ {
+ "id": "2",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Baqarah",
+ "translated_name": "The Cow",
+ "verse_count": 286,
+ "slug": "al-baqarah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1576,
+ 1602,
+ 1585,
+ 1577
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim.",
+ 2,
+ "Eis o livro que é indubitavelmente a orientação dos tementes a Deus;",
+ 3,
+ "Que crêem no incognoscível, observam a oração e gastam daquilo com que os agraciamos;",
+ 4,
+ "Que crêem no que te foi revelado (ó Mohammad), no que foi revelado antes de ti e estão persuadidos da outra vida.",
+ 5,
+ "Estes possuem a orientação do seu Senhor e estes serão os bem-aventurados.",
+ 6,
+ "Quanto aos incrédulos, tento se lhes dá que os admoestes ou não os admoestes; não crerão.",
+ 7,
+ "Deus selou os seus corações e os seus ouvidos; seus olhos estão velados e sofrerão um severo castigo.",
+ 8,
+ "Entre os humanos há os que dizem: Cremos em Deus e no Dia do Juízo Final. Contudo, não são fiéis.",
+ 9,
+ "Pretendem enganar Deus e os fiéis, quando só enganam a si mesmos, sem se aperceberem disso.",
+ 10,
+ "Em seus corações há morbidez, e Deus os aumentou em morbidez, e sofrerão um castigo doloroso por suas mentiras.",
+ 11,
+ "Se lhes é dito: Não causeis corrupção na terra, afirmaram: Ao contrário, somos conciliadores.",
+ 12,
+ "Acaso, não são eles os corruptores? Mas não o sentem.",
+ 13,
+ "Se lhes é dito: Crede, como crêem os demais humanos, dizem: Temos de crer como crêem os néscios? Em verdade, eles sãos os néscios, porém não o sabem.",
+ 14,
+ "Em quando se deparam com os fiéis, asseveram: Cremos. Porém, quando a sós com os seus sedutores, dizem: Nós estamos convosco; apenas zombamos deles.",
+ 15,
+ "Mas Deus escarnecerá deles e os abandonará, vacilantes, em suas transgressões.",
+ 16,
+ "São os que trocaram a orientação pelo extravio; mas tal troca não lhes trouxe proveito, nem foram iluminados.",
+ 17,
+ "Parecem-se com aqueles que fez arder um fogo; mas, quando este iluminou tudo que o rodeava, Deus extinguiu-lhes a luz, deixando-os sem ver, nas trevas.",
+ 18,
+ "São surdos, mudos, cegos e não se retraem (do erro).",
+ 19,
+ "Ou como (aquele que, surpreendidos por) nuvens do céu, carregadas de chuva, causando trevas, trovões e relâmpagos, tapam os seus ouvidos com os dedos, devido aos estrondos, por temor à morte; mas Deus está inteirado dos incrédulos.",
+ 20,
+ "Pouco falta para que o relâmpago lhes ofusque a vista. Todas as vezes que brilha, andam à mercê do seu fulgor e, quandosome, nas trevas se detêm e, se Deus quisesse, privá-los-ia da audição e da visão, porque é Onipotente.",
+ 21,
+ "Ó humanos, adorai o vosso Senhor, Que vos criou, bem como aos vossos antepassados, quiçá assim tornar-vos-íeisvirtuosos.",
+ 22,
+ "Ele fez-vos da terra um leito, e do céu um teto, e envia do céu a água, com a qual faz brotar os frutos para o vossosustento. Não atribuais rivais a Deus, conscientemente.",
+ 23,
+ "E se tendes dúvidas a respeito do que revelamos ao Nosso servo (Mohammad), componde uma surata semelhante à dele (o Alcorão), e apresentai as vossas testemunhas, independentemente de Deus, se estiverdes certos.",
+ 24,
+ "Porém, se não o dizerdes - e certamente não podereis fazê-lo - temei, então, o fogo infernal cujo combustível serão osidólatras e os ídolos; fogo que está preparado para os incrédulos.",
+ 25,
+ "Anuncia (ó Mohammad) os fiéis que praticam o bem que obterão jardins, abaixo dos quais correm os rios. Toda vez queforem agraciados com os seus frutos, dirão: Eis aqui o que nos fora concedido antes! Porém, só o será na aparência. Aliterão companheiros imaculados e ali morarão eternamente.",
+ 26,
+ "Deus não Se furta em exemplificar com um insignificante mosquito ou com algo maior ou menor do que ele. E os fiéissabem que esta é a verdade emanada de seu Senhor. Quanto aos incrédulos, asseveram: Que quererá significar Deus com talexemplo? Com isso desvia muitos e encaminha muitos outros. Mas, com isso, só desvia os depravados.",
+ 27,
+ "Que violam o pacto com Deus, depois de o terem concluído; separam o que Deus tem ordenado manter unido e fazemcorrupção na terra. Estes serão desventurados.",
+ 28,
+ "Como ousais negar a Deus, uma vez que éreis inertes e Ele vos deu a vida, depois vos fará morrer, depois vosressuscitará e então retornais a Ele?",
+ 29,
+ "Ele foi Quem vos criou tudo quando existe na terra; então, dirigiu Sua vontade até o firmamento do qual fez, ordenadamente, sete céus, porque é Onisciente.",
+ 30,
+ "(Recorda-te ó Profeta) de quando teu Senhor disse aos anjos: Vou instituir um legatário na terra! Perguntaram-Lhe: Estabelecerás nela quem alí fará corrupção, derramando sangue, enquanto nós celebramos Teus louvores, glorificando-Te? Disse (o Senhor): Eu sei o que vós ignorais.",
+ 31,
+ "Ele ensinou a Adão todos os nomes e depois apresentou-os aos anjos e lhes falou: Nomeai-os para Mim e estiverdescertos.",
+ 32,
+ "Disseram: Glorificado sejas! Não possuímos mais conhecimentos além do que Tu nos proporcionaste, porque somenteTu és Prudente, Sapientíssimo.",
+ 33,
+ "Ele ordenou: Ó Adão, revela-lhes os seus nomes. E quando ele lhes revelou os seus nomes, asseverou (Deus): Não vosdisse que conheço o mistério dos céus e da terra, assim como o que manifestais e o que ocultais?",
+ 34,
+ "E quando dissemos aos anjos: Prostrai-vos ante Adão! Todos se prostraram, exceto Lúcifer que, ensoberbecido, senegou, e incluiu-se entre os incrédulos.",
+ 35,
+ "Determinamos: Ó Adão, habita o Paraíso com a tua esposa e desfrutai dele com a prodigalidade que vos aprouver; porém, não vos aproximeis desta árvore, porque vos contareis entre os iníquos.",
+ 36,
+ "Todavia, Satã os seduziu, fazendo com que saíssem do estado (de felicidade) em que se encontravam. Então dissemos: Descei! Sereis inimigos uns dos outros, e, na terra, tereis residência e gozo transitórios.",
+ 37,
+ "Adão obteve do seu Senhor algumas palavras de inspiração, e Ele o perdoou, porque é o Remissório, o Misericordioso.",
+ 38,
+ "E ordenamos: Descei todos aqui! Quando vos chegar de Mim a orientação, aqueles que seguirem a Minha orientação nãoserão presas do temor, nem se atribularão.",
+ 39,
+ "Aqueles que descrerem e desmentirem os Nossos versículos serão os condenados ao inferno, onde permanecerãoeternamente.",
+ 40,
+ "Ó israelitas, recordai-vos das Minhas mercês, com as quais vos agraciei. Cumpri o vosso compromisso, que cumprirei oMeu compromisso, e temei somente a Mim.",
+ 41,
+ "E crede no que revelei, e que corrobora a revelação que vós tendes; não sejais os primeiros a negá-lo, nem negocieis asMinhas leis a vil preço, e temei a Mim, somente,",
+ 42,
+ "E não disfarceis a verdade com a falsidade, nem a oculteis, sabendo-a.",
+ 43,
+ "Praticai a oração pagai o zakat e genuflecti, juntamente com os que genuflectem.",
+ 44,
+ "Ordenais, acaso, às pessoas a prática do bem e esqueceis, vós mesmos, de fazê-lo, apesar de lerdes o Livro? Nãoraciocinais?",
+ 45,
+ "Amparai-vos na perseverança e na oração. Sabei que ela (a oração) é carga pesada, salvo para os humildes,",
+ 46,
+ "Que sabem que encontrarão o seu Senhor e a Ele retornarão.",
+ 47,
+ "Ó Israelitas, recordai-vos das Minhas mercês, com as quais vos agraciei, e de que vos preferi aos vossoscontemporâneos.",
+ 48,
+ "E temei o dia em que nenhuma alma poderá advogar por outra, nem lhe será admitida intercessão alguma, nem lhe seráaceita compensação, nem ninguém será socorrido!",
+ 49,
+ "Recordai-vos de quando vos livramos do povo do Faraó, que vos infligia o mais cruel castigo, degolando os vossosfilhos e deixando com vida as vossas mulheres. Naquilo tivestes uma grande prova do vosso Senhor.",
+ 50,
+ "E de quando dividimos o mar e vos salvamos, e afogamos o povo do Faraó, enquanto olháveis.",
+ 51,
+ "E de quando instituímos o pacto das quarenta noites de Moisés e que vós, em sua ausência, adorastes do bezerro, condenando-vos.",
+ 52,
+ "Então, indultamo-vos, depois disso, para que ficásseis agradecidos.",
+ 53,
+ "E de quando concedemos a Moisés o Livro e o Discernimento, para que vos orientásseis!",
+ 54,
+ "E de quando Moisés disse ao seu povo: Ó povo meu, por certo que vos condenastes, ao adorardes o bezerro. Voltai, portanto, contritos, penitenciando-vos para o vosso Criador, e imolai-vos mutuamente. Isso será preferível, aos olhos dovosso Criador. Ele vos absolverá, porque é o Remissório, o Misericordioso.",
+ 55,
+ "E de quando dissestes: Ó Moisés, não creremos em ti até que vejamos Deus claramente! E a centelha vos fulminou, enquanto olháveis.",
+ 56,
+ "Então, vos ressuscitamos, após a vossa morte, para que assim, talvez, Nos agradecêsseis.",
+ 57,
+ "E vos agraciamos, com as sombras das nuvens e vos enviamos o maná e as codornizes, dizendo-vos: Comei de todas ascoisas boas com que vos agraciamos! (Porém, o desagradeceram) e, com isso, não Nos prejudicaram, mas prejudicaram a simesmos.",
+ 58,
+ "E quando vos dissemos: Entrai nessa cidade e comei com prodigalidade do que vos aprouver, mas entrai pela porta, prostrando-vos, e dizei: Remissão! Então, perdoaremos as vossas faltas e aumentaremos a recompensa dos benfeitores.",
+ 59,
+ "Os iníquos permutaram as palavras por outras que não lhe haviam sido ditas, pelo que enviamos sobre eles um castigodo céu, por sua depravação.",
+ 60,
+ "E de quando Moisés Nos implorou água para o seu povo, e lhe dissemos: Golpeia a rocha com o teu cajado! E de prontobrotaram dela doze mananciais, e cada grupo reconheceu o seu. Assim, comei e bebei da graça de Deus, e não cismeis naterra, causando corrupção.",
+ 61,
+ "E de quando dissestes: Ó Moisés, jamais nos conformaremos com um só tipo de alimento! Roga ao teu Senhor que nosproporcione tudo quanto a terra produz: suas hortaliças, seus pepinos, seus alhos, suas lentilhas e suas cebolas! Perguntou-lhes: Quereis trocar o melhor pelo pior? Pois bem: Voltai para o Egito, onde terei que implorais! E foramcondenados à humilhação e à indigência, e incorreram na abominação de Deus; isso, porque negaram os versículos osversículos de Deus e assassinaram injustamente os profetas. E também porque se rebelaram e foram agressores.",
+ 62,
+ "Os fiéis, os judeus, os cristãos, e os sabeus, enfim todos os que crêem em Deus, no Dia do Juízo Final, e praticam o bem, receberão a sua recompensa do seu Senhor e não serão presas do temor, nem se atribuirão.",
+ 63,
+ "E de quando exigimos o vosso compromisso e levantamos acima de vós o Monte, dizendo-vos: Apegai-vos com firmezaao que vos concedemos e observai-lhe o conteúdo, quiçá (Me) temais.",
+ 64,
+ "Apesar disso, recusaste-lo depois e, se não fosse pela graça de Deus e pela Sua misericórdia para convosco, contar-vos-íeis entre os desventurados.",
+ 65,
+ "Já sabeis o que ocorreu àqueles, dentre vós, que profanaram o sábado; a esses dissemos: \"Sede símios desprezíveis!\"",
+ 66,
+ "E disso fizemos um exemplo para os seus contemporâneos e para os seus descendentes, e uma exortação para ostementes a Deus.",
+ 67,
+ "E de quando Moisés disse ao seu povo: Deus vos ordena sacrificar uma vaca. Disseram: Zombas, acaso, de nós? Respondeu: Guarda-me Deus de contar-me entre os insipientes!",
+ 68,
+ "Disseram: Roga ao teu Senhor para que nos indique como ela deve ser. Explicou-lhes: Ele afirma que há de ser umavaca que não seja nem velha, nem nova, de meia-idade. Fazei, pois, o que vos é ordenado.",
+ 69,
+ "Disseram: Roga ao teu Senhor, para que nos indique a cor dela. Tornou a explicar: Ele diz que tem de ser uma vaca decor jalne que agrade os observadores.",
+ 70,
+ "Disseram: Roga ao teu Senhor para que nos indique como deve ser, uma vez que todo bovino nos parece igual e, se aDeus aprouver, seremos guiados.",
+ 71,
+ "Disse-lhes: Ele diz que tem de ser uma vaca mansa, não treinada para labor da terra ou para rega dos campos; semdefeitos, sem manchas. Disseram: Agora falaste a verdade. E a sacrificaram, ainda que pouco faltasse para que não ofizessem.",
+ 72,
+ "E de quando assassinastes um ser e disputastes a respeito disso; mas Deus revelou tudo quanto ocultáveis.",
+ 73,
+ "Então ordenamos: Golpeai-o (o morto), com um pedaço dela (rês sacrificada). Assim Deus ressuscita os mortos vosmanifesta os seu sinais, para que raciocineis.",
+ 74,
+ "Apesar disso os vossos corações se endurecem; são como as rochas, ou ainda mais duros. De algumas rochas brotamrios e outras se fendem e delas mana a água, e há ainda outras que desmoronam, por temor a Deus. Mas Deus não estádesatento a tudo quanto fazeis.",
+ 75,
+ "Aspirais, acaso, a que os judeus creiam em vós, sendo que alguns deles escutavam as palavras de Deus e, depois de asterem compreendido, alteravam-nas conscientemente?",
+ 76,
+ "Quando se encontram com os fiéis, declaram: Cremos! Porém, quando se reúnem entre si, dizem: Relatar-lhes-eis o queDeus vos revelou para que, com isso, vos refutem perante o vosso Senhor? Não raciocinais?",
+ 77,
+ "Ignoram, acaso, que Deus sabe tanto o que ocultam, como o que manifestam?",
+ 78,
+ "Entre eles há iletrados que não compreendem o Livro, a não ser segundo os seus desejos, e não fazem mais do queconjecturar.",
+ 79,
+ "Ai daqueles que copiam o Livro, (alterando-o) com as suas mãos, e então dizem: Isto emana de Deus, para negociá-lo avil preço. Ai deles, pelo que as suas mãos escreveram! E ai deles, pelo que lucraram!",
+ 80,
+ "E asseveram: O fogo não vos atormentará, senão por dias contados. Pergunta-lhes: Recebestes, acaso, de Deus umcompromisso? Pois sabei que Deus jamais quebra o Seu compromisso. Ou dizeis de Deus o que ignorais?",
+ 81,
+ "Qual! Aqueles que lucram por meio de um mal e estão envolvidos por suas faltas serão os condenados ao inferno, noqual permanecerão eternamente.",
+ 82,
+ "Os fiéis, que praticam o bem, serão os diletos do Paraíso, onde morarão eternamente.",
+ 83,
+ "E de quando exigimos o compromisso dos israelitas, ordenando-lhes: Não adoreis senão a Deus; tratai combenevolência vossos pais e parentes, os órfãos e os necessitados; falai ao próximo com doçura; observai a oração e pagai ozakat. Porém, vós renegastes desdenhosamente, salvo um pequeno número entre vós.",
+ 84,
+ "E de quando exigimos nosso compromisso, ordenando-vos: Não derrameis o vosso sangue, nem vos expulseisreciprocamente de vossas casas; logo o confirmastes e testemunhastes.",
+ 85,
+ "No entanto, vede o que fazeis: estais vos matando; expulsais das vossas casas alguns de vós, contra quem demonstraisinjustiça e transgressão; e quando os fazeis prisioneiros, pedis resgate por eles, apesar de saberdes que vos era proibidobani-los. Credes, acaso, em uma parte do Livro e negais a outra? Aqueles que, dentre vós, tal cometem, não receberão, emtroca, senão aviltamento, na vida terrena e, no Dia da Ressurreição, serão submetidos ao mais severo dos castigo. E Deusnão está desatento em relação a tudo quanto fazeis.",
+ 86,
+ "São aqueles que negociaram a vida futura pela vida terrena; a esses não lhes será atenuado o castigo, nem serãosocorridos.",
+ 87,
+ "Concedemos o Livro a Moisés, e depois dele enviamos muitos mensageiros, e concedemos a Jesus, filho de Maria, asevidências, e o fortalecemos com o Espírito da Santidade. Cada vez que vos era apresentado um mensageiro, contrário aosvossos interesses, vós vos ensoberbecíeis! Desmentíeis uns e assassináveis outros.",
+ 88,
+ "Disseram: Nossos corações são insensíveis! Qual! Deus os amaldiçoou por sua incredulidade. Quão pouco acreditam!",
+ 89,
+ "Quando, da parte de Deus, lhes chegou um Livro (Alcorão), corroborante do seu - apesar de antes terem implorado avitória sobre os incrédulos - quando lhes chegou o que sabiam, negaram-no. Que a maldição de Deus caia sobre os ímpios!",
+ 90,
+ "A que vil preço se venderam, ao renegarem o que Deus tinha revelado! Fizeram-no injustamente, inconformados de queDeus revelasse a Sua graça a quem Lhe aprouvesse, dentre os Seus servos. Assim, atraíram sobre si abominação apósabominação. Os incrédulos sofrerão um castigo afrontoso.",
+ 91,
+ "Quando lhes é dito: Crede no que Deus revelou! Dizem: Cremos no que nos foi revelado. E rejeitam o que está alémdisso (Alcorão), embora seja a verdade corroborante da que já tinham. Dize-lhes: Por que, então, assassinastes os profetasde Deus, se éreis fiéis?",
+ 92,
+ "Já Moisés vos havia apresentado as evidências e, em sua ausência, adorastes o bezerro, condenando-vos.",
+ 93,
+ "E quando aceitamos o vosso compromisso e elevamos o Monte acima de vós, dizendo-vos: Recebei com firmeza tudoquanto vos concedermos e escutai!, disseram: Já escutamos, porém nos rebelamos! E, por sua incredulidade, imbuíram osseus corações com a adoração do bezerro. Dize-lhes: Quão detestáveis é o que vossa crença vos inspira, se é que sois fiéis!",
+ 94,
+ "Dize-lhes: \"Se a última morada, ao lado de Deus, é exclusivamente vossa em detrimento dos demais, desejai então amorte, se estiverdes certos.\"",
+ 95,
+ "Porém, jamais a desejariam, por causa do que cometeram as suas mãos; e Deu bem conhece os iníquos.",
+ 96,
+ "Tu os acharás mais ávidos de viver do que ninguém, muito mais do que os idólatras, pois cada um deles desejaria vivermil anos; porém, ainda que vivessem tanto, isso não os livraria do castigo, porque Deus bem vê tudo quanto fazem.",
+ 97,
+ "Dize-lhes Quem for inimigo de Gabriel, saiba que ele, com o beneplácito de Deus, impregnou-te (o Alcorão) no coração, para corroborar o que foi revelado antes; é orientação e alvíssaras de boas novas para os fiéis.",
+ 98,
+ "Quem for inimigo de Deus, de Seus anjos, dos Seus mensageiros, de Gabriel e de Miguel, saiba que Deus é adversáriodos incrédulos.",
+ 99,
+ "Revelamos-te lúcidos versículos e ninguém ousará negá-los, senão os depravados.",
+ 100,
+ "Será possível que, cada vez que contraem um compromisso, haja entre eles um grupo que o quebre? Em verdade, amaioria não crê.",
+ 101,
+ "E quando lhes foi apresentado um Mensageiro (Mohammad) de Deus, que corroborou o que já possuíam, alguns dosadeptos do Livro (os judeus) atiraram às costas o Livro de Deus, como se não o conhecessem.",
+ 102,
+ "E seguiram o que os demônios apregoavam, acerca do Reinado de Salomão. Porém, Salomão nunca foi incrédulo, outrossim foram os demônios que incorreram na incredulidade. Ensinaram aos homens a magia e o que foi revelado aos doisanjos, Harut e Marut, na Babilônia. Ambos, a ninguém instruíram, se quem dissessem: Somos tão somente uma prova; nãovos torneis incrédulos! Porém, os homens aprendiam de ambos como desunir o marido da sua esposa. Mas, com isso nãopodiam prejudicar ninguém, a não ser com a anuência de Deus. Os homens aprendiam o que lhes era prejudicial e não o quelhes era benéfico, sabendo que aquele que assim agisse, jamais participaria da ventura da outra vida. A que vil preço sevenderam! Se soubessem...",
+ 103,
+ "Todavia, se tivessem acreditado, e temido, teriam obtido a melhor recompensa de Deus. Se o soubessem!...",
+ 104,
+ "Ó fiéis, não digais (ao Profeta Mohammad): \"Raina\", outrossim dizei: \"Arzurna\" e escutai. Sabei que os incrédulossofrerão um doloroso castigo.",
+ 105,
+ "Aos incrédulos, dentre os adeptos do Livro, e aos idólatras, agradaria que não vos fosse enviada nenhuma mercê dovosso Senhor; mas Deus outorga a Sua Clemência exclusivamente a quem Lhe apraz, porque é Agraciante por excelência.",
+ 106,
+ "Não ab-rogamos nenhum versículo, nem fazemos com que seja esquecido (por ti), sem substituí-lo por outro melhor ousemelhante. Ignoras, por acaso, que Deus é Onipotente?",
+ 107,
+ "Porventura, não sabes que a Deus pertence o reino dos céus e da terra e que, além de Deus, (vós) não tereis outroprotetor, nem defensor?",
+ 108,
+ "Pretendeis interrogar o vosso Mensageiro, como anteriormente foi interrogado Moisés? (Sabei que) aquele que permutaa fé pela incredulidade desvia-se da verdadeira senda.",
+ 109,
+ "Muitos dos adeptos do Livro, por inveja, desejariam fazer-vos voltar à incredulidade, depois de terdes acreditado, apesar de lhes ter sido evidenciada a verdade. Tolerai e perdoai, até que Deus faça cumprir os Seus desígnios, porque Deusé Onipotente.",
+ 110,
+ "Observai a oração, pagai o zakat e sabei que todo o bem que apresentardes para vós mesmo, encontrareis em Deus, porque Ele bem vê tudo quando fazeis.",
+ 111,
+ "Disseram: Ninguém entrará no Paraíso, a não ser que seja judeu ou cristão. Tais são as suas idéias fictícias. Dize-lhes: Mostrai vossa prova se estiverdes certos.",
+ 112,
+ "Qual! Aqueles que se submeteram a Deus e são caritativos obterão recompensa, em seu Senhor, e não serão presas dotemor, nem se atribularão.",
+ 113,
+ "Os judeus dizem: Os cristãos não têm em que se apoiar! E os cristãos dizem: O judeus não têm em que se apoiar!, apesar de ambos lerem o Livro. Assim também os néscios dizem coisas semelhantes. Porém, Deus julgará entre eles, quantoàs suas divergências, no Dia da Ressurreição.",
+ 114,
+ "Haverá alguém mais iníquo do que aquele que impede que o nome de Deus seja celebrado em santuários e se esforçapor destruí-los? Estes não deveriam adentrá-los senão, temerosos; sobre eles recairá, pois, o aviltamento deste mundo e, nooutro, sofrerão um severo castigo.",
+ 115,
+ "Tanto o levante como o poente pertencem a Deus e, aonde quer que vos dirijais, notareis o Seus Rosto, porque Deus éMunificente, Sapientíssimo.",
+ 116,
+ "Dizem (os cristãos): Deus adotou um filho! Glorificado seja! Pois a Deus pertence tudo quanto existe nos céus e naterra, e tudo está consagrado a Ele.",
+ 117,
+ "Ele é o Originador dos céus e da terra e, quando decreta algo, basta-Lhe dizer: \"Seja!\" e ele é.",
+ 118,
+ "Os néscios dizem: \"Por que Deus não fala conosco, ou nos apresenta um sinal?\" Assim falaram, com as mesmaspalavras, os seus antepassados, porque os seus corações se assemelham aos deles. Temos elucidado os versículos para agente persuadida.",
+ 119,
+ "Por certo (ó Mensageiro) que te enviamos com a verdade, como alvissareiro e admoestador, e que não serásresponsabilizado pelos réprobos.",
+ 120,
+ "Nem os judeus, nem os cristãos, jamais estão satisfeitos contigo, a menos que abraces os seus credos. Dize-lhes: \"Porcerto que a orientação de Deus é a Orientação!\" Se te renderes aos seus desejos, depois de te Ter chegado o conhecimento, fica sabendo que não terás, em Deus, Protetor, nem Defensor.",
+ 121,
+ "Aqueles a quem concedemos o Livro recitam-no como ele deve ser recitado. São os que acreditam nele; porém, aquelesque o negarem serão desventurados.",
+ 122,
+ "Ó israelitas, recordai-vos das Minhas mercês com as quais vos agraciei, e de que vos preferi aos vossoscontemporâneos.",
+ 123,
+ "E temei o dia em que nenhuma alma poderá advogar por outra alma, nem lhe será aceita compensação, nem lhe seráadmitida intercessão alguma, nem ninguém será socorrido.",
+ 124,
+ "E quando o seu Senhor pôs à prova Abraão, com certos mandamentos, que ele observou, disse-lhe: \"Designar-te-eiImam dos homens.\" (Abraão) perguntou: E também o serão os meus descendentes? Respondeu-lhe: Minha promessa nãoalcançará os iníquos.",
+ 125,
+ "Lembrai-vos que estabelecemos a Casa, para o congresso e local de segurança para a humanidade: Adotai a Estânciade Abraão por oratório. E estipulamos a Abraão e a Ismael, dizendo-lhes: \"Purificai Minha Casa, para os circundantes (daCaaba), os retraídos, os que genuflectem e se prostram.",
+ 126,
+ "E quando Abraão implorou: Ó senhor meu, faze com que esta cidade seja de paz, e agracia com frutos os seushabitantes que crêem em Deus e no Dia do Juízo Final! Deus respondeu: Quanto aos incrédulos dar-lhe-ei um desfrutartransitório e depois os condenarei ao tormento infernal. Que funesto destino!",
+ 127,
+ "E quando Abraão e Ismael levantaram os alicerces da Casa, exclamaram: Ó Senhor nosso, aceita-a de nós pois Tu ésOniouvinte, Sapientíssimo.",
+ 128,
+ "Ó Senhor nosso, permite que nos submetamos a Ti e que surja, da nossa descendência, uma nação submissa à Tuavontade. Ensina-nos os nossos ritos e absolve-nos, pois Tu é o Remissório, o Misericordiosíssimo.",
+ 129,
+ "Ó Senhor nosso, faze surgir, dentre eles, um Mensageiro, que lhes transmita as Tuas leis e lhes ensine o Livro, e asabedoria, e os purifique, pois Tu és o Poderoso, o Prudentíssimo.",
+ 130,
+ "E quem rejeitaria o credo de Abraão, a não ser o insensato? Já o escolhemos (Abraão), neste mundo e, no outro, contrar-se-á entre os virtuosos.",
+ 131,
+ "E quando o seu Senhor lhe disse: Submete-te a Mim!, respondeu: Eis que me submeto ao Senhor do Universo!",
+ 132,
+ "Abraão legou esta crença aos seus filhos, e Jacó aos seus, dizendo-lhes: Ó filhos meus, Deus vos legou esta religião; apegai-nos a ela, e não morrais sem serdes submissos (a Deus).",
+ 133,
+ "Estáveis, acaso, presentes, quando a morte se apresentou a Jacó, que perguntou aos seus filhos: Que adorareis após aminha morte? Responderam-lhe: Adoraremos a teu Deus e o de teus pais: Abraão, Ismael e Isaac; o Deus Único, a Quem nossubmetemos.",
+ 134,
+ "Aquela é uma nação que já passou; colherá o que mereceu e vós colhereis o que merecerdes, e não sereisresponsabilizados pelo que fizeram.",
+ 135,
+ "Disseram: Sede judeus ou cristãos, que estareis bem iluminados. Responde-lhes: Qual! Seguimos o credo de Abraão, omonoteísta, que jamais se contou entre os idólatras.",
+ 136,
+ "Dizei: Cremos em Deus, no que nos tem sido revelado, no que foi revelado a Abraão, a Ismael, a Isaac, a Jacó e àstribos; no que foi concedido a Moisés e a Jesus e no que foi dado aos profetas por seu Senhor; não fazemos distinção algumaentre eles, e nos submetemos a Ele.",
+ 137,
+ "Se crerem no que vós credes, iluminar-se-ão; se se recusarem, estarão em cisma. Deus ser-vos-á suficiente contra eles, e Ele é o Oniouvinte, o Sapientíssimo.",
+ 138,
+ "Eis aqui a religião de Deus! Quem melhor que Deus para designar uma religião? Somente a Ele adoramos!",
+ 139,
+ "Pergunta-lhes: Discutireis conosco sobre Deus. Apesar de ser o nosso e o vosso Senhor? Somos responsáveis pornossas ações assim como vós por vossas, e somos sinceros para com Ele.",
+ 140,
+ "Podeis acaso, afirmar que Abraão, Ismael, Isaac, Jacó e as tribos eram judeus ou cristãos? Dize: Acaso, sois maissábios do que Deus o é? Haverá alguém mais iníquo do que aquele que oculta um testemunho recebido de Deus? Sabei queDeus não está desatento a quanto fazeis.",
+ 141,
+ "Aquela é uma nação que já passou; colherá o que mereceu vós colhereis o que merecerdes, e não sereisresponsabilizados pelo que fizeram.",
+ 142,
+ "Os néscios dentre os humanos perguntarão: Que foi que os desviou de sua tradicional quibla? Dize-lhes: Só a Deuspertencem o levante e o poente. Ele encaminhará à senda reta a quem Lhe apraz.",
+ 143,
+ "E, deste modo, (ó muçulmanos), contribuímo-vos em uma nação de centro, para que sejais, testemunhas da humanidade, assim como o Mensageiro e será para vós. Nós não estabelecemos a quibla que tu (ó Mohammad) seguis, senão paradistinguir aqueles que seguem o Mensageiro, daqueles que desertam, ainda que tal mudança seja penosa, salvo para os queDeus orienta. E Deus jamais anularia vossa obra, porque é Compassivo e Misericordiosíssimo para a humanidade.",
+ 144,
+ "Vimos-te (ó Mensageiro) orientar o rosto para o céu; portanto, orientar-te-emos até a quibla que te satisfaça. Orientateu rosto (ao cumprir a oração) para a Sagrada Mesquita (de Makka)! E vós (crentes), onde quer que vos encontreis, orientaivossos rosto até ela. Aqueles que receberam o Livro, bem sabem que isto é a verdade de seu Senhor; e Deus não estádesatento a quanto fazem.",
+ 145,
+ "Ainda que apresentes qualquer espécie de sinal ante aqueles que receberam o Livro, jamais adotarão tua quibla nem tuadotarás a deles; nem tampouco eles seguirão a quibla de cada um mutuamente. Se te rendesses aos seus desejos, apesar doconhecimento que tens recebido, contar-te-ias entre os iníquos.",
+ 146,
+ "Aqueles a quem concedemos o Livro, conhecem-no como conhecem a seus próprios filhos, se bem que alguns delesocultam a verdade, sabendo-a.",
+ 147,
+ "(Esta é a) Verdade emanada de teu Senhor. Não sejas dos que dela duvidam!",
+ 148,
+ "Cada qual tem um objetivo traçado por Ele. Empenhai-vos na prática das boas Ações, porquanto, onde quer que vosacheis, Deus vos fará comparecer, a todos, perante Ele, porque Deus é Onipotente.",
+ 149,
+ "Aonde quer que te dirijas (ó Mohammad), orienta teu rosto para a Sagrada Mesquita, porque isto é a verdade do teuSenhor e Deus não está desatento a quanto fazeis.",
+ 150,
+ "Aonde quer que te dirijas, orienta teu rosto para a Sagrada Mesquita. Onde quer que estejais (ó muçulmanos), voltaivossos rostos na direção dela, para que ninguém, salvo os iníquos, tenha argumento com que refutar-vos. Não temais! Temeia Mim, a fim de que Eu vos agracie com Minhas mercês, para que vos ilumineis.",
+ 151,
+ "Assim também escolhemos, dentre vós, um Mensageiro de vossa raça para vos recitar Nossos versículos, purificar-vos, ensinar-vos o Livro e a sabedoria, bem como tudo quanto ignorais.",
+ 152,
+ "Recordai-vos de Mim, que Eu Me recordarei de vós. Agradecei-Me e não Me sejais ingratos!",
+ 153,
+ "Ó fiéis, amparai-vos na perseverança e na oração, porque Deus está com os perseverantes.",
+ 154,
+ "E não digais que estão mortos aqueles que sucumbiram pela causa de Deus. Ao contrário, estão vivos, porém vós nãopercebeis isso.",
+ 155,
+ "Certamente que vos poremos à prova mediante o temor, a fome, a perda dos bens, das vidas e dos frutos. Mas tu (óMensageiro), anuncia (a bem-aventurança) aos perseverantes -",
+ 156,
+ "Aqueles que, quando os aflige uma desgraça, dizem: Somos de Deus e a Ele retornaremos -",
+ 157,
+ "Estes serão cobertos pelas bênçãos e pela misericórdia de seu Senhor, e estes são os bem encaminhados.",
+ 158,
+ "As colinas de Assafa e Almarwa fazem parte dos rituais de Deus e, quem peregrinar à Casa, ou cumprir a `umra, nãocometerá pecado algum em percorrer a distância entre elas. Quem fizer espontaneamente além do que for obrigatório, saibaque Deus é Retribuidor, Sapientíssimo.",
+ 159,
+ "Aqueles que ocultam as evidências e a Orientação que revelamos, depois de as havermos elucidado aos humanos, noLivro, serão malditos por Deus e pelos imprecadores,",
+ 160,
+ "Salvo os que se arrependeram, emendaram-se e declararam (a verdade); a estes absolveremos porque somos oRemissório, o Misericordiosíssimo.",
+ 161,
+ "Sobre os incrédulos, que morrem na incredulidade, cairá a maldição de Deus, dos anjos e de toda humanidade.",
+ 162,
+ "Que pesará sobre eles eternamente. O castigo não lhes será atenuado, nem lhes será dado prazo algum.",
+ 163,
+ "Vosso Deus e Um só. Não há mais divindade além d'Ele, o Clemente, o Misericordiosíssimo.",
+ 164,
+ "Na criação dos céus e da terra; na alteração do dia e da noite; nos navios que singram o mar para o benefício dohomem; na água que Deus envia do céu, com a qual vivifica a terra, depois de haver sido árida e onde disseminou toda aespécie animal; na mudança dos ventos; nas nuvens submetidas entre o céus e a terra, (nisso tudo) há sinais para os sensatos.",
+ 165,
+ "Entre os humanos há aqueles que adotam, em vez de Deus, rivais (a Ele) aos quais professam igual amor que a Ele; masos fiéis só amam fervorosamente a Deus. Ah, se os iníquos pudessem ver (a situação em que estarão) quando virem o castigo (que os espera!), concluirão que o poder pertence a Deus e Ele é Severíssimo no castigo.",
+ 166,
+ "Então, os chefes negarão os seus prosélitos, virão o tormento e romper-se-ão os vínculos que os uniam.",
+ 167,
+ "E os prosélitos dirão: Ah, se pudéssemos voltar (à terra), repudiá-los-íamos como eles nos repudiaram! Assim Deuslhes demostrará que suas ações são a causa de seus lamentos, e jamais se salvarão do fogo infernal.",
+ 168,
+ "Ó humanos, desfrutai de todo o lícito e do que a terra contém de salutar e não sigais os passos de Satanás, porque évosso inimigo declarado.",
+ 169,
+ "Ele só vos induz ao mal e à obscenidade e a que digais de Deus o que ignorais.",
+ 170,
+ "Quando lhes é dito: Segui o que Deus revelou! Dizem: Qual! Só seguimos as pegadas dos nossos pais! Segui-las-iamainda que seus pais fossem destituídos de compreensão e orientação?",
+ 171,
+ "O exemplo de quem exorta os incrédulos é semelhante ao daquele que chama as bestas, as quais não ouvem senão gritose vozerios. São surdos, mudos, cegos, porque são insensatos.",
+ 172,
+ "Ó fiéis, desfrutai de todo o bem com que vos agraciamos e agradecei a Deus, se só a Ele adorais.",
+ 173,
+ "Ele só vos vedou a carniça, o sangue, a carne de suíno e tudo o que for sacrificado sob invocação de outro nome quenão seja de Deus. Porém, quem, sem intenção nem abuso, for impelido a isso, não será recriminado, porque Deus éIndulgente, Misericordiosíssimo.",
+ 174,
+ "Aqueles que ocultam o que Deus revelou no Livro, e o negociam a vil preço, não saciarão suas entranhas senão comfogo infernal. Deus não lhes falará no Dia da Ressurreição nem dos purificará, e sofrerão um doloroso castigo.",
+ 175,
+ "São aqueles que trocam a Orientação pelo extravio, e o perdão pelo castigo. Que resistência haverão de ter suportar ofogo infernal!",
+ 176,
+ "Isso, porque Deus revelou o Livro com a verdade e aqueles que disputaram sobre ele incorreram em profundo cisma.",
+ 177,
+ "A virtude não consiste só em que orientais vossos rostos até ao levante ou ao poente. A verdadeira virtude é a de quemcrê em Deus, no Dia do Juízo Final, nos anjos, no Livro e nos profetas; de quem distribuiu seus bens em caridade por amor aDeus, entre parentes, órfãos, necessitados, viajantes, mendigos e em resgate de cativos (escravos). Aqueles que observam aoração, pagam o zakat, cumprem os compromissos contraídos, são pacientes na miséria e na adversidade, ou durante oscombates, esses são os verazes, e esses são os tementes (a Deus).",
+ 178,
+ "Ó fiéis, está-vos preceituado o talião para o homicídio: livre por livre, escravo por escravo, mulher por mulher. Mas, se o irmão do morto perdoar o assassino, devereis indenizá-lo espontânea e voluntariamente. Isso é uma mitigação emisericórdia de vosso Senhor. Mas quem vingar-se, depois disso, sofrerá um doloroso castigo.",
+ 179,
+ "Tendes, no talião, a segurança da vida, ó sensatos, para que vos refreeis.",
+ 180,
+ "Está-vos prescrito que quando a morte se apresentar a algum de vós, se deixar bens, que faça testamento eqüitativo emfavor de seus pais e parentes; este é um dever dos que temem a Deus.",
+ 181,
+ "E aqueles que o alterarem, depois de o haverem ouvido, estarão cometendo (grave) delito. Sabeis que Deus éOnipotente, Sapientíssimo.",
+ 182,
+ "Mas quem, suspeitando parcialmente ou injustiça da parte do testador, emendar o testamento para reconciliar as partes, não será recriminado porque Deus é Indulgente, Misericordiosíssimo.",
+ 183,
+ "Ó fiéis, está-vos prescrito o jejum, tal como foi prescrito a vossos antepassados, para que temais a Deus.",
+ 184,
+ "Jejuareis determinados dias; porém, quem de vós não cumprir jejum, por achar-se enfermo ou em viagem, jejuará, depois, o mesmo número de dias. Mas quem, só à custa de muito sacrifício, consegue cumpri-lo, vier a quebrá-lo, redimir-se-á, alimentando um necessitado; porém, quem se empenhar em fazer além do que for obrigatório, será melhor. Mas, se jejuardes, será preferível para vós, se quereis sabê-lo.",
+ 185,
+ "O mês de Ramadan foi o mês em que foi revelado o Alcorão, orientação para a humanidade e vidência de orientação eDiscernimento. Por conseguinte, quem de vós presenciar o novilúnio deste mês deverá jejuar; porém, quem se achar enfermoou em viagem jejuará, depois, o mesmo número de dias. Deus vos deseja a comodidade e não a dificuldade, mas cumpri onúmero (de dias), e glorificai a Deus por ter-vos orientado, a fim de que (Lhe) agradeçais.",
+ 186,
+ "Quando Meus servos te perguntarem de Mim, dize-lhes que estou próximo e ouvirei o rogo do suplicante quando a Mimse dirigir. Que atendam o Meu apelo e que creiam em Mim, a fim de que se encaminhem.",
+ 187,
+ "Está-vos permitido, nas noites de jejum, acercar-vos de vossas mulheres, porque elas são vossas vestimentas e vós osois delas. Deus sabe o que vós fazíeis secretamente; porém, absorveu-vos e vos indultou. Acercai-vos agora delas edesfrutai do que Deus vos prescreveu. Comei e bebei até à alvorada, quando podereis distinguir o fio branco do fio negro. Retornai, então ao, jejum, até ao anoitecer, e não vos acerqueis delas enquanto estiverdes retraídos nas mesquitas. Tais sãoas normas de Deus; não as transgridais de modo algum. Assim Deus ilucida os Seus versículos aos humanos, a fim de que Otemam.",
+ 188,
+ "Não consumais as vossas propriedades em vaidades, nem as useis para subornar os juizes, a fim de vos apropriardesilegalmente, com conhecimento, de algo dos bens alheios.",
+ 189,
+ "Interrogar-te-ão sobre os novilúnios. Dize-lhes: Servem para auxiliar o homem no cômputo do tempo e noconhecimento da época da peregrinação. A virtude não consiste em que entreis nas casas pela porta traseira; a verdadeiravirtude é a de quem teme a Deus, para que prospereis.",
+ 190,
+ "Combatei, pela causa de Deus, aqueles que vos combatem; porém, não pratiqueis agressão, porque Deus não estima osagressores.",
+ 191,
+ "Matai-os onde quer se os encontreis e expulsai-os de onde vos expulsaram, porque a perseguição é mais grave do que ohomicídio. Não os combatais nas cercanias da Mesquita Sagrada, a menos que vos ataquem. Mas, se ali vos combaterem, matai-os. Tal será o castigo dos incrédulos.",
+ 192,
+ "Porém, se desistirem, sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 193,
+ "E combatei-os até terminar a perseguição e prevalecer a religião de Deus. Porém, se desistirem, não haverá maishostilidades, senão contra os iníquos.",
+ 194,
+ "Se vos atacarem um mês sagrado, combatei-os no mesmo mês, e todas as profanações serão castigadas com a pena detalião. A quem vos agredir, rechaçai-o, da mesma forma; porém, temei a Deus e sabei que Ele está com os que O temem.",
+ 195,
+ "Fazei dispêndios pela causa de Deus, sem permitir que as vossas mão contribuam para vossa destruição, e praticai obem, porque Deus aprecia os benfeitores.",
+ 196,
+ "E cumpri a peregrinação e a Umra, a serviço de Deus. Porém, se fordes impedidos disso, dedicai uma oferenda do quevos seja possível e não corteis os vossos cabelos até que a oferenda tenha alcançado o lugar destinado ao seu sacrifício. Quem de vós se encontrar enfermo, ou sofrer de alguma infecção na cabeça, e a raspar, redimir-se-á mediante o jejum, acaridade ou a oferenda. Entretanto, em condição de paz, aquele que realizar a Umra antes da peregrinação, deverá, terminada esta, fazer uma oferenda daquilo que possa. E quem não estiver em condições de fazê-lo, deverá jejuar três dias, durante a peregrinação, e sete, depois do seu regresso, totalizando dez dias. Esta penitência é para aquele que não residepróximo ao recinto da Mesquita Sagrada. Temei a Deus e sabei que é Severíssimo no castigo.",
+ 197,
+ "A peregrinação realiza em meses determinados. Quem a empreender, deverá abster-se das relações sexuais, daperversidade e da polémica. Tudo o que fizerdes de bom Deus o saberá. Equipai-vos de provisões, mas sabei que a melhorprovisão é a devoção. Temei-Me, pois, ó sensatos.",
+ 198,
+ "Não serei censurados se procurardes a graça do vosso Senhor (durante a peregrinação). Quando descerdes do monteArafat, recordai-vos de Deus perante os Monumento Sagrado e recordai-vos de como vos iluminou, ainda quando éreis, antes disso, dos extraviados.",
+ 199,
+ "Descei, também, de onde descem os demais, e implorai perdão de Deus, porque é Indulgente, Misericordiosíssimo.",
+ 200,
+ "Quando celebrardes os vossos ritos, recordai-vos de Deus como vos recordar dos vosso pais, ou com mais fervor. Entre os humanos há aqueles que dizem: \"Ó Senhor nosso, concede-nos o nosso bem-estar terreno!\" Porém,, não participarãoda ventura da outra vida.",
+ 201,
+ "Outros dizem: \"Ó Senhor nosso, concede-nos a graça deste mundo e do futuro, e preserva-nos do tormento infernal!\"",
+ 202,
+ "Estes, sim, lograrão a porção que tiverem merecido, porque Deus é Destro em ajustar contas.",
+ 203,
+ "Recordai-vos de Deus em dias contados. Mas, quem se apressar em (deixar o local) após dois dias, não serárecriminado; tampouco pecará aquele que se atrasar, se for temente a Deus. Temei a Deus, pois, e sabei que sereis reunidosperante Ele.",
+ 204,
+ "Entre os homens há aquele que, falando da vida terrena, te encanta, invocando Deus por Testemunha de tudo quantoencerra o seu coração embora seja o mais encarniçado dos inimigos (d'Ele).",
+ 205,
+ "E quando se retira, eis que a sua intenção é percorrer a terra para causar a corrupção, devastar as semeaduras e o gado, mesmo sabendo que a Deus desgosta a corrupção.",
+ 206,
+ "Quando lhe é dito que tema a Deus, apossa-se dele a soberbia, induzindo-o ao pecado. Mas o inferno ser-lhe-ásuficiente castigo. Que funesta morada!",
+ 207,
+ "Entre os homens há também aquele que se sacrifica para obter a complacência de Deus, porque Deus é Compassivopara com os servos.",
+ 208,
+ "Ó fiéis, abraçai o Islam na sua totalidade e não sigais os passos de Satanás, porque é vosso inimigo declarado.",
+ 209,
+ "Porém se tropeçardes, depois de vos terem chegado as evidências, sabei que Deus é Poderoso, Prudentíssimo.",
+ 210,
+ "Aguardam eles que lhes venha o Próprio Deus, na sombra dos cirros, juntamente com os anjos e, assim, tudo estejaterminado? Sabei que todo retornará a Deus.",
+ 211,
+ "Pergunta aos israelitas quantos sinais evidentes lhes temos mostrado. Mas quem deturpa conscientemente as mercês deDeus, depois de lhas terem chegado, saiba que Deus é Severíssimo no castigo.",
+ 212,
+ "Foi abrilhantada a vida terrena aos incrédulos e, por isso, zombam dos fiéis; porém, os tementes prevalecerão sobreeles no Dia da Ressurreição, porque Deus agracia imensuravelmente quem Lhe apraz.",
+ 213,
+ "No princípio os povos constituíam uma só nação. Então, Deus enviou os profetas como alvissareiros e admoestadores eenviou, por eles, o Livro, com a verdade, para dirimir as divergências a seu respeito, depois de lhes terem chegado asevidências, por egoística contumácia. Porém, Deus, com a Sua graça, orientou os fiéis para a verdade quanto àquilo que écausa das suas divergências; Deus encaminha quem Lhe apraz à senda reta.",
+ 214,
+ "Pretendeis, acaso, entrar no Paraíso, sem antes terdes de passar pelo que passaram os vossos antecessores? Açoitaram-nos a miséria e a adversidade, que os abalaram profundamente, até que, mesmo o Mensageiro e os fiéis, que comele estavam, disseram: Quando chegará o socorro de Deus? Acaso o socorro de Deus não está próximo?",
+ 215,
+ "Perguntam-te que parte devem gastar (em caridade). Dize-lhes: Toda a caridade que fizerdes, deve ser para os pais, parentes, órfãos, necessitados e viajantes (desamparados). E sabei que todo o bem que fizerdes, Deus dele tomaráconsciência.",
+ 216,
+ "Está-vos prescrita a luta (pela causa de Deus), embora o repudieis. É possível que repudieis algo que seja um bem paravós e, quiçá, gosteis de algo que vos seja prejudicial; todavia, Deus sabe todo o bem que fizerdes, Deus dele tomaráconsciência.",
+ 217,
+ "Quando te perguntarem se é lícito combater no mês sagrado, dize-lhes: A luta durante este mês é um grave pecado; porém, desviar os fiéis da senda de Deus, negá-Lo, privar os demais da Mesquita Sagrada e expulsar dela (Makka) os seushabitantes é mais grave ainda, aos olhos de Deus, porque a perseguição é pior do que o homicídio. Os incrédulos, enquantopuderem, não cessarão de vos combater, até vos fazerem renunciar à vossa religião; porém, aqueles dentre vós querenegarem a sua fé e morrerem incrédulos tornarão as suas obras sem efeito, neste mundo e no outro, e serão condenados aoinferno, onde permanecerão eternamente.",
+ 218,
+ "Aqueles que creram, migraram e combateram pela causa de Deus poderão esperar de Deus a misericórdia, porque Deusé Indulgente, Misericordiosíssimo.",
+ 219,
+ "Interrogam-te a respeito da bebida inebriante e do jogo de azar; dize-lhes: Em ambos há benefícios e malefícios para ohomem; porém, os seus malefícios são maiores do que os seus benefícios. Perguntam-te o que devem gastar (em caridade). Dize-lhes: Gastai o que sobrar das vossas necessidades. Assim Deus vos elucida os Seus versículos, a fim de que mediteis,",
+ 220,
+ "Nesta vida e na outra. Consultar-te-ão a respeito dos órfãos; dize-lhes: Fazer-lhes o bem é o melhor. E se misturardesvossos assuntos com os deles, serão vossos irmãos; sabei que Deus distingue o corrupto do benfeitor. Porém, se Deusquisesse, Ter-vos-ia afligido, porque é Poderoso, Prudentíssimo.",
+ 221,
+ "Não desposareis as idólatras até que elas se convertam, porque uma escrava fiel é preferível a uma idólatra, ainda queesta vos apraza. Tampouco consintais no matrimônio das vossas filhas com os idólatras, até que estes se tenham convertido, porque um escravo fiel é preferível a um livre idólatra, ainda que este vos apraza. Eles arrastam-vos para o fogo infernal; em troca, Deus, com Sua benevolência, convoca-vos ao Paraíso e ao perdão e elucida os Seus versículos aos humanos, paraque Dele recordem.",
+ 222,
+ "Consultar-te-ão acerca da menstruação; dize-lhes: É uma impureza. Abstende-vos, pois, das mulheres durante amenstruação e não vos acerqueis delas até que se purifiquem; quando estiverem purificadas, aproximai-vos então delas, como Deus vos tem disposto, porque Ele estima os que arrependem e cuidam da purificação.",
+ 223,
+ "Vossas mulheres são vossas semeaduras. Desfrutai, pois, da vossa semeadura, como vos apraz; porém, praticai boasobras antecipadamente, temei a Deus e sabei que compareceis perante Ele. E tu (ó Mensageiro), anuncia aos fiéis (abem-aventurança).",
+ 224,
+ "Não tomeis (o nome de) Deus como desculpa, em vosso juramento, para não serdes benevolentes, devotos ereconciliardes os homens, porque Deus é Oniouvinte, Sapientíssimo.",
+ 225,
+ "Deus não vos recriminará por vossos juramentos involuntários; porém, responsabilizar-vos-á pelas intenções dosvossos corações. Sabei que Deus é Tolerante, Indulgentíssimo.",
+ 226,
+ "Aqueles que juram abster-se das suas mulheres deverão aguardar um prazo de quatro meses. Porém, se então voltarem aelas, saibam que Deus é Indulgente, Misericordiosíssimo.",
+ 227,
+ "Mas se revolverem divorciar-se, saibam que Deus é Oniouvinte, Sapientíssimo.",
+ 228,
+ "As divorciadas aguardarão três menstruação e, se crêem em Deus e no Dia do Juízo Final, não deverão ocultar o queDeus criou em suas entranhas. E seus esposos têm mais direito de as readmitir, se desejarem a reconciliação, porque elastem direitos equivalentes aos seus deveres, embora os homens tenham um grau sobre elas, porquanto Deus é Poderoso, Prudentíssimo.",
+ 229,
+ "O divórcio revogável só poderá ser efetuado duas vezes. Depois, tereis de conservá-las convosco dignamente ouseparar-vos com benevolência. Está-vos vedado tirar-lhes algo de tudo quanto lhes haveis dotado, a menos que ambostemam contrariar as leis de Deus. Se temerdes (vós juizes) que ambos as contrariem, não serão recriminados, se ela der algopela vossa liberdade. Tais são os limites de Deus, não os ultrapasseis, pois; aqueles que os ultrapassarem serão iníquos.",
+ 230,
+ "Porém, se ele se divorciar irrevogavelmente dela, não lhe será permitido tomá-la de novo por esposa legal até que setenha casado com outro e também se tenha divorciado deste; não serão censurados se se reconciliarem, desde que sintam quepoderão observar as leis de Deus. Tais são os limites de Deus, que Ele elucida para os sensatos.",
+ 231,
+ "Quando vos divorciardes das mulheres, ao terem elas cumprido o seu período prefixado, tomai-as de voltaeqüitativamente, ou liberta-as eqüitativamente. Não as tomeis de volta com o intuito de injuriá-las injustamente, porquequem tal fizer condenar-se-á. Não zombeis dos versículos de Deus e recordai-vos das Suas mercês para convosco e dequanto vos revelou no Livro, com sabedoria, mediante o qual vos exorta. Temei a Deus e sabei que Deus é Onisciente.",
+ 232,
+ "Se vos divorciardes das mulheres, ao terem elas cumprido o seu período prefixado, não as impeçais de renovar a uniãocom os seus antigos maridos, se ambos se reconciliarem voluntariamente. Com isso se exorta a quem dentre vós crê em Deuse no Dia do Juízo Final. Isso é mais puro e mais virtuoso para vós, porque Deus sabe e vós ignorais.",
+ 233,
+ "As mães (divorciadas) amamentarão os seus filhos durante dois anos inteiros, aos quais desejarem completar alactação, devendo o pai mantê-las e vesti-las eqüitativamente. Ninguém é obrigado a fazer mais do que está ao seu alcance. Nenhuma mãe será prejudicada por causa do seu filho, nem tampouco o pai, pelo seu. O herdeiro do pai tem as mesmasobrigações; porém, se ambos, de comum acordo e consulta mútua, desejarem a desmama antes do prazo estabelecido, sãoserão recriminados. Se preferirdes tomar uma ama para os vossos filhos, não sereis recriminados, sempre que pagueis, estritamente, o que tiverdes prometido. Temei a Deus e sabe que Ele vê tudo quanto fazeis.",
+ 234,
+ "Quanto àqueles, dentre vós, que falecerem e deixarem viúvas, estas deverão aguardar quatro meses e dez dias. Aocumprirem o período prefixado, não sereis responsáveis por tudo quanto fizerem honestamente das suas pessoas, porqueDeus está bem inteirado de tudo quanto fazeis.",
+ 235,
+ "Tampouco sereis censurados se fizerdes alusão a uma proposta de casamento e estas mulheres, ou pensardes emfazê-lo. Deus bem sabe que vos importais com elas; porém, não vos declareis a elas indecorosamente; fazei-o em termoshonestos e não decidais sobre o contrato matrimonial até que haja transcorrido o período prescrito; sabei que Deus conhecetudo quanto ensejais. Temei-O, pois, e sabeis que Ele é Tolerante, Indulgentíssimo.",
+ 236,
+ "Não sereis recriminados se vos divorciardes das vossas mulheres antes de as haverdes tocado ou fixado o dote; porém, concedei-lhes um presente; rico, segundo as suas posses, e o pobre, segundo as suas, porque conceder esse presente éobrigação dos benfeitores.",
+ 237,
+ "E se vos divorciardes delas antes de as haverdes tocado, tendo fixado o dote, corresponder-lhes-á a metade do que lhestiverdes fixado, a menos que, ou elas abram mão (disso), ou faça quem tiver o contrato matrimonial em seu poder. Sabei queo perdão está mais próximo da virtude e não esqueçais da liberalidade entre vós, porque Deus bem vê tudo quanto fazeis.",
+ 238,
+ "Observai as orações, especialmente as intermediárias, e consagrai-vos fervorosamente a Deus.",
+ 239,
+ "Se estiverdes em perigo, orai andando ou cavalgando; porém, quando estiverdes seguros, invocai Deus, tal como Elevos ensinou o que não sabíeis.",
+ 240,
+ "Quanto àqueles, dentre vós, que faleceram e deixarem viúvas, a elas deixarão um legado para o seu sustento durante umano, sem que sejam forçadas a abandonar suas casas. Porém, se elas voluntariamente as abandonarem, não sereisresponsáveis pelo que fizerem, moderadamente, de si mesmas, porque Deus é Poderoso, Prudentíssimo.",
+ 241,
+ "Proporcionar o necessário às divorciadas (para sua manutenção) é um dever dos tementes.",
+ 242,
+ "Assim Deus vos elucida os Seus versículos para que raciocineis.",
+ 243,
+ "Não reparastes naqueles que, aos milhares, fugiram das suas casas por temor à morte? Deus lhes disse: Morrei! Depoisos ressuscitou, porque é Agraciante para com os humanos; contudo a maioria não Lhe agradece.",
+ 244,
+ "Combatei pela causa de Deus e sabei que Ele é Oniouvinte, Sapientíssimo.",
+ 245,
+ "Quem estaria disposto a emprestar a Deus, espontaneamente, para que Ele se multiplique infinitamente? Deus restringeou prodigaliza a Sua graça, e a Ele retornareis.",
+ 246,
+ "Não reparastes (ó Mohammad) nos líderes dos israelitas que, depois da morte de Moisés, disseram ao seu profeta: Designa-nos um rei, para combatermos pela causa de Deus. E ele perguntou: Seria possível que não combatêsseis quandovos fosse imposta a luta? Disseram: E que escusa teríamos para não combater pela causa de Deus, já que fomos expulsosdos nossos lares e afastados dos nossos filhos? Porém, quando lhes foi ordenado o combate, quase todos o recusaram, menos uns poucos deles. Deus bem conhece os iníquos.",
+ 247,
+ "Então, seu profeta lhes disse: Deus vos designou Talut por rei. Disseram: Como poderá ele impor a sua autoridadesobre nós, uma vez que temos mais direto do que ele à autoridade, e já que ele nem sequer foi agraciado com bastantesriquezas? Disse-lhes: É certo que Deus o elegeu sobre vós, concedendo-lhe superioridade física e moral. Deus concede aSua autoridade a que Lhe apraz, e é Magnificente, Sapientíssimo.",
+ 248,
+ "E o seu profeta voltou a dizer: O sinal da sua autoridade consistirá em que vos chegará a Arca da Aliança, conduzidapor anjos, contendo a paz do vosso Senhor e algumas relíquias, legadas pela família de Moisés e de Aarão. Nisso terei umsinal, se sois fiéis.",
+ 249,
+ "Quando Saul partiu com o seu exército, disse: É certo que Deus vos provará, por meio de um rio. Sabei que quem nelese saciar não será dos meus; sê-lo-á quem não tomar de suas águas mais do que couber na concavidade da sua mão. Quasetodos se saciaram, menos uns tantos. Quando ele e os fiéis atravessaram o rio, (alguns) disseram: Hoje não podemos comGolias e com seu exército. Porém, aqueles que creram que deveriam encontrar Deus disseram: Quantas vezes um pequenogrupo venceu outro mais numeroso, pela vontade de Deus, porquanto Deus está com os perseverantes!",
+ 250,
+ "E quanto se defrontaram com Golias e com o seu exército, disseram: Ó Senhor nosso, infunde-nos constância, firma osnossos passos e concede-nos a vitória sobre o povo incrédulo!",
+ 251,
+ "E com a vontade de Deus os derrotaram; Davi matou Golias e Deus lhe outorgou o poder e a sabedoria e lhe ensinoutudo quanto Lhe aprouve. Se Deus não contivesse aos seres humanos, uns, em relação aos outros, a terra se corromperia; porém, Ele é Agraciante para com a (Está incompleto no Alcorão)",
+ 252,
+ "Tais são os versículos de Deus que realmente te ditamos, porque és um dos mensageiros.",
+ 253,
+ "De tais mensageiros preferimos uns aos outros. Entre eles, se encontram aqueles a quem Deus falou, e aqueles queelevou em dignidade. E concedemos a Jesus, filho de Maria, as evidências, e o fortalecemos com o Espírito da Santidade. Se Deus quisesse, aqueles que os sucederam não teriam combatido entre si, depois de lhes terem chegado as evidências. Mas discordaram entre si; uns acreditaram e outros negaram. Se Deus quisesse, não teriam digladiado; porém, Deus dispõecomo quer.",
+ 254,
+ "Ó fiéis, fazei caridade com aquilo com que vos agraciamos, antes que chegue o dia em que não haverá barganha, amizade, nem intercessão. Sabei que os incrédulos são iníquos.",
+ 255,
+ "Deus! Não há mais divindade além d'Ele, Vivente, Subsistente, a Quem jamais alcança a inatividade ou o sono; d'Ele étudo quanto existe nos céus e na terra. Quem poderá interceder junto a Ele, sem a Sua anuência? Ele conhece tanto o passadocomo o futuro, e eles (humanos) nada conhecem a Sua ciência, senão o que Ele permite. O Seu Trono abrange os céus e aterra, cuja preservação não O abate, porque é o Ingente, o Altíssimo.",
+ 256,
+ "Não há imposição quanto à religião, porque já se destacou a verdade do erro. Quem renegar o sedutor e crer em Deus, Ter-se-á apegado a um firme e inquebrantável sustentáculo, porque Deus é Oniouvinte, Sapientíssimo.",
+ 257,
+ "Deus é o Protetor dos fiéis; é Quem os retira das trevas e os transportam para a luz; ao contrário, os incrédulos, cujosprotetores são os sedutores, para que os arrastam da luz, levando-os para as trevas, serão condenados ao inferno ondepermanecerão eternamente.",
+ 258,
+ "Não reparaste naquele que disputava com Abraão acerca de seu Senhor, por lhe haver Deus concedido o poder? Quando Abraão lhe disse: Meu Senhor é Quem dá a vida e a morte! retrucou: Eu também dou a vida e a morte. Abraão disse: Deus faz sair o sol do Oriente, faze-o tu sair do Ocidente. Então o incrédulo ficou confundido, porque Deus não ilumina osiníquos.",
+ 259,
+ "Tampouco reparastes naquele que passou por uma cidade em ruínas e conjecturou: Como poderá Deus ressuscitá-ladepois de sua morte? Deus o manteve morto durante cem anos; depois o ressuscitou e lhe perguntou: Quanto tempopermaneceste assim? Respondeu: Permaneci um dia ou parte dele. Disse-lhe: Qual! Permaneceste cem anos. Observa a tuacomida e a tua bebida; constata que ainda não se deterioraram. Agora observa teu asno (não resta dele mais do que aossada); isto é para fazer de ti um exemplo para os humanos. Observa como dispomos os seus ossos e em seguida osrevestimos de carne. Diante da evidência, exclamou: Reconheço que Deus é Onipotente!",
+ 260,
+ "E de quando Abraão implorou: Ó Senhor meu, mostra-me como ressuscitas os mortos; disse-lhe Deus: Acaso, aindanão crês? Afirmou: Sim, porém, faze-o, para a tranqüilidade do meu coração. Disse-lhe: Toma quatro pássaros, treina-ospara que voltem a ti, e coloca uma parte deles sobre cada montanha; chama-os, em seguida, que virão, velozmente, até ti; esabe que Deus é Poderoso, Prudentíssimo.",
+ 261,
+ "O exemplo daqueles que gastam os seus bens pela causa de Deus é como o de um grão que produz sete espigas, contendo cada espiga cem grãos. Deus multiplica mais ainda a quem Lhe apraz, porque é Munificente, Sapientíssimo.",
+ 262,
+ "Aqueles que gastam os bens pela causa de Deus, sem acompanhar a sua caridade com exprobação ou agravos, terão asua recompensa ao lado do Senhor e não serão presas do temor, nem se atribularão.",
+ 263,
+ "Uma palavra cordial e uma indulgência são preferíveis à caridade seguida de agravos, porque Deus é, por Si, Tolerante, Opulentíssimo.",
+ 264,
+ "Ó fiéis, não desmereçais as vossas caridades com exprobação ou agravos como aquele que gasta os seus bens, porostentação, diante das pessoas que não crê em Deus, nem no Dia do Juízo Final. O seu exemplo é semelhante ao de umarocha coberta por terra que, ao ser atingida por um aguaceiro, fica a descoberto. Em nada se beneficiará, de tudo quantofizer, porque Deus não ilumina os incrédulos.",
+ 265,
+ "Por outra, o exemplo de quem gasta os seus bens espontaneamente, aspirando à complacência de Deus para fortalecer asua alma, é como um pomar em uma colina que, ao cair a chuva, tem os seus frutos duplicados; quando a chuva não o atinge, basta-lhe o orvalho. E Deus bem vê tudo quanto fazeis.",
+ 266,
+ "Desejaria algum de vós, possuindo um pomar cheio de tamareiras e videiras, abaixo das quais corressem os rios, emque houvesse toda espécie de frutos, e surpreendesse a velhice com filhos de tenra idade, que o açoitasse e consumisse umfuracão ignífero? Assim Deus elucida os versículos, a fim de que mediteis.",
+ 267,
+ "Ó fiéis, contribuí com o que de melhor tiverdes adquirido, assim como com o que vos temos feito brotar da terra, e nãoescolhais o pior para fazerdes caridade, sendo que vós não aceitaríeis para vós mesmos, a não ser com os olhos fechados. Sabei que Deus é, por Si, Opulento, Laudabilíssimo.",
+ 268,
+ "Satanás vos atemoriza com a miséria e vos induz à obscenidade; por outro lado, Deus vos promete a Sua indulgência ea Sua graça, porque é Munificente, Sapientíssimo.",
+ 269,
+ "Ele concede sabedoria a quem Lhe apraz, e todo aquele que for agraciado com ela, sem dúvida terá logrado um imensobem; porém, salvo os sensatos, ninguém o compreende.",
+ 270,
+ "De cada caridade que dispensais e de cada promessa que fazeis, Deus o sabe; sabei que os iníquos jamais terãoprotetores.",
+ 271,
+ "Se fizerdes caridade abertamente, quão louvável será! Porém, se a fizerdes, dando aos pobres dissimuladamente, serápreferível para vós, e isso vos absolverá de alguns dos vossos pecados, porque Deus está inteirado de tudo quanto fazeis.",
+ 272,
+ "A ti (ó Mensageiro) não cabe guiá-los; porém, Deus guia a quem Lhe apraz. Toda a caridade que fizerdes será emvosso próprio benefício, e não pratiqueis boas ações senão com a aspiração de agradardes a Deus. Sabei que toda caridadeque fizerdes vos será recompensada com vantagem, e não sereis injustiçados.",
+ 273,
+ "(Concedei-a) aos que empobrecerem empenhados na causa de Deus, que não podem se dar a negócios na terra, e que oignorante não os crê necessitados, porque são reservados. Tu os reconhecerás por seus aspectos, porque não mendigamimpertinentemente. De toda a caridade que fizerdes Deus saberá.",
+ 274,
+ "Aqueles que gastam dos seus bens, tanto de dia como à noite, quer secreta, quer abertamente, obterão a sua recompensano Senhor e não serão presas do temor, nem se atribularão.",
+ 275,
+ "Os que praticam a usura só serão ressuscitados como aquele que foi perturbado por Satanás; isso, porque disseram quea usura é o mesmo que o comércio; no entanto, Deus consente o comércio e veda a usura. Mas, quem tiver recebido umaexortação do seu Senhor e se abstiver, será absolvido pelo passado, e seu julgamento só caberá a Deus. Por outro lado, aqueles que reincidirem, serão condenados ao inferno, onde permanecerão eternamente.",
+ 276,
+ "Deus abomina a usura e multiplica a recompensa aos caritativos; Ele não aprecia nenhum incrédulo, pecador.",
+ 277,
+ "Os fiéis que praticarem o bem, observarem a oração e pagarem o zakat, terão a sua recompensa no Senhor e não serãopresas do temor, nem se atribularão.",
+ 278,
+ "Ó fiéis, temei a Deus e abandonai o que ainda vos resta da usura, se sois crentes!",
+ 279,
+ "Mas, se tal acatardes, esperai a hostilidade de Deus e do Seu Mensageiro; porém, se vos arrependerdes, reavereisapenas o vosso capital. Não defraudeis e não sereis defraudados.",
+ 280,
+ "Se vosso devedor se achar em situação precária, concedei-lhe uma moratória; mas, se o perdoardes, será preferívelpara vós, se quereis saber.",
+ 281,
+ "E temei o dia em que retornareis a Deus, e em que cada alma receberá o seu merecido, sem ser defraudada.",
+ 282,
+ "Ó fiéis, quando contrairdes uma dívida por tempo fixo, documentai-a; e que um escriba, na vossa presença, ponha-afielmente por escrito; que nenhum escriba se negue a escrever, como Deus lhe ensinou. Que o devedor dite, e que tema aDeus, seu Senhor, e nada omita dele (o contrato). Porém, se o devedor for insensato, ou inapto, ou estiver incapacitado aditar, que seu procurador dite fielmente, por ele. Chamai duas testemunhas masculinas de vossa preferência, a fim de que, seuma delas se esquecer, a outra recordará. Que as testemunhas não se neguem, quando forem requisitadas. Não desdenheisdocumentar a dívida, seja pequena ou grande, até ao seu vencimento. Este proceder é o mais eqüitativo aos olhos de Deus, omais válido para o testemunho e o mais adequado para evitar dúvidas. Tratando-se de comércio determinado, feito de mãoem mão, não incorrereis em falta se não o documentardes. Apelai para testemunhas quando mercadejardes, e que o escriba eas testemunhas não seja coagidos; se os coagirdes, cometereis delito. Temei a Deus e Ele vos instruirá, porque é Onisciente.",
+ 283,
+ "Se estiverdes em viagem e não encontrardes um escriba, deixareis um penhor resgatável; quando vos confiardesreciprocamente, saiba, quem tiver recebido o depósito, que deverá restituí-lo, temendo a Deus, seu Senhor. Não vos negueisa prestar testemunho; saiba, pois, quem o negar, que seu coração é nocivo. Deus sabe o que fazeis.",
+ 284,
+ "A Deus pertence tudo quanto há nos céus e na terra. Tanto o que manifestais, como o que ocultais, Deus vo-lo julgará. Ele perdoará a quem desejar e castigará a quem Lhe aprouver, porque é Onipotente.",
+ 285,
+ "O Mensageiro crê no que foi revelado por seu Senhor e todos os fiéis crêem em Deus, em Seus anjos, em Seus Livros eem Seus mensageiros. Nós não fazemos distinção entre os Seus mensageiros. Disseram: Escutamos e obedecemos. Sóanelamos a Tua indulgência, ó Senhor nosso! A Ti será o retorno!",
+ 286,
+ "Deus não impõe a nenhuma alma uma carga superior às suas forças. Beneficiar-se-á com o bem quem o tiver feito esofrerá mal quem o tiver cometido. Ó Senhor nosso, não nos condenes, se nos esquecermos ou nos equivocarmos! Ó Senhornosso, não nos imponhas carga, como a que impuseste a nossos antepassados! Ó Senhor nosso, não nos sobrecarregues como que não podemos suportar! Tolera-nos! Perdoa-nos! Tem misericórdia de nós! Tu és nosso Protetor! Concede-nos a vitóriasobre os incrédulos!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/20.json b/share/quran-json/TheQuran/pt/20.json
new file mode 100644
index 0000000..766bed3
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/20.json
@@ -0,0 +1,284 @@
+[
+ {
+ "id": "20",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Taha",
+ "translated_name": "Ta-Ha",
+ "verse_count": 135,
+ "slug": "taha",
+ "codepoints": [
+ 1591,
+ 1607
+ ]
+ },
+ 1,
+ "Taha.",
+ 2,
+ "Não te revelamos o Alcorão para que te mortifiques.",
+ 3,
+ "Mas sim como exortação aos tementes.",
+ 4,
+ "É a revelação de Quem criou a terra e os altos céus,",
+ 5,
+ "Do Clemente, Que assumiu o Trono.",
+ 6,
+ "Seu é tudo o que existe nos céus, o que há na terra, o que há entre ambos, bem como o que existe sob a terra.",
+ 7,
+ "Não é necessário que o homem levante a voz, porque Ele conhece o que é secreto e ainda o mais oculto.",
+ 8,
+ "Deus! Não há mais divindade além d'Ele! Seus são os mais sublimes atributos.",
+ 9,
+ "Chegou-te, porventura, a história de Moisés?",
+ 10,
+ "Quando viu o fogo, disse à sua família: Permanecei aqui, porque lobriguei o fogo; quiçá vos traga dele uma áscua ou, poroutra, ache ao redor do fogo alguma orientação.",
+ 11,
+ "Porém, quando chegou a ele, foi chamado: Ó Moisés,",
+ 12,
+ "Sou teu Senhor! Tira as tuas sandálias, porque estás no vale sagrado de Tôua.",
+ 13,
+ "Eu te escolhi. Escuta, pois, o que te será inspirado:",
+ 14,
+ "Sou Deus. Não há divindade além de Mim! Adora-Me, pois, e observa a oração, para celebrar o Meu nome,",
+ 15,
+ "Porque a hora se aproxima - desejo conservá-la oculta, a fim de que toda a alma seja recompensada segundo o seumerecimento.",
+ 16,
+ "Que não te seduza por aquele que não crê nela (a Hora) e se entrega à concupiscência, porque perecerás!",
+ 17,
+ "Que levas em tua mão destra, ó Moisés?",
+ 18,
+ "Respondeu-Lhe: É o meu cajado, sobre o qual me apoio, e com o qual quebro a folhagem para o meu rebanho; e, ademais, serve-me para outros usos.",
+ 19,
+ "Ele lhe ordenou: Arroja-o, ó Moisés!",
+ 20,
+ "E o arrojou, e eis que se converteu em uma serpente, que se pôs a rastejar.",
+ 21,
+ "Ordenou-lhe ainda: Agarra-a sem temor, porque a reverteremos ao seu primitivo estado.",
+ 22,
+ "Junta a mão ao te flanco e, quando a retirares, estará branca, imaculada; constitui-se-á isso em outro sinal,",
+ 23,
+ "Para que te demonstremos alguns dos Nossos maiores portentos.",
+ 24,
+ "Vai ao Faraó, porque ele se extraviou.",
+ 25,
+ "Suplicou-lhes: Ó Senhor meu, dilata-me o peito;",
+ 26,
+ "Facilita-me a tarefa;",
+ 27,
+ "E desata o nó de minha língua,",
+ 28,
+ "Para que compreendam a minha fala.",
+ 29,
+ "E concede-me um vizir dentre os meus,",
+ 30,
+ "Meu irmão Aarão,",
+ 31,
+ "Que poderá me fortalecer.",
+ 32,
+ "E associa-o à minha missão,",
+ 33,
+ "Para que Te glorifiquemos intensamente.",
+ 34,
+ "E para mencionar-Te constantemente.",
+ 35,
+ "Porque só Tu és o nosso Velador.",
+ 36,
+ "Disse-lhe: Teu pedido foi atendido, ó Moisés!",
+ 37,
+ "Já te havíamos agraciado outra vez,",
+ 38,
+ "Quando inspiramos a tua mãe o que lhe foi inspirado:",
+ 39,
+ "Põe (teu filho) em um cesto e lança-o ao rio, para que este leve à orla, donde o recolherá um inimigo Meu, que é tambémdele. Depois, Eu lhes infundi amor para contigo, para que fosses criado sob a Minha vigilância.",
+ 40,
+ "Foi quando tua irmã apareceu e disse: Quereis que vos indique quem se encarregará dele? Então, restituímos-te à tuamãe, para que se consolasse e não se condoesse. E mataste um homem; porém, libertamos-te da represália e te provamos devárias maneiras. Permaneceste anos entre o povo de Madian; então (aqui) compareceste, como te foi ordenado, ó Moisés!",
+ 41,
+ "E te preparei para Mim.",
+ 42,
+ "Vai com teu irmão, portando os Meus sinais, e não descures do Meu nome.",
+ 43,
+ "Ide ambos ao Faraó, porque ele se transgrediu.",
+ 44,
+ "Porém, falai-lhe afavelmente, a fim de que fique ciente ou tema.",
+ 45,
+ "Disseram: Ó Senhor nosso, tememos que ele nos imponha um castigo ou que transgrida (a lei)!",
+ 46,
+ "Deus lhes disse: Não temais, porque estarei convosco; ouvirei e verei (tudo).",
+ 47,
+ "Ide, pois, a ele, e dizei-lhe: Em verdade, somos os mensageiros do teu Senhor; deixa sair conosco os israelitas e não osatormentes, pois trouxemos-te um sinal do teu Senhor. Que a paz esteja com quem segue a orientação!",
+ 48,
+ "Foi-nos revelado que o castigo recairá sobre quem nos desmentir e nos desdenhar.",
+ 49,
+ "Perguntou (o Faraó): E quem é o vosso Senhor, ó Moisés?",
+ 50,
+ "Respondeu-lhe: Nosso Senhor foi Quem deu a cada coisa sua natureza; logo a seguir, encaminhou-a com retidão!",
+ 51,
+ "Inquiriu (o Faraó): E que aconteceu às gerações passadas?",
+ 52,
+ "Respondeu-lhes: Tal conhecimento está em poder do meu Senhor, registrado no Livro. Meu Senhor jamais Se equivoca, nem Se esquece de coisa alguma.",
+ 53,
+ "Foi Ele Quem vos destinou a terra por leito, traçou-vos caminhos por ela, e envia água do céu, com a qual faz germinardistintos pares de plantas.",
+ 54,
+ "Comei e apascentai o vosso gado! Em verdade, nisto há sinais para os sensatos.",
+ 55,
+ "Dela vos criamos, a ela retornareis, e dela vos faremos surgir outra vez.",
+ 56,
+ "E eis que lhe mostramos todos os Nossos sinais; porém (o Faraó) os desmentiu e os negou,",
+ 57,
+ "Dizendo: Ó Moisés, vens, acaso, para nos expulsar das nossas terras com a tua magia?",
+ 58,
+ "Em verdade, apresentar-te-emos uma magia semelhante. Fixemos, pois, um encontro em um lugar eqüidistante (deste), aoqual nem tu, nem nós faltaremos.",
+ 59,
+ "Disse-lhe (Moisés): Que a reunião se celebre no Dia do Festival, em que o povo é congregado, em plena luz da manhã.",
+ 60,
+ "Então o Faraó se retirou, preparou a sua conspiração e depois retornou.",
+ 61,
+ "Moisés lhes disse: Ai de vós! Não forjeis mentiras acerca de Deus! Ele vos exterminará com um severo castigo; sabeique quem forjar (mentiras) estará frustrado.",
+ 62,
+ "Eles discutiram o assunto entre si e deliberaram confidentemente.",
+ 63,
+ "Disseram: Estes são dois magos que, com a sua magia, querem expulsar-vos da vossa terra e acabar com os vossométodo exemplar.",
+ 64,
+ "Concertai o vosso plano; apresentai-vos, então, em fila, porque quem vencer, hoje, será venturoso.",
+ 65,
+ "Perguntaram: Ó Moisés, arrojarás tu ou seremos nós os primeiros a arrojar?",
+ 66,
+ "Respondeu-lhes Moisés: Arrojai vós! E eis que lhe pareceu que suas cordas e cajados se moviam, em virtude da suamagia.",
+ 67,
+ "Moisés experimentou certo temor.",
+ 68,
+ "Asseguramos-lhes: Não temas, porque tu és superior.",
+ 69,
+ "Arroja o que levam em tua mão direita, que devorará tudo quanto simularam, porque tudo o que fizerem não é mais doque uma conspiração de magia, e jamais triunfará o mago, onde quer que se apresente.",
+ 70,
+ "Assim os magos se prostraram, dizendo: Cremos no Senhor de Aarão e de Moisés!",
+ 71,
+ "Disse (o Faraó): Credes n'Ele sem que eu vo-lo permita? Certamente ele é o vosso líder e vos ensinou a magia. Juro quevos amputarei a mão e o pé de lados opostos e vos crucificarei em troncos de tamareiras; assim, sabereis quem é maissevero e mais persistente no castigo.",
+ 72,
+ "Disseram-lhe: Por Quem nos criou, jamais te preferiremos às evidências que nos chegaram! Faze o que te aprouver, tusomente podes condenar-nos nesta vida terrena.",
+ 73,
+ "Nós cremos em nosso Senhor, Que talvez perdoe os nossos pecados, bem como a magia que nos obrigastes a fazer, porque Deus é preferível e mais persistente.",
+ 74,
+ "E quem comparecer como pecador, ante seu Senhor, merecerá o inferno, onde não poderá morrer nem viver.",
+ 75,
+ "E aqueles que comparecerem ante Ele, sendo fiéis e tendo praticado o bem, obterão as mais elevadas dignidades;",
+ 76,
+ "Jardins do Éden, abaixo dos quais correm rios, onde morarão eternamente. Tal será a retribuição de quem se purifica.",
+ 77,
+ "Revelamos a Moisés: Parte à noite, com os Meus servos, e abre-lhes um caminho seco, por entre o mar! Não receies seralcançado, nem tampouco experimentes temor!",
+ 78,
+ "O Faraó os perseguiu com os soldados; porém, a água os tragou a todos!",
+ 79,
+ "E assim, o Faraó desviou o seu povo, em vez de encaminhá-lo.",
+ 80,
+ "Ó israelitas, Nós vos salvamos do vosso inimigo e vos fizemos uma promessa do lado direito do Monte (Sinai), e vosenviamos o maná e as condornizes,",
+ 81,
+ "(Dizendo-vos): Desfrutai de todo o lícito com que vos agraciamos, mas não abuseis disso, porque a Minha abominaçãorecairá sobre vós; aquele sobre quem recair a Minha abominação, estará verdadeiramente perdido.",
+ 82,
+ "Somos Indulgentíssimo para com o fiel, arrependido, que pratica o bem e se encaminha.",
+ 83,
+ "Que fez com que te apressasses em abandonar o teu povo, ó Moisés?",
+ 84,
+ "Respondeu: Eles estão a seguir os meus passos; por isso, apressei-me até Ti, ó Senhor, para comprazer a ti.",
+ 85,
+ "Disse-lhe (Deus): Em verdade, em tua ausência, quisemos tentar o teu povo, e o samaritano logrou desviá-los.",
+ 86,
+ "Moisés, encolerizado e penalizado, retornou ao seu povo, dizendo: Ó povo meu, acaso vosso Senhor não vos fez umadigna promessa? Porventura o tempo vos pareceu demasiado longo? Ou quisestes que vos açoitasse a abominação do vossoSenhor, e por isso quebrastes a promessa que me fizestes?",
+ 87,
+ "Responderam: Não quebramos a promessa que te fizemos por nossa vontade, mas fomos obrigados a carregar osornamentos pesados do povo, e os lançamos ao fogo, tal qual o samaritano sugeriu.",
+ 88,
+ "Este forjou-lhes o corpo de um bezerro que mugia, e disseram: Eis aqui o vosso deus, o deus que Moisés esqueceu!",
+ 89,
+ "Porém, não reparavam que aquele bezerro não podia responder-lhes, nem possuía poder para prejudicá-los nembeneficiá-los?",
+ 90,
+ "Aarão já lhes havia dito: Ó povo meu, com isto vós somente fostes tentados; sabei que vosso Senhor é o Clemente. Segui-me, pois, e obedecei a minha ordem!",
+ 91,
+ "Responderam: Não o abandonaremos e nem cessaremos de adorá-lo, até que Moisés volte a nós!",
+ 92,
+ "Disse (Moisés): Ó Aarão, que te impediu de fazêlos voltar atrás, quando viste que se extraviavam?",
+ 93,
+ "Não me segues? Desobedeceste a minha ordem?",
+ 94,
+ "Suplicou-lhe (Aarão): Ó filho de minha mãe, não me puxes pela barba nem pela cabeça. Temi que me dissesses: Criastedivergências entre os israelitas e não cumpriste a minha ordem!",
+ 95,
+ "Disse (Moisés): Ó samaritano, qual é a tua intenção?",
+ 96,
+ "Respondeu: Eu vi o que eles não viram; por isso, tomei um punhado (de terra) das pegadas do Mensageiro e o joguei (sobre o bezerro), porque assim me ditou a minha vontade.",
+ 97,
+ "Disse-lhe: Vai-te, pois! Estás condenado a dizer (isso) por toda vida: Não me toqueis! E terás um destino do qual nuncapoderás fugir. Olha para o teu deus, ao qual estás entregue; prontamente o incineraremos e então lançaremos as suas cinzasao mar.",
+ 98,
+ "Somente o vosso Deus é Deus. Não há mais divindades além d'Ele! Sua sapiência abrange tudo!",
+ 99,
+ "Assim te citamos alguns dos acontecimentos passados; ademais, de Nós, concedemos-te a Mensagem.",
+ 100,
+ "Aqueles que desdenharem isto, carregarão um pesado fardo no Dia da Ressurreição,",
+ 101,
+ "Que suportarão eternamente. Que péssima carga será a sua no Dia da Ressurreição!",
+ 102,
+ "Dia em que a trombeta será soada e em que congregaremos, atônitos, os pecadores.",
+ 103,
+ "Murmurarão entre si: Não permanecestes muito mais do que dez (dias)!",
+ 104,
+ "Nós bem sabemos o que dirão quando os mais sensatos, dentre eles, exclamarem: Não permanecestes muito mais doque um dia!",
+ 105,
+ "E perguntar-te-ão acerca das montanhas. Dize-lhes: Meu Senhor as desintegrará,",
+ 106,
+ "E as deixará como um plano e estéril,",
+ 107,
+ "Em que não verás saliências, nem reentrâncias.",
+ 108,
+ "Nesse dia seguirão um arauto, do qual não poderão afastar-se. As vozes humilhar-se-ão ante o Clemente, e tu nãoouvirás mais do que sussurros.",
+ 109,
+ "Nesse dia de nada valerá a intercessão de quem quer que seja, salvo a de quem o Clemente permitir e cuja palavra lhefor grata.",
+ 110,
+ "Ele lhes conhece tanto o passado como o futuro, não obstante eles não logrem conhecê-Lo.",
+ 111,
+ "As frontes se humilharão ante o Vivente, o Subsistente. Quem tiver cometido iniqüidade estará desesperado.",
+ 112,
+ "E quem tiver praticado o bem e for, ademais, fiel, não terá a temer injustiça, nem frustração.",
+ 113,
+ "Assim Nós to revelamos, um Alcorão em língua árabe, no qual reiteraremos as combinações, a fim de que Nos temam elhes seja renovada a lembrança.",
+ 114,
+ "Exaltado seja Deus, o Verdadeiro Rei! Não te apresses com o Alcorão antes que sua inspiração te seja concluída. Outrossim, dize: Ó Senhor meu, aumenta-te em sabedoria!",
+ 115,
+ "Havíamos firmado o pacto com Adão, porém, te esqueceu-se dele; e não vimos nele firme resolução.",
+ 116,
+ "E quando dissemos aos anjos: Prostrai-vos ante Adão! Todos se prostraram menos Lúcifer, que se negou.",
+ 117,
+ "E então dissemos: Ó Adão, em verdade, este é tanto teu inimigo como de tua companheira! Que não cause a vossaexpulsão do Paraíso, porque serás desventurado.",
+ 118,
+ "Em verdade, nele não sofrerás fome, nem estarás afeito à nudez.",
+ 119,
+ "E não padecerás de sede ou calor.",
+ 120,
+ "Porém, Satanás sussurrou-lhe, dizendo: Ó Adão, queres que te indique a árvore da prosperidade e do reino eterno?",
+ 121,
+ "E ambos comeram (os frutos) da árvore, e suas vergonhas foram-lhes manifestadas, e puseram-se a cobrir os seuscorpos com folhas de plantas do Paraíso. Adão desobedeceu ao seu Senhor e foi seduzido.",
+ 122,
+ "Mas logo o seu Senhor o elegeu, absolvendo-o e encaminhando-o.",
+ 123,
+ "Disse: Descei ambos do Paraíso! Sereis inimigos uns dos outros. Porém, logo vos chegará a Minha orientação e quemseguir a Minha orientação, jamais se desviará, nem será desventurado.",
+ 124,
+ "Em troca, quem desdenhar a Minha Mensagem, levará uma mísera vida, e, cego, congregá-lo-emos no Dia daRessurreição.",
+ 125,
+ "Dirá: Ó Senhor meu, por que me congregastes cego, quando eu tinha antes uma boa visão?",
+ 126,
+ "E (Deus lhe) dirá: Isto é porque te chegaram os Nossos versículos e tu os esqueceste; a mesma maneira, serás hojeesquecido!",
+ 127,
+ "E assim castigaremos quem se exceder e não crer nos versículos do seu Senhor. Sabei que o castigo da outra vida serámais rigoroso, e mais persistente ainda.",
+ 128,
+ "Não lhes mostramos, acaso, quantas gerações, anteriores a eles, exterminamos, apesar de viverem nos mesmos lugaresque eles? Nisso há exemplos para os sensatos.",
+ 129,
+ "Porém, se não houvesse sido pela sentença proferida por teu Senhor e pelo término prefixado, o castigo teria sidoinevitável.",
+ 130,
+ "Tolera, pois (ó Mensageiro), o que dizem os incrédulos, e celebra os louvores do teu Senhor antes do nascer do sol, antes do seu ocaso durante certas horas da noite; glorifica teu Senhor nos dois extremos do dia, para que sejas comprazido.",
+ 131,
+ "E não cobices tudo aquilo com que temos agraciado certas classes, com o gozo da vida terrena - a fim de, com isso, prová-las - posto que a mercê do teu Senhor é preferível e mais persistente.",
+ 132,
+ "E recomenda aos teus a oração e sê constante, tu também. Não te impomos ganhares o teu sustento, pois Nós teproveremos. A recompensa é dos devotos.",
+ 133,
+ "Dizem (entre si): Por que não vos apresenta ele um sinal de seu Senhor? Não lhes chegou, por acaso, a evidênciamencionada nos primeiros livros?",
+ 134,
+ "Mas, se os houvéssemos fulminado com um castigo, antes disso, teriam dito: Ó Senhor nosso, por que não nos enviasteum mensageiro, a fim de seguirmos os Teus versículos, entes de nos humilharmos e nos aviltarmos?",
+ 135,
+ "Dize-lhes: Cada um (de nós) está esperando; esperai, pois! Logo sabereis quem está na senda reta e quem são osorientados!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/21.json b/share/quran-json/TheQuran/pt/21.json
new file mode 100644
index 0000000..e027189
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/21.json
@@ -0,0 +1,244 @@
+[
+ {
+ "id": "21",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Anbya",
+ "translated_name": "The Prophets",
+ "verse_count": 112,
+ "slug": "al-anbya",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1606,
+ 1576,
+ 1610,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "Aproxima-se a prestação de contas dos homens que, apesar disso, estão desdenhosamente desatentos.",
+ 2,
+ "Nunca lhes chegou uma nova mensagem de seu Senhor, que não escutassem, senão com o fito de escarnecê-la,",
+ 3,
+ "Com os seus corações entregues à divagação. Os iníquos dizem, confidencialmente: Acaso, este não é um homem comovós? Assistir-lhe-eis à magia conscientemente?",
+ 4,
+ "Dize: Meu Senhor conhece tudo quanto é dito nos céus e na terra, porque Ele é Oniouvinte, o Onisciente.",
+ 5,
+ "Porém, afirmam: É uma miscelânea de sonhos! Ele os forjou! Qual! É um poeta! Que nos apresente, então, algum sinal, como os enviados aos primeiros (mensageiros)!",
+ 6,
+ "Nenhum dos habitantes das cidades que exterminamos, anteriormente a eles, acreditou. Crerão eles?",
+ 7,
+ "Antes de ti não enviamos nada além de homens, que inspiramos. Perguntai-o, pois, aos adeptos da Mensagem, se oignorais!",
+ 8,
+ "Não os dotamos de corpos que pudessem prescindir de alimentos, nem tampouco foram imorais.",
+ 9,
+ "Então, cumprimos a Nossa promessa para com eles e os salvamos, juntamente com os que quisemos, e exterminamos ostransgressores.",
+ 10,
+ "Enviamos-vos o Livro, que encerra uma Mensagem para vós; não raciocinais?",
+ 11,
+ "Quantas populações de cidades exterminamos, por sua iniqüidade, e suplantamos por outras?",
+ 12,
+ "Porém, quando se deram conta do Nosso castigo, eis que tentaram fugir dele precipitadamente.",
+ 13,
+ "Não fujais! Voltai ao que vos foi concedido e às vossas moradas, a fim de que sejas interrogados!",
+ 14,
+ "Disseram: Ai de nós! Em verdade, fomos iníquos!",
+ 15,
+ "E não cessou esta sua lamentação, até que os deixamos inertes, tal qual plantas segadas.",
+ 16,
+ "Não riamos os céus e a terra e tudo quanto existe entre ambos por mero passatempo.",
+ 17,
+ "E se quiséssemos diversão, tê-la-íamos encontrado entre as coisas próximas de Nós, se fizéssemos (tal coisa).",
+ 18,
+ "Qual! Arremessamos a verdade sobre a falsidade, o que a anula. Ei-la desvanecida. Ai de vós, pela falsidade que (Nos) descreveis!",
+ 19,
+ "Seu é tudo o que existe nos céus e na terra; e todos quanto se acham em Sua Presença, não se ensoberbecem emadorá-Lo, nem se enfadam disso.",
+ 20,
+ "Glorificam-No noite e dia, e não ficam exaustos.",
+ 21,
+ "Ou (será que) adotaram divindades da terra, que podem ressuscitar os mortos?",
+ 22,
+ "Se houvesse nos céus e na terra outras divindades além de Deus, (ambos) já se teriam desordenado. Glorificado sejaDeus, Senhor do Trono, de tudo quanto Lhe atribuem!",
+ 23,
+ "Ele não poderá ser questionado quanto ao que faz; eles sim, serão interpelados.",
+ 24,
+ "Adotarão, porventura, outras divindades além d'Ele? Dize-lhes: Apresentai vossa prova! Eis aqui a Mensagem daquelesque estão comigo e a Mensagem daqueles que me precederam. Porém, a maioria deles não conhece a verdade, e a desdenha.",
+ 25,
+ "Jamais enviamos mensageiro algum antes de ti, sem que lhe tivéssemos revelado que: Não há outra divindade além deMim. Adora-Me, e serve-Me!",
+ 26,
+ "E dizem: O Clemente teve um filho! Glorificado seja! Qual! São apenas servos veneráveis, esses a quem chamam defilhos,",
+ 27,
+ "Que jamais se antecipam a Ele no falar, e que agem sob o Seu comando.",
+ 28,
+ "Ele conhece tanto o que há antes deles como o que há depois deles, e não podem interceder em favor de ninguém, salvode quem a Ele aprouver, são, ante seu temor, a Ele reverentes.",
+ 29,
+ "E quem quer que seja, entre eles, que disser: Em verdade eu sou deus, junto a Ele! condená-lo-emos ao inferno. Assimcastigamos os iníquos.",
+ 30,
+ "Não vêem, acaso, os incrédulos, que os céus e a terra eram uma só massa, que desagregamos, e que criamos todos osseres vivos da água? Não crêem ainda?",
+ 31,
+ "E produzimos firmes montanhas na terra, para que esta não oscilasse com eles, e traçamos, entre aqueles, desfiladeiroscomo caminhos, para que se orientassem.",
+ 32,
+ "E fizemos o céu como abóbada bem protegida; e, apesar disso, desdenham os seus sinais!",
+ 33,
+ "Ele foi Quem criou a noite e o dia, o sol e a lua; cada qual (dos corpos celestes) gravita em sua respectiva órbita.",
+ 34,
+ "Jamais concedemos a imortalidade a ser humano algum, anterior a ti. Porventura, se tu morresses, seriam eles imortais?",
+ 35,
+ "Toda a alma provará o gosto da morte, e vos provaremos com o mal e com o bem, e a Nós retornareis.",
+ 36,
+ "E, quando os incrédulos te vêem, não te tratam senão com zombarias, dizendo: É este que fala sobre os vossos deuses? Eblasfemam, à menção do Clemente.",
+ 37,
+ "O homem é, por natureza, impaciente. Não vos apresseis, pois logo vos mostrarei os Meus sinais!",
+ 38,
+ "E perguntaram: quanto se cumprirá esta promessa, se estais certos?",
+ 39,
+ "Ah, se os incrédulos conhecessem o momento em que não poderão evitar o fogo sobre seus rostos e suas espáduas, nemtampouco ser socorridos!",
+ 40,
+ "Pelo contrário, surpreendê-los-á (o fogo) inopinadamente e os aniquilará. Não poderão desviá-lo, nem serão tolerados.",
+ 41,
+ "Mensageiros anteriores a ti foram escarnecidos; porém, os escarnecedores envolveram-se naquilo de que escarneciam.",
+ 42,
+ "Dize: Quem poderá proteger-vos, à noite e de dia, (do seu castigo) do Clemente? Sem dúvida, eles desdenham a mençãodo seu Senhor.",
+ 43,
+ "Ou têm, acaso, divindades que os defendem de Nós? Não podem sequer socorrer a si mesmos, nem estarão a salvo eNós!",
+ 44,
+ "Contudo, agraciamo-los, tanto eles como seus pais, e até lhes prolongamos a vida. Porém, não reparam, acaso, em quetemos assolado a terra, reduzindo-a em suas bordas? São eles, porventura, os vencedores?",
+ 45,
+ "Dize-lhes: Só vos admoesto com a revelação; no entanto, os surdos não ouvem a predicação, mesmo quando sãoadmoestados.",
+ 46,
+ "Mas, quando um resquício do castigo e o teu Senhor os toca, dizem: Ai de nós! Em verdade, fomos iníquos!",
+ 47,
+ "E instalaremos as balanças da justiça para o Dia da Ressurreição. Nenhuma alma será defraudada no mínimo que seja; mesmo se for do peso de um grão de mostarda, tê-lo-emos em conta. Bastamos Nós por cômputo.",
+ 48,
+ "Havíamos concedido a Moisés e a Aarão o Discernimento, luz e mensagem para os devotos,",
+ 49,
+ "Que temem intimamente seu Senhor e são reverentes, quanto à Hora.",
+ 50,
+ "Esta é a mensagem bendita, que revelamos. Atrever-vos-eis a negá-la?",
+ 51,
+ "Anteriormente concedemos a Abraão a sua integridade, porque o sabíamos digno disso.",
+ 52,
+ "Ao perguntar ao seu pai e ao seu povo: Que significam esses ídolos, aos quais vos devotais?",
+ 53,
+ "Responderam: Encontramos nossos pais a adorá-los.",
+ 54,
+ "Disse-lhes (Abraão): Sem dúvida que vós e os vossos pais estais em evidente erro.",
+ 55,
+ "Inquiriram-no: Trouxeste-nos a verdade, ou tu és um dos tantos trocistas?",
+ 56,
+ "Respondeu-lhes: Não! Vosso Senhor é o Senhor dos céus e da terra, os quais criou, e eu sou um dos testemunhadoresdisso.",
+ 57,
+ "Por Deus que tenho um plano para os vossos ídolos, logo que tiverdes partido...",
+ 58,
+ "E os reduziu a fragmentos, menos o maior deles, para que, quando voltassem, se recordassem dele.",
+ 59,
+ "Perguntaram, então: Quem fez isto com os nossos deuses? Ele deve ser um dos iníquos.",
+ 60,
+ "Disseram: Temos conhecimento de um jovem que falava deles. É chamado Abraão.",
+ 61,
+ "Disseram: Trazei-o à presença do povo, para que testemunhem.",
+ 62,
+ "Perguntaram: Foste tu, ó Abraão, quem assim fez com os nossos deuses?",
+ 63,
+ "Respondeu: Não! Foi o maior deles. Interrogai-os, pois, se é que podem falar inteligivelmente.",
+ 64,
+ "E confabularam, dizendo entre si: Em verdade, vós sois os injustos.",
+ 65,
+ "Logo voltaram a cair em confusão e disseram: Tu bem sabes que eles não falam.",
+ 66,
+ "Então, (Abraão) lhes disse: Porventura, adorareis, em vez de Deus, quem não pode beneficiar-vos ou prejudicar-vos emnada?",
+ 67,
+ "Que vergonha para vós e para os que adorais, em vez de Deus! Não raciocinais?",
+ 68,
+ "Disseram: Queimai-o e protegei os vossos deuses, se os puderdes (de algum modo)!",
+ 69,
+ "Porém, ordenamos: Ó fogo, sê frescor e poupa Abraão!",
+ 70,
+ "Intentaram conspirar contra ele, porém, fizemo-los perdedores.",
+ 71,
+ "E o salvamos, juntamente com Lot, conduzindo-os à terra que abençoamos para a humanidade.",
+ 72,
+ "E o agraciamos com Isaac e Jacó, como um dom adicional, e a todos fizemos virtuosos.",
+ 73,
+ "E os designamos imames, para que guiassem os demais, segundo os Nossos desígnios, e lhes inspiramos a prática dobem, a observância da oração, o pagamento do zakat, e foram Nossos adoradores.",
+ 74,
+ "E concedemos a Lot a prudência e a sabedoria, salvando-o da cidade que se havia entregue às obscenidades, porque erahabitada por um povo vil e depravado.",
+ 75,
+ "E o amparamos em Nossa misericórdia, porque era um dos virtuosos.",
+ 76,
+ "E (recorda-te de) Noé quando, tempos atrás, nos implorou e o atendemos e o salvamos, juntamente com a sua família, dagrande aflição.",
+ 77,
+ "E o socorremos contra o povo que desmentia os Nossos versículos, porquanto era um povo vil; eis que os afogamos atodos!",
+ 78,
+ "E de Davi e de Salomão, quando julgavam sobre certa plantação, onde as ovelhas de certo povo pastaram durante anoite, sendo Nós Testemunha de seu juízo.",
+ 79,
+ "E fizemos Salomão compreender a causa. E dotamos ambos de prudência e sabedoria. E submetemos a ele e a Davi asmontanhas e os pássaros para que Nos glorificassem. E fomos Nós o Autor.",
+ 80,
+ "E lhe ensinamos a arte de faze couraças para vós, a fim de proteger-vos das vossas violências mútuas. Não estaisagradecidos?",
+ 81,
+ "E submetemos a Salomão o vento impetuoso, que sopra a seu capricho, para a terra que Nós abençoamos, porque somosOnisciente.",
+ 82,
+ "E também (lhe submetemos) alguns (ventos) maus que, no mar, faziam submergir os navios, além de outras tarefas, sendoNós o seu custódio.",
+ 83,
+ "E (recorda-te) de quando Jó invocou seu Senhor (dizendo): Em verdade, a adversidade tem-me açoitado; porém, Tu és omais clemente dos misericordiosos!",
+ 84,
+ "E o atendemos e o libertamos do mal que o afligia; restituímos-lhes a família, duplicando-a, como acréscimo, em virtudeda Nossa misericórdia, e para que servisse de mensagem para os adoradores.",
+ 85,
+ "E (recorda-te) de Ismael, de Idris (Enoc) e de Dulkifl, porque todos se contavam entre os perseverantes.",
+ 86,
+ "Amparamo-lo em Nossa misericórdia, que se contavam entre os virtuosos.",
+ 87,
+ "E (recorda-te) de Dun-Num quando partiu, bravo, crendo que não poderíamos controlá-lo. Clamou nas trevas: Não hámais divindade do que Tu! Glorificado sejas! É certo que me contava entre os iníquos!",
+ 88,
+ "E o atendemos e o libertamos da angústia. Assim salvamos os fiéis.",
+ 89,
+ "E (recorda-te) de Zacarias quando implorou ao seu Senhor: Ó Senhor meu, não me deixes sem prole, não obstante seresTu o melhor dos herdeiros!",
+ 90,
+ "E o atendemos e o agraciamos com Yahia (João), e curamos sua mulher (de esterilidade); um procurava sobrepujar ooutro nas boas ações, recorrendo a Nós com afeição e temor, e sendo humildes a Nós.",
+ 91,
+ "E (recorda-te) também daquela que conservou a sua castidade (Maria) e a quem alentamos com o Nosso Espírito, fazendo dela e de seu filho sinais para a humanidade.",
+ 92,
+ "Esta vossa comunidade é a comunidade única e Eu sou o vosso Senhor. Adorai-Me, portanto (e a nenhum outro)!",
+ 93,
+ "Mas (as gerações posteriores) se dividiram mutuamente em sua unidade; e todos voltarão a Nós!",
+ 94,
+ "Mas quem praticar o bem e for, ademais, fiel, saberá que seus esforços não serão baldados, porque os anotamos todos.",
+ 95,
+ "Está proibido o ressurgimento de toda população que temos destruído; seus integrantes não retornarão,",
+ 96,
+ "Até ao instante em que for aberta a barreira do (povo de) Gog e Magog e todos se precipitarem por todas as colinas,",
+ 97,
+ "E aproximar a verdadeira promessa. E eis os olhares fixos dos incrédulos, que exclamarão: Ai de nós! Estivemosdesatentos quanto a isto; qual, fomos uns iníquos!",
+ 98,
+ "Vós, com tudo quanto adorais, em vez de Deus, sereis combustível do inferno, no qual entrareis, por certo.",
+ 99,
+ "Se houvessem aqueles sido deuses, não o teria adentrado; ali todos permanecerão eternamente,",
+ 100,
+ "Onde se lamentarão mas não serão ouvidos.",
+ 101,
+ "Em verdade, aqueles a quem predestinamos o Nossos bem, serão afastados disso.",
+ 102,
+ "Não ouvirão a crepitação (da fogueira) e desfrutarão eternamente de tudo quanto à sua lama apetecer.",
+ 103,
+ "E o grande terror não os atribulará, e os anjos os receberão, dizendo-lhes: Eis aqui o dia que vos fora prometido!",
+ 104,
+ "Será o dia em que enrolaremos o céu como um rolo de pergaminho. Do mesmo modo que originamos a criação, reproduzi-la-emos. É porque é uma promessa que fazemos, e certamente a cumpriremos.",
+ 105,
+ "Temos prescrito, nos Salmos, depois da Mensagem (dada a Moisés), que a terra, herdá-la-ão os Meus servos virtuosos.",
+ 106,
+ "Nisto há uma mensagem para os adoradores.",
+ 107,
+ "E não te enviamos, senão como misericórdia para a humanidade.",
+ 108,
+ "Dize: Em verdade, tem-me sido revelado que o vosso Deus é Único. Sereis portanto submissos?",
+ 109,
+ "Todavia, se se recusarem a sê-lo, dize-lhes: Tenho proclamado a mensagem a todos por igual, mas não sei se estápróximo ou remoto o que vos foi prometido.",
+ 110,
+ "Porque Ele sabe tanto o que manifestais por palavras, como conhece o que ocultais.",
+ 111,
+ "Ignoro se isto constitui uma prova para vós e um gozo transitório.",
+ 112,
+ "Dize: Ó meu Senhor, julga com eqüidade! Nosso Senhor é o Clemente, a Quem recorro, contra o que blasfemais."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/22.json b/share/quran-json/TheQuran/pt/22.json
new file mode 100644
index 0000000..0aba54e
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/22.json
@@ -0,0 +1,172 @@
+[
+ {
+ "id": "22",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Hajj",
+ "translated_name": "The Pilgrimage",
+ "verse_count": 78,
+ "slug": "al-hajj",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1580
+ ]
+ },
+ 1,
+ "Ó humanos, temei a vosso Senhor, porque a convulsão da Hora será logo terrível.",
+ 2,
+ "No dia em que a presenciardes, casa nutriente esquecerá o filho que amamenta; toda a gestante abortará; tu verás oshomens como ébrios, embora não o estejam, porque o castigo de Deus será severíssimo.",
+ 3,
+ "Entre os humanos há quem discute nesciamente acerca de Deus e segue qualquer demônio rebelde.",
+ 4,
+ "Foi decretado sobre (o maligno): Quem se tornar íntimo dele, será desviado e conduzido ao suplício do tártaro.",
+ 5,
+ "Ó humanos, se estais em dúvida sobre a ressurreição, reparai em que vos criamos do pó, depois do esperma, e logo vosconvertemos em algo que se agarra e, finalmente, em feto, com forma ou amorfo, para demonstrar-vos (a Nossa onipotência); e conservamos no útero o que queremos, até um período determinado, de onde vos retiraremos, crianças para que alcanceisa puberdade. Há, entre vós, aqueles que morrem (ainda jovens) e há os que chegam à senilidade, até ao ponto de não serecordarem do que sabiam. E observai que a terra é árida; não obstante, quando (Nós) fazemos descer a água sobre ela, move-se e se impregna de fertilidade, fazendo brotar todas as classes de pares de viçosos (frutos).",
+ 6,
+ "Isto, porque Deus é Verdadeiro e vivifica os mortos, e porque é Onipotente.",
+ 7,
+ "E a Hora chegará indubitavelmente, e Deus ressuscitará aqueles que estiverem nos sepulcros.",
+ 8,
+ "Entre os humanos, há aquele que disputa nesciamente acerca de Deus, sem orientação nem livro lúcido,",
+ 9,
+ "Desdenhoso, para assim desviar os demais da senda de Deus. Sofrerá aviltamento neste mundo e, no Dia da Ressurreição, fá-lo-emos experimentar a pena da chama infernal.",
+ 10,
+ "Isso, pelo que tiverem cometido suas mãos, porque Deus nunca é injusto para com os Seus servos.",
+ 11,
+ "Entre os humanos há, também, quem adora Deus com restrições: se lhe ocorre um bem, satisfaz-se com isso; porém, se oaçoita um adversidade, renega e perde este mundo e o outro. Esta é a evidencia desventura.",
+ 12,
+ "Ele invoca, em vez de Deus, quem não pode prejudicá-lo nem beneficiá-lo. Tal é o profundo erro.",
+ 13,
+ "Invoca quem lhe causa mais prejuízos do que benefícios. Que péssimo amo e que diabólico companheiro!",
+ 14,
+ "Deus introduzirá os fiéis, que praticam o bem, em jardins, abaixo dos quais correm os rios, porque Deus faz o que Lheapraz.",
+ 15,
+ "Quem pensa que Deus jamais o socorrerá (Mensageiro) neste mundo ou no outro, que pendure uma corda no teto (de suacasa) e se enforque; verá se com isso poderá acalmar o seu furor.",
+ 16,
+ "Assim o revelamos (o Alcorão) em lúcidos versículos, e Deus ilumina quem Lhe apraz.",
+ 17,
+ "Quanto aos fiéis, judeus, sabeus, cristão, masdeístas ou idólatras, certamente Deus os julgará a todos no Dia daRessurreição, porque Deus é Testemunha de todas as coisas.",
+ 18,
+ "Não reparas, acaso, em que tudo quanto há nos céus e tudo quanto há na terra se prostra ante Deus? O sol, a lua, asestrelas, as montanhas, as árvores, os animais e muitos humanos? Porém, muitos merecem o castigo! E quem Deus afrontarnão achará quem o honre, porque Deus faz o que Lhe apraz.",
+ 19,
+ "Existem dois antagonistas (crédulos e incrédulos), que disputam acerca do seu Senhor. Quanto aos incrédulos, serãocobertos com vestimentas de fogo e lhes será derramada, sobre as cabeças, água fervente,",
+ 20,
+ "A qual derreterá tudo quanto há em suas entranhas, além da totalidade de suas peles.",
+ 21,
+ "Em adição, haverá clavas de ferro (para o castigo).",
+ 22,
+ "Toda a vez que dele (do fogo) quiserem sair, por angústia, ali serão repostos e lhes será dito: Sofrei a pena da queima!",
+ 23,
+ "Por outra, Deus introduzirá os fiéis, que praticam o bem, em jardins, abaixo dos quais correm os rios, onde serãoenfeitados com pulseiras de ouro e pérola, e suas vestimentas serão de seda.",
+ 24,
+ "Porque se guiaram pelas palavras puras e se encaminharam até à senda do Laudabilíssimo.",
+ 25,
+ "Quanto aos incrédulos, que vedam os demais da senda de Deus e a sagrada Mesquita, - a qual destinamos aos humanos, por igual, quer seja seus habitantes, quer sejam visitantes, - e que nela comete, intencionalmente, profanação ou iniqüidade, fá-los-emos provar um doloroso castigo.",
+ 26,
+ "E (recorda-te) de quando indicamos a Abraão o local da Casa, dizendo: Não Me atribuas parceiros, mas consagra aMinha Casa para os circungirantes, para os que permanecem em pé e para os genuflexos e prostrados.",
+ 27,
+ "E proclama a peregrinação às pessoas; elas virão a ti a pé, e montando toda espécie de camelos, de todo longínquolugar,",
+ 28,
+ "Para testemunhar os seus benefícios e invocar o nome de Deus, nos dias mencionados, sobre o gado com que Ele osagraciou (para o sacrifício). Comei, pois, dele, e alimentai o indigente e o pobre.",
+ 29,
+ "Que logo se higienizem, que cumpram os seus votos e que circungirem a antiga Casa.",
+ 30,
+ "Tal será (a peregrinação). Quanto àquele que enaltecer os ritos sagrados de Deus, terá feito o melhor para ele, aos olhosdo seu Senhor. É-vos permitida a (carne) das reses, exceto o que já vos foi estipulado. Enviai, pois, a abominação daadoração dos ídolos e evitai o perjúrio,",
+ 31,
+ "Consagrando-vos a Deus; e não Lhe atribuais parceiros, porque aquele que atribuir parceiros a Deus, será como sehouvesse sido arrojado do céu, como se o tivessem apanhado das aves, ou como se o vento o lançasse a um lugar longínquo.",
+ 32,
+ "Tal será. Contudo, quem enaltecer os símbolos de Deus, saiba que tal (enaltecimento) partirá de quem possuir piedadeno coração.",
+ 33,
+ "Neles (os animais) tendes benefícios, até um tempo prefixado; então, seu lugar de sacrifício será a antiga Casa.",
+ 34,
+ "Para cada povo temos instituído ritos (de sacrifício), para que invoquem o nome de Deus, sobre o que Ele agraciou, degado. Vosso Deus é Único; consagrai-vos, pois, a Ele. E tu (ó Mensageiro), anuncia a bem-aventurança aos que sehumilham,",
+ 35,
+ "Cujos corações estremecem, quando o nome de Deus é Mencionado; os perseverantes, que suportam o que lhes sucede, são observantes da oração e fazem caridade daquilo com que agraciamos.",
+ 36,
+ "E vos temos designado (o sacrifício) dos camelos, entre os símbolos de Deus. Neles, tendes benefícios. Invocai, pois, onome de Deus sobre eles, no momento (do sacrifício), quando ainda estiverem em pé, e quando tiverem tombado. Comei, pois, deles e daí de comer ao necessitado e ao pedinte. Assim vo-los sujeitamos, para que Nos agradeçais.",
+ 37,
+ "Nem suas carnes, nem seu sangue chegam até Deus; outrossim, alcança-O a vossa piedade. Assim vo-los sujeitou, paraque O glorifiqueis, por haver-vos encaminhado. Anuncia, pois, a bem-aventurança aos benfeitores.",
+ 38,
+ "Em verdade, Deus defende os fiéis, porque Deus não aprecia nenhum pérfido e ingrato.",
+ 39,
+ "Ele permitiu (o combate) aos que foram atacados; em verdade, Deus é Poderoso para socorrê-los.",
+ 40,
+ "São aqueles que foram expulsos injustamente dos seus lares, só porque disseram: Nosso Senhor é Deus! E se Deus nãotivesse refreado os instintos malignos de uns em relação aos outros, teriam sido destruídos mosteiros, igrejas, sinagogas emesquitas, onde o nome de Deus é freqüentemente celebrado. Sabei que Deus secundará quem O secundar, em Sua causa, porque é Forte, Poderosíssimo.",
+ 41,
+ "São aqueles que, quando os estabelecemos na terra, observam a oração, pagam o zakat, recomendam o bem e proíbem oilícito. E em Deus repousa o destino de todos os assuntos.",
+ 42,
+ "Porém, se te desmentem (ó Mensageiros), o mesmo que fizeram, antes deles, os povos de Noé, de Ad e de Tamud.",
+ 43,
+ "(Assim também) o povo de Abraão e o povo de Lot.",
+ 44,
+ "E o povo de Madian (fez o mesmo); também foi desmentido Moisés. Então, tolerei os incrédulos; mas logo os castiguei, e que rigorosa foi a Minha rejeição!",
+ 45,
+ "Quantas cidades destruímos por sua iniqüidade, transformando-as em ruínas, com os poços e os castelos fortificadosabandonados!",
+ 46,
+ "Não percorreram eles a terra, para que seus corações verificassem o ocorrido? Talvez possam, assim, ouvir eraciocinar! Todavia, a cegueira não é a dos olhos, mas a dos corações, que estão em seus peitos!",
+ 47,
+ "Pedem-te incessantemente a iminência do castigo; saibam que Deus jamais falta à sua promessa, porque um dia, para oteu Senhor, é como mil anos, dos que contais.",
+ 48,
+ "E quantas cidades iníquas temos tolerado! Mas logo as castigarei e a Mim será o destino.",
+ 49,
+ "Dize: Ó humanos, sou apenas um elucidativo admoestador para vós.",
+ 50,
+ "E os fiéis que praticarem o bem obterão um indulgência e um magnífico sustento.",
+ 51,
+ "Por outra, aqueles que se esforçarem em desacreditar os Nossos versículos serão os réprobos.",
+ 52,
+ "Antes de ti, jamais enviamos mensageiro ou profeta algum, sem que Satanás o sugestionasse em sua predicação; porém, Deus anula o que aventa Satanás, e então prescreve as Suas leis, porque Deus é Sapiente, Prudentíssimo.",
+ 53,
+ "Ele faz das sugestões de Satanás uma prova, para aqueles que abrigam a morbidez em seus corações e para aqueles cujoscorações estão endurecidos, porque os iníquos estão em um cisma distante (da verdade)!",
+ 54,
+ "Quanto àqueles que receberam a ciência, saibam que ele (o Alcorão) é a verdade do teu Senhor; que creiam nele e queseus corações se humilhem ante ele, porque Deus guia os fiéis até à senda reta.",
+ 55,
+ "Porém, os incrédulos não cessarão de estar em dúvida acerca dele, até que a Hora lhes chegue de improviso, ou osaçoite o castigo do dia nefasto.",
+ 56,
+ "A soberania, naquele dia, será de Deus, que julgará entre eles. Os fiéis que tiverem praticado o bem entrarão nos jardinsdo prazer.",
+ 57,
+ "Em troca, os incrédulos, que desmentirem os Nossos versículos, sofrerão um castigo ignominioso.",
+ 58,
+ "Aqueles que migraram pela causa de Deus e forma mortos, ou morreram, serão infinitamente agraciados por Ele, porqueDeus é o melhor dos agraciadores.",
+ 59,
+ "Em verdade, introduzi-los-á em um lugar que comprazerá a eles, porque Deus é tolerante, Sapientíssimo.",
+ 60,
+ "Assim será! Aquele que se desforrar um pouco de quem o injuriou e o ultrajou, sem dúvida Deus socorrerá, porque éAbsolvedor, Indulgentíssimo.",
+ 61,
+ "Isto, porque Deus insere a noite no dia e o dia na noite e é, ademais, Oniouvinte, Onividente.",
+ 62,
+ "Isto porque Deus é a Verdade; e o que invocam, em vez d'Ele, é a falsidade. Sabei que Ele é Grandioso, Altíssimo.",
+ 63,
+ "Porventura, não reparas em que Deus faz descer água do céu, tornando verdes os campos? Sabei que Deus é Onisciente, Sutilíssimo.",
+ 64,
+ "Seu é tudo quanto existe nos céus e quanto há na terra, porque é Opulento, Laudabilíssimo.",
+ 65,
+ "Não tens reparado em que Deus vos submeteu o que existe na terra, assim como as naves, que singram os mares por Suavontade? Ele sustém o firmamento, para que não caia sobre a terra, a não ser por Sua vontade, porque é, para com oshumanos, Compassivo, Misericordiosíssimo.",
+ 66,
+ "E Ele é Quem vos dá a vida, então vos fará morrer, em seguida vos devolverá a vida. Em verdade, o homem é ingrato!",
+ 67,
+ "Temos prescrito a cada povo ritos a serem observados. Que não te refutem a este respeito! E invoca teu Senhor, porquesegues uma orientação correta.",
+ 68,
+ "Porém, se te refutam, dize-lhes: Deus sabe melhor do que ninguém o que fazeis!",
+ 69,
+ "Deus julgará entre vós, no Dia da Ressurreição, a respeito de vossas divergências.",
+ 70,
+ "Ignoras, acaso, que Deus conhece o que há nos céus e na terra? Em verdade, isto está registrado num Livro, porque éfácil para Deus.",
+ 71,
+ "E adoram, em vez de Deus, coisas, às quais Ele não concedeu autoridade alguma, e da qual não têm conhecimento algum; porém, os iníquos não terão nenhum protetor.",
+ 72,
+ "E quando lhes são recitados os Nossos lúcidos versículos, descobres o desdém nos semblantes dos incrédulos, chegandomesmo a ponto de se lançarem sobre aqueles que lhes recitam os Nossos versículos. Dize: Poderia inteirar-vos de algo piordo que isto? É o fogo (infernal), que Deus prometeu aos incrédulos. E que funesto destino!",
+ 73,
+ "Ó humanos, eis um exemplo; escutai-o, pois: Aqueles que invocais, em vez de Deus, jamais poderiam criar uma mosca; ainda que, para isso, se juntassem todos. E se a mosca lhe arrebatasse algo, não poderiam dela tirá-lo, porque tanto osolicitador como o solicitado, são impotentes.",
+ 74,
+ "Não aquilatam Deus como (Ele) merece. Saibam eles que Deus é Forte, Poderosíssimo.",
+ 75,
+ "Deus escolhe os mensageiros, entre os anjos e entre os humanos, porque é Oniouvinte, Onividente.",
+ 76,
+ "Ele conhece tanto o seu passado como o seu futuro, porque a Deus retornarão todas as coisas.",
+ 77,
+ "Ó fiéis, genuflecti, prostrai-vos, adorai vosso Senhor e praticai o bem, para que prospereis.",
+ 78,
+ "E combatei com denodo pela causa de Deus; Ele vos elegeu. E não vos impôs dificuldade alguma na religião, porque é ocredo de vosso pai, Abraão. Ele vos denominou muçulmanos, antes deste e neste (Alcorão), para que o Mensageiro sejatestemunha vossa, e para que sejais testemunhas dos humanos. Observai, pois, a oração, pagai o zakat e apegai-vos a Deus, Que é vosso Protetor. E que excelente Protetor! E que excelente Socorredor!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/23.json b/share/quran-json/TheQuran/pt/23.json
new file mode 100644
index 0000000..7670eb1
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/23.json
@@ -0,0 +1,256 @@
+[
+ {
+ "id": "23",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Mu'minun",
+ "translated_name": "The Believers",
+ "verse_count": 118,
+ "slug": "al-muminun",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1572,
+ 1605,
+ 1606,
+ 1608,
+ 1606
+ ]
+ },
+ 1,
+ "É certo que prosperarão os fiéis,",
+ 2,
+ "Que são humildes em suas orações.",
+ 3,
+ "Que desdenham a vaidade",
+ 4,
+ "Que são ativos em pagar o zakat.",
+ 5,
+ "Que observam a castidade,",
+ 6,
+ "Exceto para os seus cônjuges ou cativas - nisso não serão reprovados.",
+ 7,
+ "Mas aqueles que se excederem nisso serão os transgressores.",
+ 8,
+ "Os que respeitarem suas obrigações e seus pactos,",
+ 9,
+ "E que observarem as suas orações,",
+ 10,
+ "Estes serão os herdeiros.",
+ 11,
+ "Herdarão o Paraíso, onde morarão eternamente.",
+ 12,
+ "Criamos o homem de essência de barro.",
+ 13,
+ "Em seguida, fizemo-lo uma gota de esperma, que inserimos em um lugar seguro.",
+ 14,
+ "Então, convertemos a gota de esperma em algo que se agarra, transformamos o coágulo em feto e convertemos o feto emossos; depois, revestimos os ossos de carne; então, o desenvolvemos em outra criatura. Bendito seja Deus, Criador porexcelência.",
+ 15,
+ "Então morrereis, indubitavelmente.",
+ 16,
+ "Depois sereis ressuscitados, no Dia da Ressurreição.",
+ 17,
+ "E por cima de vós criamos sete céus em estratos, e não descuramos da Nossa criação.",
+ 18,
+ "E fazemos descer, proporcionalmente, água do céu e a armazenamos na terra; mas, se quiséssemos, poderíamos fazê-ladesaparecer.",
+ 19,
+ "E, mediante ela, criamos, para vós, jardins de tamareiras e videiras, dos quais obtendes abundantes frutos, de que vosalimentais.",
+ 20,
+ "E vos criamos a árvore, que brota no monte Sinai, a qual propicia o azeite, que consiste num condimento para osconsumidores.",
+ 21,
+ "Tendes no gado um instrutivo exemplo: Damos-vos de beber do (leite) que contêm as suas glândulas; obtendes delasmuitos benefícios e dela vos alimentais.",
+ 22,
+ "E sobre eles (os animais) sois transportados, da mesma maneira como nos navios.",
+ 23,
+ "Havíamos enviado Noé ao seu povo, ao qual disse: Ó povo meu, adorai a Deus, porque não tender outro deus alémd'Ele! Não (O) temeis?",
+ 24,
+ "Porém, os chefes incrédulos do seu povo disseram: Esse não é mais do que um homem como vós, que quer assegurar asua superioridade (sobre vós). Se Deus quisesse, teria enviado anjos (por mensageiros). Jamais ouvimos tal coisa de nossosantepassados!",
+ 25,
+ "Não é mais do que um homem possesso! Porém, suportai-o temporariamente.",
+ 26,
+ "Disse (Noé): Ó Senhor meu, socorre-me, pois que me desmentes!",
+ 27,
+ "Então lhe revelamos: Constrói uma arca sob a Nossa vigilância e segundo a Nossa revelação. E quando se cumprir oNosso desígnio e a água transbordar do forno, embarca nela um casal de cada espécie, juntamente com a tua família, excetoaquele sobre quem tenha sido pronunciada a sentença; e não intercedas junto a Mim em favor dos iníquos, pois que serãoafogados.",
+ 28,
+ "E quando estiverdes embarcado na arca, junto àqueles que estão contigo, dize: Louvado seja Deus, que nos livrou dosiníquos!",
+ 29,
+ "E dize: Ó Senhor meu, desembarca-me em lugar abençoado, porque Tu és o melhor para (nos) desembarcar.",
+ 30,
+ "Em verdade, nisto há sinais, conquanto já os tenhamos provado.",
+ 31,
+ "Logo depois dele criamos outras gerações.",
+ 32,
+ "E lhe enviamos um mensageiro, escolhido entre eles, (que lhes disse): Adorai a Deus, porque não tereis outro deus alémd'Ele! Não (O) temeis?",
+ 33,
+ "Porém, os chefes incrédulos do seu povo, que negavam o comparecimento na outra vida e que agraciamos na vida terrenadisseram: Este não é senão um homem como vós; come do mesmo que comeis e bebe do mesmo que bebeis.",
+ 34,
+ "E, se obedecerdes a um homem como vós, certamente sereis desventurados.",
+ 35,
+ "Qual! Promete-vos ele que, quando morrerdes e vos tiverdes convertido em pó e ossos, sereis ressuscitados?",
+ 36,
+ "Longe, muito longe está o que vos é prometido!",
+ 37,
+ "Não há mais vida do que esta, terrena! Morremos e vivemos e jamais seremos ressuscitados!",
+ 38,
+ "Este não é mais do que um homem que forja mentiras acerca de Deus! Jamais creremos nele!",
+ 39,
+ "Disse (o Profeta): Ó Senhor meu, socorre-me, pois que me desmentem!",
+ 40,
+ "Disse-lhe (Deus): Em pouco tempo se arrependerão.",
+ 41,
+ "E o estrondo os fulminou, e os reduzimos a destroços (que a torrente carregou). Distância com o povo iníquo!",
+ 42,
+ "Logo depois deles criamos outra geração.",
+ 43,
+ "Nenhum povo pode adiantar ou retardar o seu destino.",
+ 44,
+ "Então enviamos, sucessivamente, os Nossos mensageiros. Cada vez que um mensageiro chegava ao seu povo, este odesmentia. Então fizemos uns seguires outros, e fizemos deles escarmento (para outros povos). Distância com o povoincrédulo!",
+ 45,
+ "Então enviamos Moisés e seu irmão como os Nossos sinais e uma evidente autoridade,",
+ 46,
+ "Ao Faraó e aos seus chefes, os quais se ensoberbeceram, e foram um povo arrogante.",
+ 47,
+ "E disseram: Como havemos de crer em dois homens como nós, cujo povo nos está submetido?",
+ 48,
+ "E os desmentira, contando-se, assim, entre os destruídos.",
+ 49,
+ "Concedemos a Moisés o Livro, a fim de que se encaminhassem.",
+ 50,
+ "E fizemos do filho de Maria e de sua mãe sinais, e os refugiamos em uma segunda colina, provida de mananciais.",
+ 51,
+ "Ó mensageiros, desfrutai de todas as dádivas e praticai o bem, porque sou Sabedor de tudo quanto fazeis!",
+ 52,
+ "E sabei que esta vossa comunidade é única, e que Eu sou o vosso Senhor. Temei-Me, pois!",
+ 53,
+ "Porém, os povos se dividiram em diferentes seitas, e casa se satisfazia com a sua crença.",
+ 54,
+ "Deixa-os entregues a seus extravios, até certo tempo.",
+ 55,
+ "Pensam, acaso, que com os bens e filhos que lhe concedemos,",
+ 56,
+ "Aceleramos-lhes as mercês? Qual! De nada se apercebem!",
+ 57,
+ "Quanto àqueles que são reverentes, por temos ao seu Senhor;",
+ 58,
+ "Que crêem nos versículos do seu Senhor;",
+ 59,
+ "Que não atribuem parceiros ao seu Senhor;",
+ 60,
+ "Que dão o que devem dar, com os corações cheios de temor, porque retornarão ao seu Senhor;",
+ 61,
+ "Estes apressam-se em praticar boas ações; tais serão os primeiros contemplados.",
+ 62,
+ "Jamais imporemos a uma alma uma carga superior às suas forças, pois possuímos o Livro, que proclama a justiça e, assim, não serão defraudados.",
+ 63,
+ "Porém, com respeito a isso, seus corações estão indecisos e, ademais, cometem outros atos, além desse.",
+ 64,
+ "(Isso) até o momento em que castiguemos os opulentos, dentre eles; então, ei-los que grunhirão!",
+ 65,
+ "Ser-lhes-á dito: Não protesteis, porque hoje não sereis socorridos por Nós",
+ 66,
+ "Porque foram-vos recitados os Meus versículos; contudo, lhes voltastes as costas,",
+ 67,
+ "Em ensoberbecido; passáveis noitadas difamando (o Alcorão).",
+ 68,
+ "Porventura, não refletem nas palavras, ou lhes chegou algo que não havia chegado aos seus antepassados?",
+ 69,
+ "Ou não conhecem seu Mensageiro, e por isso o negam?",
+ 70,
+ "Ou dizem que está possesso! Qual! Ele lhes trouxe a verdade, embora à maioria desgostasse a verdade.",
+ 71,
+ "E se a verdade tivesse satisfeito os seus interesses, os céus e a terra, com tudo quanto enceram, transformar-se-iam numcaos. Qual! Enviamos-lhes a Mensagem e assim mesmo a desdenharam.",
+ 72,
+ "Exiges-lhes, acaso, por isso, alguma retribuição? Saibam que a retribuição do teu Senhor é preferível, porque Ele é omelhor dos agraciadores.",
+ 73,
+ "É verdade que tu procuras convocá-los à senda reta.",
+ 74,
+ "Porém, certamente, aqueles que não crêem na outra vida desviam-se da senda.",
+ 75,
+ "Mas se Nos apiedarmos deles e os libertarmos da adversidade que os aflige, persistirão, vacilantes, na sua transgressão.",
+ 76,
+ "Castigamo-los; porém, não se submeteram ao seu Senhor, nem se humilharam,",
+ 77,
+ "Até que lhes abrimos uma porta para um severíssimo castigo; e ei-los que ficaram desesperados!",
+ 78,
+ "Ele foi quem vos criou o ouvido, a vista e o coração. Quão pouco Lhe agradeceis!",
+ 79,
+ "Ele é quem vos multiplica, na terra, e sereis consagrados ante Ele.",
+ 80,
+ "E Ele é Quem dá a vida e a morte. Só a Ele pertence a alternação da notei e do dia, não raciocinais?",
+ 81,
+ "Ao contrário, dizem o mesmo que diziam os seus antepassados:",
+ 82,
+ "Porventura, quando morrermos e nos tivermos convertido em ossos e pó, seremos ressuscitados?",
+ 83,
+ "Havia-nos sido prometido o mesmo, tanto a nós como aos nossos antepassados; porém, isso é não mais do que fábulasdos primitivos.",
+ 84,
+ "Pergunta-lhes: A quem pertence a terra e tudo quanto nela existe? Dizei-o, se o sabeis!",
+ 85,
+ "Responderão: A Deus! Dize-lhes: Não meditais, pois?",
+ 86,
+ "Pergunta-lhes: Quem é o Senhor dos sete céus e o Senhor do Trono Supremo?",
+ 87,
+ "Responderão: Deus! Pergunta-lhe mais: Não (O) temeis, pois?",
+ 88,
+ "Pergunta-lhes, ainda: Quem tem em seu poder a soberania de todas as coisas? Que protege e de ninguém necessitaproteção? (Respondei) se sabeis!",
+ 89,
+ "Responderão: Deus! Dize-lhes: Como, então, vos deixais enganar?",
+ 90,
+ "Nós trazemos-lhes a verdade, porém, sem dúvida que são embusteiros!",
+ 91,
+ "Deus não teve filho algum, nem jamais nenhum outro deus compartilhou com Ele a divindade! Porque se assim fosse, cada deus ter-se-ia apropriado da sua criação e teriam prevalecido uns sobre os outros. Glorificado seja Deus de tudoquanto descrevem!",
+ 92,
+ "Possuidor do cognoscível e do incognoscível! Exaltado seja (Deus), de tudo quanto Lhe atribuem!",
+ 93,
+ "Dize: Ó Senhor meu, se me fizeres ver (em vida) aquilo quanto ao que são admoestados...",
+ 94,
+ "Ó Senhor meu, não me conteis entre os iníquos!",
+ 95,
+ "Em verdade, podemos mostrar-te o que lhe temos prometido.",
+ 96,
+ "Retribui, tu, o mal da melhor forma; Nós sabemos melhor do que ninguém o que dizem.",
+ 97,
+ "E dize: Ó Senhor meu, em Ti me amparo contra as insinuações dos demônios!",
+ 98,
+ "E em Ti me amparo, ó Senhor meu, para que não se aproximem (de mim).",
+ 99,
+ "(Quanto a eles, seguirão sendo idólatras) até que, quando a morte surpreender algum deles, este dirá: Ó Senhor meu, mande-me de volta (à terra),",
+ 100,
+ "A fim de eu praticar o bem que negligenciei! Pois sim! Tal será a frase que dirá! E ante eles haverá uma barreira, queos deterá até ao dia em que forem ressuscitados.",
+ 101,
+ "Porém, quando for soada a trombeta, nesse dia não haverá mais linhagem entre eles, nem se consultarão entre si.",
+ 102,
+ "Quanto àqueles cujas ações pesarem mais serão os bem-aventurados.",
+ 103,
+ "Em troca, aqueles cujas ações forem leves serão desventurados e permanecerão eternamente no inferno.",
+ 104,
+ "O fogo abrasará os seus rostos, e estarão com os dentes arreganhados.",
+ 105,
+ "Acaso, não vos forem recitados os Meus versículos e vós os desmentistes?",
+ 106,
+ "Exclamarão: Ó Senhor nosso, nossos desejos nos dominam, e fomos um povo extraviado!",
+ 107,
+ "Ó Senhor nosso, tira-nos daqui! E se reincidirmos, então seremos iníquos!",
+ 108,
+ "Ele lhes dirá: Entrai aí e não Me dirijas a palavra.",
+ 109,
+ "Houve uma parte de Meus servos que dizia: Ó Senhor nosso, cremos! Perdoa-nos, pois, e tem piedade de nós, porqueTu és o melhor dos misericordiosos!",
+ 110,
+ "E vós escarnecestes, a ponto de (tal escárnio) vos fazer esquecer da Minha Mensagem, poso que vos ocupáveis emmotejar deles.",
+ 111,
+ "Sabei que hoje os recompenso por sua perseverança, e eles serão os ganhadores.",
+ 112,
+ "Dirá: Quantos anos haveis permanecido na terra?",
+ 113,
+ "Responderão: Permanecemos um dia ou uma parte de um dia. Interrogai, pois, os encarregados dos cômputos.",
+ 114,
+ "Dirá: Não permanecestes senão muito pouco; se vós soubésseis!",
+ 115,
+ "Pensais, porventura, que vos criamos por diversão e que jamais retornareis a Nós?",
+ 116,
+ "Exaltado seja Deus, Verdadeiro, Soberano! Não há mais divindade além d'Ele, Senhor do honorável Trono!",
+ 117,
+ "Quem invocar outra divindade junto a Deus, sem prova para isso, saiba que a sua prestação de contas incumbirá só aoseu Senhor. Sabei que os incrédulos jamais prosperarão.",
+ 118,
+ "E dize (ó Mohammad): Ó Senhor meu, concede-me perdão e misericórdia, porque Tu és o melhor dos misericordiosos!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/24.json b/share/quran-json/TheQuran/pt/24.json
new file mode 100644
index 0000000..77850c8
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/24.json
@@ -0,0 +1,145 @@
+[
+ {
+ "id": "24",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "An-Nur",
+ "translated_name": "The Light",
+ "verse_count": 64,
+ "slug": "an-nur",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1608,
+ 1585
+ ]
+ },
+ 1,
+ "Uma surata que enviamos e prescrevemos, na qual revelamos lúcidos versículos, a fim de que mediteis.",
+ 2,
+ "Quanto à adúltera e ao adúltero, vergastai-os com cem vergastadas, cada um; que a vossa compaixão não vos demova decumprir a lei de Deus, se realmente credes em Deus e no Dia do Juízo Final. Que uma parte dos fiéis testemunhe o castigo.",
+ 3,
+ "O adúltero não poderá casar-se, senão com uma adúltera ou uma idólatra; a adúltera não poderá desposar senão umadúltero ou um idólatra. Tais uniões estão vedadas aos fiéis.",
+ 4,
+ "E àqueles que difamarem as mulheres castas, sem apresentarem quatro testemunhas, infligi-lhes oitenta vergastadas enunca mais aceiteis os seus testemunhos, porque são depravados.",
+ 5,
+ "Exceto aqueles que, depois disso, se arrependerem e se emendarem; sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 6,
+ "E aquele que difamar a sua esposa, em mais testemunhas do que eles próprios, que um deles jure quatro vezes por Deusque é um dos verazes.",
+ 7,
+ "E na quinta vez pedirá que a maldição de Deus caia sobre ele, se for perjuro.",
+ 8,
+ "E ela se libertará do castigo, jurando quatro vezes por Deus que ele é perjuro.",
+ 9,
+ "E na quinta vez pedirá a incidência da abominação de Deus sobre si mesma, se ele for um dos verazes.",
+ 10,
+ "Se não fosse pela graça de Deus e pela Sua misericórdia para convosco... e Deus é Remissório, Prudentíssimo.",
+ 11,
+ "Aqueles que lançam a calúnia, constituem uma legião entre vós; não considereis isso coisa ruim para vós; pelo contrário, é até bom. Cada um deles receberá o castigo merecido por seu delito, e quem os liderar sofrerá um severo castigo.",
+ 12,
+ "Por que, quando ouviram a acusação, os fiéis, homens e mulheres, não pensaram bem de si mesmos e disseram: É umacalúnia evidente?",
+ 13,
+ "Por que não apresentaram quatro testemunhas? Se não as apresentarem, serão caluniadores ante Deus.",
+ 14,
+ "E se não fosse pela graça de Deus e pela Sua misericórdia para convosco, nesse mundo e no outro, haver-nos-iaaçoitado um severo castigo pelo que propalastes.",
+ 15,
+ "Quando a receberdes em vossas línguas, e dissestes com vossas bocas o que desconhecíeis, considerando leve o que eragravíssimo ante Deus.",
+ 16,
+ "Deveríeis, ao ouvi-la, ter dito: Não nos compete falar disso. Glorificado sejas! Essa é uma grave calúnia!",
+ 17,
+ "Deus vos exorta a que jamais reincidais em semelhante (falta), se sois fiéis.",
+ 18,
+ "E Deus vos elucida os versículos, porque é Sapiente, Prudentíssimo.",
+ 19,
+ "Sabei que aqueles que se comprazem em que a obscenidade se difunda entre os fiéis, sofrerão um doloroso castigo, nestemundo e no outro; Deus sabe e vós ignorais.",
+ 20,
+ "E se não fosse pela graça de Deus e pela Sua misericórdia para convosco... e Deus é Compassivo, Misericordiosíssimo.",
+ 21,
+ "Ó fiéis, não sigais as pegadas de Satanás; e saiba, quem segue as pegadas de Satanás, que ele recomenda a obscenidadee o ilícito. E se não fosse pela graça de Deus e pela Sua misericórdia para convosco, Ele jamais teria purificado nenhum devós; porém, Deus purifica quem Lhe apraz, porque é Oniouvinte, Sapientíssimo.",
+ 22,
+ "Que os dignos e os opulentos, dentre vós, jamais jurem não favorecerem seus parentes, os necessitados e expatriadospela causa de Deus; porém, que os tolerem e os perdoem. Não vos agradaria, por acaso, que Deus vos perdoasse? Ele éIndulgente, Misericordiosíssimo.",
+ 23,
+ "Em verdade, aqueles que difamarem as mulheres castas, inocentes e fiéis, serão malditos, neste mundo e no outro, esofrerão um severo castigo.",
+ 24,
+ "Dia virá em que suas línguas, suas mãos e seus pés testemunharão contra eles, pelo que houverem cometido.",
+ 25,
+ "Nesse dia Deus os recompensará pelo que merecerem, e então saberão que Deus é a verdade Manifesta.",
+ 26,
+ "As despudoradas estão destinadas aos despudorados, e os despudorados às despudoradas; as pudicas aos pudicos e ospudicos às pudicas. Estes últimos não serão afetados pelo que deles disserem; obterão indulgência e um magnífico sustento.",
+ 27,
+ "Ó fiéis, não entreis em casa de alguma além da vossa, a menos que peçais permissão e saudeis os seus moradores. Isso épreferível para vós; quiçá, assim, mediteis.",
+ 28,
+ "Porém, se nelas não achardes ninguém, não entreis, até que vo-lo tenham permissão. E se vos disserem: Retirai-vos!, atendei-os, então; isso vos será mais benéfico. Sabei que Deus é Sabedor de tudo quanto fazeis.",
+ 29,
+ "Não sereis recriminados se entrardes em casas desabitadas que tenham alguma utilidade para vós; Deus sabe tanto o quemanifestais como o que ocultais.",
+ 30,
+ "Dize aos fiéis que recatem os seus olhares e conservem seus pudores, porque isso é mais benéfico para eles; Deus estábem inteirado de tudo quanto fazem.",
+ 31,
+ "Dize às fiéis que recatem os seus olhares, conservem os seus pudores e não mostrem os seus atrativos, além dos que (normalmente) aparecem; que cubram o colo com seus véus e não mostrem os seus atrativos, a não ser aos seus esposos, seus pais, seus sogros, seus filhos, seus enteados, seus irmãos, seus sobrinhos, às mulheres suas servas, seus criados isentasdas necessidades sexuais, ou às crianças que não discernem a nudez das mulheres; que não agitem os seus pés, para que nãochamem à atenção sobre seus atrativos ocultos. Ó fiéis, voltai-vos todos, arrependidos, a Deus, a fim de que vos salveis!",
+ 32,
+ "Casai os celibatários, dentre vós, e também os virtuosos, dentre vossos servos e servas. Se forem pobres, Deus osenriquecerá com Sua graça, porque é Munificente, Sapientíssimo.",
+ 33,
+ "Aqueles que não possuem recursos para casar-se, que se mantenham castos, até que Deus os enriqueça com a Sua graça. Quanto àqueles, dentre vossos escravos e escravas, que vos peçam a liberdade por escrito, concedei-lha, desde que osconsidereis dignos dela, e gratificai-os com uma parte dos bens com que Deus vos agraciou. Não inciteis as vossas escravasà prostituição, para proporcionar-vos o gozo transitório da vida terrena, sendo que elas querem viver castamente. Mas sealguém as compelir, Deus as perdoará por terem sido compelidas, porque é Indulgente, Misericordiosíssimo.",
+ 34,
+ "Temos-vos enviado versículos lúcidos, e feito de exemplos daqueles que vos precederam, a uma exortação para osdevotos.",
+ 35,
+ "Deus é a Luz dos céus e da terra. O exemplo da Seu Luz é como o de um nicho em que há uma candeia; esta está numrecipiente; e este é como uma estrela brilhante, alimentada pelo azeite de uma árvore bendita, a oliveira, que não é orientalnem ocidental, cujo azeite brilha, ainda que não o toque o fogo. É luz sobre luz! Deus conduz a Sua Luz até quem Lhe apraz. Deus dá exemplos aos humanos, porque é Onisciente.",
+ 36,
+ "(Semelhante luz brilha) nos templos que Deus tem consentido sejam erigidos, para que neles seja celebrado o Seu nomee neles O glorifiquem de manhã e à tarde,",
+ 37,
+ "por homens a quem os negócios e as transações não desviam da recordação de Deus, nem da prática da oração, nem dopagamento do zakat. Temem o dia em que os corações e os olhos se transformem,",
+ 38,
+ "para que Deus os recompense melhor pelo que tiveram feito, acrescentando-lhes de Sua graça; sabei que Deus agraciaimensuravelmente a quem Lhe apraz.",
+ 39,
+ "Quanto aos incrédulos, as suas ações são como uma miragem no deserto; o sedento crerá ser água e, quando seaproximar dela, não encontrará coisa alguma. Porém, verá ante ele Deus, que lhe pedirá contas, porque Deus é Expedito nocômputo.",
+ 40,
+ "Ou (estará) como nas trevas de um profundo oceano, coberto por ondas; ondas, cobertas por nuvens escuras, que sesobrepõem umas às outras; quando (o homem) estende a sua mão, mal pode divisá-la. Pois a quem Deus não fornece luz, jamais a terá.",
+ 41,
+ "Não reparas, acaso, em que tudo quanto há nos céus e na terra glorifica a Deus, inclusive os pássaros, ao estenderem assuas asas? Cada um está ciente do seu (modo de) orar e louvar. E Deus é Sabedor de tudo quanto fazem.",
+ 42,
+ "A Deus pertence o reino dos céus e da terra e a Deus será o retorno.",
+ 43,
+ "Porventura, não reparas em como Deus impulsiona as nuvens levemente? Então as junta, e depois as acumula? Não vês achuva manar do seio delas?, E que Ele envia massas (de nuvens) de granizo, com que atinge quem Lhe apraz, livrando delequem quer? Pouco falta para que o resplendor das centelhas lhes ofusque as vistas.",
+ 44,
+ "Deus alterna a noite e o dia. Em verdade, nisto há uma lição para os sensatos.",
+ 45,
+ "E Deus criou da água todos os animais; e entre eles há os répteis, os bípedes e os quadrúpedes. Deus cria o que Lheapraz, porque Deus é Onipotente.",
+ 46,
+ "Temos revelado lúcidos versículos; e Deus encaminha quem Lhe apraz à senda reta.",
+ 47,
+ "Dizem: Cremos em Deus e no Mensageiro, e obedecemos. Logo, depois disso, uma parte deles volta as costas, porquenão é fiel.",
+ 48,
+ "E quando são convocados ante Deus e Seu Mensageiro, para que julguem entre eles, eis que um grupo deles desdenha.",
+ 49,
+ "Porém, se a razão está do lado deles, correm a ele, obedientes.",
+ 50,
+ "Abrigam a morbidez em seus corações; duvidam eles, ou temem que Deus e Seu Mensageiro os defraudem? Qual! É queeles são uns iníquos!",
+ 51,
+ "A resposta dos fiéis, ao serem convocados ante Deus e Seu Mensageiro, para que julguem entre eles, será: Escutamos eobedecemos! E serão venturosos.",
+ 52,
+ "Aqueles que obedecerem a Deus e ao Seu Mensageiro e temerem a Deus e a Ele se submeterem, serão os ganhadores!",
+ 53,
+ "Juraram solenemente por Deus que se tu lhes ordenasses (marcharem para o combate) iriam. Dize-lhes: Não jureis! Épreferível um obediência sincera. Sabei que Deus está bem inteirado de tudo quanto fazeis.",
+ 54,
+ "Dize-lhes (mais): Obedecei a Deus e obedecei ao Mensageiro. Porém, se vos recusardes, sabei que ele (o Mensageiro) ésó responsável pelo que lhe está encomendado, assim como vós sereis responsáveis pelo que vos está encomendado. Mas seobedecerdes, encaminhar-vos-eis, porque não incumbe ao Mensageiro mais do que a proclamação da lúcida Mensagem.",
+ 55,
+ "Deus prometeu, àqueles dentre vós que crêem e praticam o bem, fazê-los herdeiros da terra, como fez com os seusantepassados; consolidar-lhes a religião que escolheu para eles, e trocar a sua apreensão por tranqüilidade - Que Meadorem e não Me associem a ninguém! - Mas aqueles que, depois disto, renegarem, serão depravados.",
+ 56,
+ "E observai a oração, pagai o zakat e obedecei ao Mensageiro, para que tenha misericórdia de vós.",
+ 57,
+ "Não penses (ó Mensageiro) que os incrédulos podem desafiar-Nos na terra; a sua morada será o inferno. Que funestodestino!",
+ 58,
+ "Ó fiéis, que vossos criados e aqueles que ainda não alcançaram a puberdade vos peçam permissão (para vos abordar), em três ocasiões: antes da oração da alvorada; quando tirardes as vestes para a sesta; e depois da oração da noite - trêsocasiões de vossa intimidade. Fora disto, não sereis, nem vós, nem eles recriminados, se vos visitardes mutuamente. AssimDeus vos elucida os versículos, porque é Sapiente, Prudentíssimo.",
+ 59,
+ "Quando as vossas crianças tiverem alcançado a puberdade, que vos peçam permissão, tal como o faziam os seuspredecessores. Assim Deus vos elucida os Seus versículos, porque é Sapiente, Prudentíssimo.",
+ 60,
+ "Quanto às idosas que não aspirarem ao matrimônio, não serão recriminadas por se despojarem das suas vestimentasexteriores, não devendo, contudo exporem os seus atrativos. Porém, se se abstiverem disso, será melhor para elas. Sabei queDeus é Oniouvinte, Sapientíssimo.",
+ 61,
+ "Não haverá recriminação se o cego, o coxo, o enfermo, vós mesmos, comerdes em vossas casas, nas de vossos pais, devossas mães, de vossos irmãos, nas de vossos tios paternos, de vossas tias paternas, de vossos tios maternos, de vossas tiasmaternas, nas de que tomais conta, ou na de vossos amigos. Tampouco sereis censurados de comerdes em comum ouseparadamente. Quando entrardes em uma casa, saudai-vos mutualmente com a saudação bendita e afável, com referência aDeus. Assim, Ele vos elucida os Seus versículos para que raciocineis.",
+ 62,
+ "Somente são fiéis aqueles que crêem em Deus e em Seu Mensageiro e os que, quando estão reunidos com ele, para umassunto de ação coletiva, não se retiram sem antes haver-lhe pedido permissão. Aqueles que te pedirem permissão são osque crêem em Deus e no Seu Mensageiro. Se te pedirem permissão para irem tratar de alguns dos seus afazeres, concede-a aquem quiseres, e implora, para eles, o perdão de Deus, porque é Indulgente, Misericordiosíssimo.",
+ 63,
+ "Não julgueis que a convocação do Mensageiro, entre vós, é igual à convocação mútua entre vós, pois Deus conheceaqueles que, dentre vós, se esquivam furtivamente. Que temam, aqueles que desobedecem às ordens do Mensageiro, que lhessobrevenha uma provação ou lhes açoite um doloroso castigo.",
+ 64,
+ "Não é, acaso, certo, que é de Deus tudo quanto há nos céus e na terra? Sem dúvida que Ele conhece os vossossentimentos. E no dia em que (os humanos) retornarem a Ele, inteirá-los-á de tudo quanto houverem feito, porque Deus éOnisciente."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/25.json b/share/quran-json/TheQuran/pt/25.json
new file mode 100644
index 0000000..adcf075
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/25.json
@@ -0,0 +1,173 @@
+[
+ {
+ "id": "25",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Furqan",
+ "translated_name": "The Criterion",
+ "verse_count": 77,
+ "slug": "al-furqan",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1585,
+ 1602,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Bendito seja Aquele que revelou o Discernimento ao Seu servo - para que fosse um admoestador da humanidade -,",
+ 2,
+ "O Qual possui o reino dos céus e da terra. Não teve filho algum, nem tampouco teve parceiro algum no reinado. E crioutodas as coisas, e deu-lhes a devida proporção.",
+ 3,
+ "Não obstante, eles adoram, em vez d'Ele, divindades que nada podem criar, posto que elas mesmas foram criadas. E nãopodem prejudicar nem beneficiar a si mesmas, e não dispõem da morte, nem da vida, nem da ressurreição.",
+ 4,
+ "Os incrédulos dizem: Este (Alcorão) não é mais do que uma calúnia que ele (Mohammad) forjou, ajudado por outroshomens! Porém, com isso, proferem uma iniqüidade e uma falsidade.",
+ 5,
+ "E afirmam: São fábulas dos primitivos que ele mandou escrever. São ditadas a ele, de manhã e à tarde!",
+ 6,
+ "Dize-lhes: Revelou-mo Quem conhece o mistério dos céus e da terra, porque é Indulgente, Misericordiosíssimo.",
+ 7,
+ "E dizem: Que espécie de Mensageiro é este que come as mesmas comidas e anda pelas ruas? Por que não lhe foi enviadoum anjo, para que fosse, junto a ele, admoestador?",
+ 8,
+ "Ou por que não lhe foi enviado um tesouro? Ou por que não possui um vergel do qual desfrute? Os iníquos dizem ainda: Não seguis senão um homem enfeitiçado!",
+ 9,
+ "Olha com o que te comparam! Porém, assim se desviam, e nunca encontrarão senda alguma.",
+ 10,
+ "Bendito seja Quem, se Lhe aprouver, pode conceder-te algo melhor do que isso, (tais como): jardins, abaixo dos quaiscorrem os rios, bem como palácios.",
+ 11,
+ "Qual! Negam o advento da Hora! Temos destinado o tártaro para aqueles que negam a Hora:",
+ 12,
+ "Quando este (o tártaro), de um lugar longínquo, os avistar, eles lhe ouvirão o ribombar e a crepitação.",
+ 13,
+ "E quando, acorrentados, forem arrojados nele, em um local exíguo, suplicarão então pela destruição!",
+ 14,
+ "Não clameis, hoje, por uma só destruição; clamai, outrossim, por muitas destruições!",
+ 15,
+ "Pergunta-lhes: Que é preferível: isto, ou o Jardim da Eternidade que tem sido prometido aos devotos como recompensa edestino,",
+ 16,
+ "De onde obterão tudo quanto anelarem, e em que morarão eternamente, porque é uma promessa inexorável do teuSenhor?",
+ 17,
+ "No dia em que Ele os congregar, com tudo quanto adoram em vez de Deus, Ele dirá: Fostes vós, acaso, aqueles queextraviaram estes Meus servos ou foram eles que se extraviaram?",
+ 18,
+ "Responderão: Glorificado sejas! Não nos era dado adotar outros protetores em vez de Ti! Porém, agraciaste-os (combens terrenos), bem como seus pais, até que se esqueceram da Mensagem e foram desventurados.",
+ 19,
+ "(Deus dirá aos idólatras): Eis que as vossas divindades vos desmentem, no que afirmastes, não podereis esquivar-vos docastigo, nem socorrer-vos. A quem, dentre vós, tiver sido iníquo, infligiremos um severo castigo.",
+ 20,
+ "Antes de ti jamais enviamos mensageiros que não comessem os mesmo alimentos e caminhassem pelas ruas, e fizemosalguns, dentre vós, tentarem os outros. Acaso (ó fiéis), sereis perseverantes? Eis que o teu Senhor é Onividente.",
+ 21,
+ "Aqueles que não esperam o comparecimento ante Nós, dizem: Por que não nos são enviados os anjos, ou não vemosnosso Senhor? Na verdade, eles se ensoberbeceram e excederam em muito!",
+ 22,
+ "No dia me que virem os anjos, nada haverá de alvissareiro para os pecadores, e (aqueles) lhe dirão: É uma barreiraintransponível.",
+ 23,
+ "Então, Nos disporemos a aquilatar as suas ações, e as reduziremos a moléculas de pó dispersas.",
+ 24,
+ "Nesse dia, os diletos do Paraíso estarão abrigados, no mais digno e prazeroso lugar de repouso.",
+ 25,
+ "Será o dia em que o céu se fenderá com os cirros, e os anjos serão enviados, em longa e esplendorosa fila.",
+ 26,
+ "Nesse dia, a verdadeira soberania será do Clemente, e será um dia aziago para os incrédulos.",
+ 27,
+ "Será o dia em que o iníquo morderá as mãos e dirá: Oxalá tivesse seguido a senda do Mensageiro!",
+ 28,
+ "Ai e mim! Oxalá não tivesse tomado fulano por amigo,",
+ 29,
+ "Porque me desviou da Mensagem, depois de ela me ter chegado. Ah! Satanás mostra-se aviltante para com os homens!",
+ 30,
+ "E o Mensageiro dirá: Ó Senhor meu, em verdade o meu povo tem negligenciado este Alcorão!",
+ 31,
+ "Assim destinamos a casa profeta um adversário entre os pecadores; porém, baste teu Senhor por Guia e Socorredor.",
+ 32,
+ "Os incrédulos dizem: Por que não lhe foi revelado o Alcorão de uma só vez? (Saibam que) assim procedemos parafirmar com ele o teu coração, e to ditamos em versículos, paulatinamente.",
+ 33,
+ "Sempre que te fizerem alguma refutação, comunicar-te-emos a verdade irrefutável e, dela, a melhor explanação.",
+ 34,
+ "Aqueles que forem congregados, de bruços, ante o inferno, encontrar-se-ão em pior posição, e ainda maisdesencaminhados.",
+ 35,
+ "Havíamos concedido o Livro a Moisés e, como ele, designamos como vizir seu irmão, Aarão.",
+ 36,
+ "E lhe dissemos: Ide ao povo que desmentiu os Nossos Sinais. E os destruímos completamente.",
+ 37,
+ "E afogamos o povo de Noé quando desmentiu os mensageiros, e fizemos dele um sinal para os humanos; e destinamos umdoloroso castigo aos iníquos.",
+ 38,
+ "E (exterminamos) os povos de Ad, de Tamud, e os habitantes de Arras e, entre eles, muitas gerações.",
+ 39,
+ "A cada qual narramos parábolas e exemplificamos, e a casa um aniquilamos por completo, devido (aos seus pecados).",
+ 40,
+ "(Os incrédulos) têm passado, freqüentemente, pela cidade, sobre a qual foi desencadeada a chuva nefasta. Não tem visto, acaso? Sim; porém, não temem a ressurreição.",
+ 41,
+ "E quando te vêem, escarnecem-te, dizendo: É este Deus que enviou por Mensageiro?",
+ 42,
+ "Ele esteve a ponto de desviar-nos dos nossos deuses, e assim aconteceria, se não tivéssemos sido constantes com eles! Porém, logo saberão, quando virem o castigo, mormente quem estiver mais desencaminhado!",
+ 43,
+ "Não tens reparado em quem toma por divindade os seus desejos? Ousarias advogar por ele?",
+ 44,
+ "Ou pensas que a maioria deles ouve ou compreende? Qual! São como o gado; qual, são mais irracionais ainda!",
+ 45,
+ "Não tens reparado em como o teu Senhor projeta a sombra? Se Ele quisesse, fá-la-ia estável! Entretanto, fizemos do solo seu regente.",
+ 46,
+ "Logo a recolhemos até Nós, paulatinamente.",
+ 47,
+ "Ele foi Quem vos fez a noite por manto, o dormir por repouso, e fez o dia como ressurreição.",
+ 48,
+ "Ele é Quem envia os ventos alvissareiros, mercê da Sua misericórdia; e enviamos do céu água pura,",
+ 49,
+ "Para com ela reviver uma terra árida, e com ela saciar tudo quanto temos criado: animais e humanos.",
+ 50,
+ "Em verdade, distribuímo-la (a água) entre eles, para que (de Nós) recordem-se; porém, a maioria dos humanos o nega (iniquamente).",
+ 51,
+ "E se quiséssemos, teríamos enviado um admoestador a cada cidade.",
+ 52,
+ "Não dês ouvido aos incrédulos; mas combate-os com denoda, com este (o Alcorão).",
+ 53,
+ "Ele foi Quem estabeleceu as duas massas de água; uma é doce e saborosa, e a outra é salgada e amarga, e estabeleceuentre amas uma linha divisória e uma barreira intransponível.",
+ 54,
+ "Ele foi Quem criou os humanos da água, aproximando-os, através da linhagem e do casamento; em verdade, o teu Senhoré Onipotente.",
+ 55,
+ "Não obstante, adoram, em vez de Deus, o que não pode beneficiá-los, nem prejudicá-los, sendo que o incrédulo épartidário (de Satanás) contra o seu Senhor.",
+ 56,
+ "E não te enviamos, senão como alvissareiro e admoestador.",
+ 57,
+ "Dize-lhes: Não vos exijo, por isso, recompensa alguma, além de pedir, a quem quiser encaminhar-se até a senda do seuSenhor, que o faça.",
+ 58,
+ "E encomenda-te ao Vidente, Imortal, e celebra os Seus louvores; e basta Ele como Sabedor dos pecados dos Seusservos.",
+ 59,
+ "Foi ele Quem criou, em seis dias, os céus e a terra, e tudo quanto existe entre ambos; então assumiu o Trono. OClemente! Interroga, pois, acerca disso, algum entendido (no assunto).",
+ 60,
+ "E quando lhes é dito: Prostrai-vos ante o Clemente!, dizem: E quem é o Clemente? Temos de nos prostrar ante quem nosmandas? E isso lhes agrava a aversão.",
+ 61,
+ "Bendito seja Quem colocou constelações no firmamento e pôs, nele, uma lâmpada em uma lua refletidora.",
+ 62,
+ "E foi Ele Quem fez a noite suceder ao dia, para quem recordar ou demonstrar gratidão.",
+ 63,
+ "E os servos do Clemente são aqueles que andam pacificamente pela terra e, e quando os insipientes lhes falam, dizem: Paz!",
+ 64,
+ "São aqueles que passam a noite adorando o seu Senhor, quer estejam prostrados ou em pé.",
+ 65,
+ "São aqueles que dizem: Ó Senho nosso, afasta de nós o suplício do inferno, porque o seu tormento é angustiante.",
+ 66,
+ "Que péssima estancia e o lugar de repouso!",
+ 67,
+ "São aqueles que, quando gastam, não se excedem nem mesquinham, colocando-se no meio-termo",
+ 68,
+ "(Igualmente o são) aqueles que não invocam, com Deus, outra divindade, nem matam nenhum ser que Deus proibiu matar, senão legitimamente, nem fornicam; (pois sabem que) quem assim proceder, receberão a sua punição:",
+ 69,
+ "No Dia da Ressurreição ser-lhes-á duplicado o castigo; então, aviltados, se eternizarão (nesse estado).",
+ 70,
+ "Salvo aqueles que se arrependerem, crerem e praticarem o bem; a estes, Deus computará as más ações como boas, porque Deus é Indulgente, Misericordiosíssimo.",
+ 71,
+ "Quanto àquele que se arrepender e praticar o bem, converter-se-á a Deus sinceramente.",
+ 72,
+ "Aqueles que não perjurarem e, quando se depararem com vaidades, delas se afastarem com honra,",
+ 73,
+ "Aqueles que, quando lhes forem recordados os versículos do seu Senhor, não os ignorarem, como se fossem surdos oucegos,",
+ 74,
+ "E aqueles que disserem: Ó Senhor nosso, faze com que as nossas esposas e a nossa prole sejam o nosso consolo, edesigna-nos imames dos devotos,",
+ 75,
+ "Tais serão recompensados, por sua perseverança, com o empíreo, onde serão recebidos com saudação e paz,",
+ 76,
+ "E onde permanecerão eternamente. Que magnífica estancia e o lugar de repouso!",
+ 77,
+ "Dize (àqueles que rejeitam): Meu Senhor não Se importará convosco, se não O invocardes. Mas desmentistes (averdade), e por isso haverá um (castigo) inevitável."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/26.json b/share/quran-json/TheQuran/pt/26.json
new file mode 100644
index 0000000..51ccfe7
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/26.json
@@ -0,0 +1,473 @@
+[
+ {
+ "id": "26",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ash-Shu'ara",
+ "translated_name": "The Poets",
+ "verse_count": 227,
+ "slug": "ash-shuara",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1588,
+ 1593,
+ 1585,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "Tah, Sin, Mim.",
+ 2,
+ "Estes são os versículos do Livro lúcido.",
+ 3,
+ "É possível que te mortifiques, porque não se tornam fiéis.",
+ 4,
+ "Se quiséssemos, enviar-lhes-íamos, do céu, um sinal, ante o qual seus pescoços se inclinariam, em humilhação.",
+ 5,
+ "Todavia, não lhes chega nenhuma nova Mensagem (provinda) do Clemente, sem que a desdenhem.",
+ 6,
+ "Desmentem-na; porém, bem logo lhes chegarão notícias do que escarnecem!",
+ 7,
+ "Porventura, não têm reparado na terra, em tudo quanto nela fazemos brotar de toda a nobre espécie de casais?",
+ 8,
+ "Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 9,
+ "E em verdade, o teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 10,
+ "Recorda-te de quando teu Senhor chamou Moisés e lhe disse: Vai ao povo dos iníquos,",
+ 11,
+ "Ao povo do Faraó. Acaso não (Me) temerão?",
+ 12,
+ "Respondeu-Lhe: Ó Senhor meu, em verdade, temo que me desmintam.",
+ 13,
+ "Meu peito se oprime e minha língua se entrava; envia comigo Aarão (para que me secunde),",
+ 14,
+ "Pois me acusam de crime e temo que me matem.",
+ 15,
+ "Disse (Deus): De maneira nenhum (farão isso)! Ireis ambos, com os Nossos sinais e estaremos convosco, vigiando.",
+ 16,
+ "Ide, pois, ambos, ao Faraó e dizei-lhe: Em verdade, somos mensageiros do Senhor do Universo,",
+ 17,
+ "Para que deixes os israelitas partirem conosco.",
+ 18,
+ "(O Faraó) disse (a Moisés): Porventura, não te criamos entre nós, desde criança, e não viveste conosco muitos anos datua vida?",
+ 19,
+ "E, apesar disso, cometeste uma ação (que bem sabes), e por assim fazeres, és um dos tantos ingratos!",
+ 20,
+ "Moisés lhe disse: Cometi-a quando ainda era um dos tantos extraviados.",
+ 21,
+ "Assim, fugi de vós, porque vos temia; porém, meu Senhor me agraciou com a prudência, e me designou como um dosmensageiros.",
+ 22,
+ "E por esse favor, do qual me exprobras, escravizaste os israelitas?",
+ 23,
+ "Perguntou-lhe o Faraó: E quem é o Senhor do Universo?",
+ 24,
+ "Respondeu-lhe: É o Senhor dos céus e da terra, e de tudo quanto há entre ambos, se queres saber.",
+ 25,
+ "O Faraó disse aos presentes: Ouvistes?",
+ 26,
+ "Moisés lhe disse: É teu Senhor e Senhor dos teus primeiros pais!",
+ 27,
+ "Disse (o Faraó): Com certeza, o vosso mensageiro é um energúmeno.",
+ 28,
+ "(Moisés) disse: É o Senhor do Oriente e do Ocidente, e de tudo quanto existe entre ambos, caso raciocineis!",
+ 29,
+ "Disse-lhe o Faraó: Se adorares a outro deus que não seja eu, far-te-emos prisioneiro!",
+ 30,
+ "Moisés (lhe) disse: Ainda que te apresentasse algo convincente?",
+ 31,
+ "Respondeu-lhe (o Faraó): Apresenta-o, pois, se és um dos verazes!",
+ 32,
+ "Então (Moisés) arrojou o seu cajado, e eis que este se converteu em uma verdadeira serpente.",
+ 33,
+ "Logo, estendeu a mão, e eis que apareceu diáfana aos olhos dos espectadores.",
+ 34,
+ "Disse (o Faraó) aos chefes presentes: Com toda a certeza este é um habilíssimo mago,",
+ 35,
+ "Que pretende expulsar-vos das vossas terras com a sua magia; o que me aconselhais, pois?",
+ 36,
+ "Responderam-lhe: Detém-no, e a seu irmão, e envia recrutadores pelas cidades.",
+ 37,
+ "Que te tragam quanto hábeis magos acharem.",
+ 38,
+ "E os magos foram convocados para um dia assinalado.",
+ 39,
+ "E foi dito ao povo: Estais reunidos?",
+ 40,
+ "Para que sigamos os magos (quanto à religião), se saírem vitoriosos?",
+ 41,
+ "E quando chegaram, os magos perguntaram ao Faraó: Poderemos contar com alguma recompensa, se sairmos vitoriosos?",
+ 42,
+ "Respondeu-lhes: Sim; ademais, sereis (colocados em postos) próximos (a mim).",
+ 43,
+ "Moisés lhes ordenou: Arrojai, pois, o que tender a arrojar!",
+ 44,
+ "Arrojaram, portanto, as suas cordas e os seus cajados, e disseram: Pelo poder do Faraó, certamente que nós sairemosvitoriosos!",
+ 45,
+ "Então Moisés arrojou o seu cajado, que se transformou numa serpente e engoliu tudo quanto haviam, antes, simulado.",
+ 46,
+ "Então os magos caíram prostrados.",
+ 47,
+ "E exclamaram: Cremos no Senhor do Universo,",
+ 48,
+ "Senhor de Moisés e de Aarão!",
+ 49,
+ "(O Faraó) lhes disse: Credes nele, sem que eu vos autorize? Com certeza ele é vosso líder, e vos ensinou a magia; porém, logo o sabereis! Sem dúvida, cortar-vos-eis as mão se os pés de cada lados opostos, e vos crucificarei a todos!",
+ 50,
+ "Responderam: Não importa, porque retornaremos ao nosso Senhor!",
+ 51,
+ "Em verdade, esperamos que o nosso Senhor perdoe os nossos pecados, porque agora somos os primeiros fiéis!",
+ 52,
+ "E inspiramos Moisés: Sai com Meus servos durante a noite, porque sereis perseguidos.",
+ 53,
+ "O Faraó enviou, entretanto, recrutadores às cidades,",
+ 54,
+ "Dizendo: Certamente, eles são um pequeno bando,",
+ 55,
+ "Que se tem rebelado contra nós.",
+ 56,
+ "E todos nós estamos precavidos!",
+ 57,
+ "Assim, Nós os privamos dos jardins e mananciais.",
+ 58,
+ "De tesouros e honráveis posições.",
+ 59,
+ "Assim foi; e concedemos tudo aquilo aos israelitas.",
+ 60,
+ "E eis que (o Faraó e seu povo) os perseguiram ao nascer do sol.",
+ 61,
+ "E quando as duas legiões se avistaram, os companheiros de Moisés disseram: Sem dúvida seremos apanhados!",
+ 62,
+ "Moisés lhes respondeu: Qual! Meu Senhor está comigo e me iluminará!",
+ 63,
+ "E inspiramos a Moisés: Golpeia o mar com o teu cajado! E eis que este se dividiu em duas partes, e cada parte ficoucomo uma alta e firme montanha.",
+ 64,
+ "E fizemos aproximarem-se dali os outros.",
+ 65,
+ "E salvamos Moisés, juntamente com todos os que com ele estavam.",
+ 66,
+ "Então, afogamos os outros.",
+ 67,
+ "Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 68,
+ "Em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 69,
+ "E recita-lhes (ó Mensageiro) a história de Abraão,",
+ 70,
+ "Quando perguntou ao seu pai e ao seu povo: O que adorais?",
+ 71,
+ "Responderam-lhe: Adoramos os ídolos, aos quais estamos consagrados.",
+ 72,
+ "Tornou a perguntar: Acaso vos ouvem quando os invocais?",
+ 73,
+ "Ou, por outra, podem beneficiar-vos ou prejudicar-vos?",
+ 74,
+ "Responderam-lhe: Não; porém, assim encontramos a fazer os nossos pais.",
+ 75,
+ "Disse-lhes: Porém, reparais, acaso, no que adorais,",
+ 76,
+ "Vós e vossos antepassados?",
+ 77,
+ "São inimigos para mim, coisa que não acontece com o Senhor do Universo,",
+ 78,
+ "Que me criou e me ilumina.",
+ 79,
+ "Que me dá de comer e beber.",
+ 80,
+ "Que, se eu adoecer, me curará.",
+ 81,
+ "Que me dará a morte e então me ressuscitará.",
+ 82,
+ "E que, espero perdoará as minhas faltas, no Dia do Juízo.",
+ 83,
+ "Ó Senhor meu, concede-me prudência e junta-me aos virtuosos!",
+ 84,
+ "Concede-me boa reputação na posteridade.",
+ 85,
+ "Conta-me entre os herdeiros do Jardim do Prazer.",
+ 86,
+ "Perdoa meu pai, porque foi um dos extraviados.",
+ 87,
+ "E não me aviltes, no dia em que (os homens) forem ressuscitados.",
+ 88,
+ "Dia em que de nada valerão bens ou filhos,",
+ 89,
+ "Salvo para quem comparecer ante Deus com um coração sincero.",
+ 90,
+ "E o Paraíso se aproximará dos devotos.",
+ 91,
+ "E o inferno será descoberto para os ímpios.",
+ 92,
+ "Então lhes será dito: Onde estão os que adoráveis,",
+ 93,
+ "Em vez de Deus? Poderão, acaso, socorrer-vos ou socorrem-se a si mesmos?",
+ 94,
+ "E serão arrojados nele, juntamente com os sedutores.",
+ 95,
+ "E com todos os exércitos de Lúcifer.",
+ 96,
+ "Quanto, então, dirão, enquanto disputam entre si:",
+ 97,
+ "Por Deus, estávamos em um evidente erro,",
+ 98,
+ "Quando vos igualávamos ao Senhor do Universo.",
+ 99,
+ "E os nossos sedutores eram apenas aqueles que estavam afundados em pecados.",
+ 100,
+ "E não temos intercessor algum,",
+ 101,
+ "Nem amigo íntimo.",
+ 102,
+ "Ah, se pudéssemos voltar atrás!, seríamos dos fiéis!",
+ 103,
+ "Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 104,
+ "E em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 105,
+ "O povo de Noé rejeitou os mensageiros.",
+ 106,
+ "Quando o irmão deles, Noé, lhes disse: Não temeis (a Deus)?",
+ 107,
+ "Em verdade sou para vós um fidedigno mensageiro.",
+ 108,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 109,
+ "Não vos exijo, por isso, recompensa alguma, porque a minha recompensa virá do Senhor do Universo.",
+ 110,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 111,
+ "Perguntaram-lhe: Como havemos de crer em ti, uma vez que só te segue a plebe?",
+ 112,
+ "Respondeu-lhes: E que sei eu daquilo que fizeram no passado?",
+ 113,
+ "Em verdade, seu cômputo só incumbe ao meu Senhor, se o compreendeis.",
+ 114,
+ "Jamais rechaçarei os fiéis,",
+ 115,
+ "Porque não sou mais do que um elucidativo admoestador.",
+ 116,
+ "Disseram-lhe: Se não desistires, ó Noé, contar-te-ás entre os apedrejados.",
+ 117,
+ "Exclamou: Ó Senhor meu, certamente meu povo me desmente.",
+ 118,
+ "Julga-no eqüitativamente e salva-me, juntamente com os fiéis que estão comigo!",
+ 119,
+ "E o salvamos, juntamente com os que, com ele, apinhavam a arca.",
+ 120,
+ "Depois, afogamos os demais.",
+ 121,
+ "Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 122,
+ "E em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 123,
+ "O povo de Ad rejeitou os mensageiros.",
+ 124,
+ "Quando seu irmão, Hud, lhes disse: Não temeis a Deus?",
+ 125,
+ "Sabei que sou, para vós, um fidedigno mensageiro.",
+ 126,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 127,
+ "Não vos exijo, por isso, recompensa alguma, porque a minha recompensa virá do Senhor do Universo.",
+ 128,
+ "Erguestes um marco em cada colina para que vos divertísseis?",
+ 129,
+ "E construístes inexpugnáveis fortalezas como que para eternizar-vos?",
+ 130,
+ "E quando vos esforçais, o fazeis despoticamente?",
+ 131,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 132,
+ "E temei a Quem vos cumulou com tudo o que sabeis.",
+ 133,
+ "E que vos cumulou de gado e filhos,",
+ 134,
+ "De jardins e manaciais.",
+ 135,
+ "Em verdade, temo por vós o castigo do dia aziago.",
+ 136,
+ "Responderam-lhe: bem pouco se nos dá que nos exortes ou que não sejas um dos exortadores,",
+ 137,
+ "Porque isto não é mais do que fábulas dos primitivos.",
+ 138,
+ "E jamais serão castigados!",
+ 139,
+ "E o desmentiram. Por conseguinte, exterminamo-los. Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 140,
+ "E, em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 141,
+ "O povo de Tamud rejeitou os mensageiros.",
+ 142,
+ "Quando seu irmão, Sáleh, lhes disse: Não temeis a Deus?",
+ 143,
+ "Em verdade, sou para vós um fidedigno mensageiro.",
+ 144,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 145,
+ "Não vos exijo, por isso, recompensa alguma, porque a minha recompensa virá do Senhor do Universo.",
+ 146,
+ "Sereis, acaso, deixados em segurança com o que tendes aqui,",
+ 147,
+ "Entre jardins e mananciais?",
+ 148,
+ "E semeaduras e tamareiras, cujos ramos estão prestes a quebrar (com o peso dos frutos)?",
+ 149,
+ "E entalhais habilmente casas (de pedras) nas montanhas.",
+ 150,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 151,
+ "E não obedeçais às ordens dos transgressores,",
+ 152,
+ "Que fazem corrupção na terra e não edificam!",
+ 153,
+ "Disseram-lhe: Certamente és um energúmeno!",
+ 154,
+ "Tu não és mais do que um mortal como nós. Apresenta-nos algum sinal, se és um dos verazes.",
+ 155,
+ "Respondeu-lhes: Eis aqui uma camela que, em dia determinado, tem direito à água, assim como vós tendes o vossodireito.",
+ 156,
+ "Não lhe causeis dano, porque vos açoitará um castigo do dia aziago.",
+ 157,
+ "Porém a esquartejaram, se bem que logo se arrependeram.",
+ 158,
+ "E o castigo os açoitou. Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 159,
+ "Em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 160,
+ "O povo de Lot rejeitou os mensageiros.",
+ 161,
+ "Quando o seu irmão, Lot, lhes disse: Não temeis (a Deus)?",
+ 162,
+ "Sabei que sou, para vós, um fidedigno mensageiro.",
+ 163,
+ "Temei, pois, a Deus, e obedecei-me!",
+ 164,
+ "Não vos exijo, por isso, recompensa alguma, porque a minha recompensa virá do Senhor do Universo.",
+ 165,
+ "Dentre as criaturas, achais de vos acercar dos varões,",
+ 166,
+ "Deixando de lado o que vosso Senhor criou para vós, para serem vossas esposas? Em verdade, sois um povodepravado!",
+ 167,
+ "Disseram-lhe: Se não desistires, Ó Lot, contar-te-ás entre os desterrados!",
+ 168,
+ "Asseverou-lhes: Sabei que me indigna a vossa ação!",
+ 169,
+ "Ó Senhor meu, livra-me, juntamente com a minha família, de tudo quanto praticam!",
+ 170,
+ "E o livramos, com toda a sua família,",
+ 171,
+ "Exceto uma a anciã, que foi deixada para trás.",
+ 172,
+ "Então, destruímos os demais,",
+ 173,
+ "E desencadeamos sobre eles um impetuoso torvelinho; e que péssimo foi o torvelinho para os admoestadores (quefizeram pouco caso)!",
+ 174,
+ "Sabei que nisto há um sinal; porém, a maioria deles não crê.",
+ 175,
+ "E em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 176,
+ "Os habitantes da floresta rejeitaram os mensageiros,",
+ 177,
+ "Quando Xuaib lhes disse: Não temeis a Deus?",
+ 178,
+ "Sabei que sou, para vós, um fidedigno mensageiro.",
+ 179,
+ "Temei, pois, a Deus, e obedecei-me.",
+ 180,
+ "Não vos exijo, por isso, recompensa alguma, porque a minha recompensa virá do Senhor do Universo.",
+ 181,
+ "Sede leais na medida, e não sejais dos defraudadores.",
+ 182,
+ "E pesai com a balança justa;",
+ 183,
+ "E não defraudeis os humanos em seus bens, e não pratiqueis devassidão na terra, com a intenção de corrompê-la.",
+ 184,
+ "E temei Quem vos criou, assim como criou as primeiras gerações.",
+ 185,
+ "Disseram-lhe: Certamente és um energúmeno!",
+ 186,
+ "Não és senão um mortal como nós, e pensamos que és um dos tantos mentirosos.",
+ 187,
+ "Faze, pois, com que caia sobre nós um fragmento dos céus, se és um dos verazes!",
+ 188,
+ "(Xuaib) lhes disse: Meu Senhor sabe melhor do que ninguém tudo quanto fazeis.",
+ 189,
+ "Porém o negaram: por isso os açoitou o castigo do dia da nuvem tenebrosa; em verdade, foi o castigo do diafunesto. Connecting to irc. foznet. com. br",
+ 190,
+ "Sabei que nisto há sinal; porém, a maioria deles não crê.",
+ 191,
+ "E em verdade, teu Senhor é o Poderoso, o Misericordiosíssimo.",
+ 192,
+ "Certamente (este Alcorão), é uma revelação do Senhor do Universo.",
+ 193,
+ "Com ele desceu o Espírito Fiel,",
+ 194,
+ "Para o teu coração, para que sejas um dos admoestadores,",
+ 195,
+ "Em elucidativa língua árabe.",
+ 196,
+ "E, em verdade, está mencionado nos Livros sagrados dos antigos.",
+ 197,
+ "Não é um sinal para eles, que os doutos entre os israelitas o reconheçam?",
+ 198,
+ "E se o houvéssemos revelados a algum dos não árabes,",
+ 199,
+ "E o houvesse recitado a eles, nele não teriam acreditado.",
+ 200,
+ "Assim, o infundiremos nos corações dos pecadores;",
+ 201,
+ "Porém, não crerão nele, até que vejam o doloroso castigo,",
+ 202,
+ "Que os açoitará subitamente, sem que disso se apercebam.",
+ 203,
+ "Então dirão: Porventura, não seremos tolerados?",
+ 204,
+ "Pretendem, acaso, apressar o Nosso castigo?",
+ 205,
+ "Discerne, então: Se os houvéssemos agraciado durante anos,",
+ 206,
+ "E os açoitasse aquilo que lhes foi prometido,",
+ 207,
+ "De nada lhes valeria o que tanto os deleitou!",
+ 208,
+ "Não obstante, jamais destruímos cidade alguma, sem que antes tivéssemos enviado admoestadores.",
+ 209,
+ "Como uma advertência, porque nunca fomos injustos.",
+ 210,
+ "E não foram os malignos que o (Alcorão) trouxeram.",
+ 211,
+ "Porque isso não lhes compete, nem poderiam fazê-lo.",
+ 212,
+ "Posto que lhes está vedado ouvi-lo.",
+ 213,
+ "Não invoqueis, portanto, juntamente com Deus, outra divindade, porque te contarás entre os castigados.",
+ 214,
+ "E admoesta os teus parentes mais próximos.",
+ 215,
+ "E abaixa as tuas asas para aqueles que te seguirem, dentre os fiéis.",
+ 216,
+ "Porém, se te desobedecerem, dize-lhes: Na verdade, estou livre (da responsabilidade) de tudo quanto fazeis!",
+ 217,
+ "E encomenda-te ao Poderoso, o Misericordiosíssimo,",
+ 218,
+ "Que te vê quando te ergues (para orar),",
+ 219,
+ "Assim como vê os teus movimentos entre os prostrados.",
+ 220,
+ "Porque Ele é o Oniouvinte, o Sapientíssimo.",
+ 221,
+ "Quereis que vos inteire sobre quem descerão os demônios?",
+ 222,
+ "Descerão sobre todos os mendazes e pecadores.",
+ 223,
+ "Que dão ouvidos aos satânicos e são, na sua maioria, falazes.",
+ 224,
+ "E os poetas que seguem os insensatos.",
+ 225,
+ "Não tens reparado em como se confundem quanto a todos os vales?",
+ 226,
+ "E em que dizem o que não fazem?",
+ 227,
+ "(Só não descerão) sobre os fiéis que praticam o bem, mencionam incessantemente Deus, e somente se defendem quandosão atacados iniquamente. Logo saberão os iníquos das vicissitudes que os esperam!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/27.json b/share/quran-json/TheQuran/pt/27.json
new file mode 100644
index 0000000..f267c45
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/27.json
@@ -0,0 +1,203 @@
+[
+ {
+ "id": "27",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Naml",
+ "translated_name": "The Ant",
+ "verse_count": 93,
+ "slug": "an-naml",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1605,
+ 1604
+ ]
+ },
+ 1,
+ "Tah, Sin. Estes são os versículos do Alcorão, o Livro lúcido,",
+ 2,
+ "Orientação e alvíssaras para os fiéis,",
+ 3,
+ "Que observam a oração pagam o zakat e estão persuadidos da outra vida.",
+ 4,
+ "Em verdade, àqueles que não crêem na outra vida, abrilhantaremos as suas ações, e eis que se extraviarão.",
+ 5,
+ "Estes são os que sofrerão o pior castigo e, na outra vida, serão os mais desventurados.",
+ 6,
+ "Em verdade, ser-te-á concedido o Alcorão, da parte do Prudente, Sapientíssimo.",
+ 7,
+ "Recorda-te de quando Moisés disse à sua família: Divisei fogo; trar-vos-ei notícias dele, ou trar-vos-ei uma áscua, paraque vos aqueçais.",
+ 8,
+ "Mas quando chegou a ele, ouviu uma voz: Bendito seja Quem está dentro do fogo e nas suas circunvizinhanças, e glória aDeus, Senhor do Universo!",
+ 9,
+ "Ó Moisés, Eu sou Deus, o Poderoso, o Prudentíssimo.",
+ 10,
+ "Arroja o teu cajado! E ao fazer isso, viu-o agitar-se, como se fosse uma serpente; voltou-se em fuga, sem se virar. (Foi-lhe dito): Ó Moisés! Não temas, porque os mensageiros não devem temer a Minha presença.",
+ 11,
+ "Mas se alguém, tendo-se condenado, logo se arrepende, trocando o mal pelo bem, (saiba que) sou Indulgente, Misericordiosíssimo.",
+ 12,
+ "E conduza a tua mão em teu manto, e daí a retirarás diáfana; (este será) um dos nove sinais perante o Faraó e seu povo, porque são depravados.",
+ 13,
+ "Porém, quando lhes chegaram os Nossos evidentes sinais, disseram: Isto é pura magia!",
+ 14,
+ "E os negaram, por iniqüidade e arrogância, não obstante estarem deles convencidos. Repara, pois, qual foi o destino doscorruptores.",
+ 15,
+ "Havíamos concedido a sabedoria a David e Salomão, os quais disseram: Louvado Seja Deus Que nos preferiu a muitosde Seus servos fiéis!",
+ 16,
+ "E Salomão foi herdeiro de David, e disse: Ó humanos, tem-nos sido ensinada a linguagem dos pássaros e tem-nos sidoproporcionada toda graça. Em verdade, esta é a graça manifesta (de Deus).",
+ 17,
+ "E foram consagrados ante Salomão, com os seus exércitos de gênios, de homens e de aves, em formação e hierarquia.",
+ 18,
+ "(Marcharam) até que chegaram ao vale profundo das formigas. Uma das formigas disse: Ó formigas, entrai na vossahabilitação, senão Salomão e seus exércitos esmagar-vos-ão, sem que disso se apercebam.",
+ 19,
+ "(Salomão) sorriu das palavras dela, e disse: Ó Senhor meu, inspira-me, para eu Te agradecer a mercê com que meagraciaste, a mim e aos meus pais, e para que pratique o bem que Te compraz, e admite-me na Tua misericórdia, juntamentecom os Teus servos virtuosos.",
+ 20,
+ "E pôs-se a vistoriar os bandos de pássaros e disse: Por que não vejo a poupa? Estará, acaso, entre os ausentes?",
+ 21,
+ "Juro que a castigarei severamente ou a matarei, a menos que se apresente uma razão evidente.",
+ 22,
+ "Porém, ela não tardou muito em chegar, e disse: Tenho estado em locais que tu ignoras; trago-te, de Sabá, uma notíciasegura.",
+ 23,
+ "Encontrei uma mulher, que me governa (o povo), provida de tudo, e possuindo um magnífico trono.",
+ 24,
+ "Encontrei-a, e ao seu povo, e se prostrarem diante do sol, em vez de Deus, porque Satã lhes abrilhantou as ações e osdesviou da senda; e por isso não se encaminham.",
+ 25,
+ "De sorte que não se prostram diante de Deus, Que descobre o obscuro nos céus e na terra, e conhece tanto o que ocultaiscomo o que manifestais.",
+ 26,
+ "Deus! Não há mais divindade além d'Ele! Senhor do Trono Supremo!",
+ 27,
+ "Disse-lhe (Salomão): Já veremos se dizes a verdade ou se és mentirosa.",
+ 28,
+ "Vai com esta carta e deixa-a com eles; retrai-te em seguida, e espera a resposta.",
+ 29,
+ "(Quando a ave assim procedeu) ela (a rainha) disse: Ó chefes, foi-me entregue uma carta respeitável.",
+ 30,
+ "É de Salomão (e diz assim): Em nome de Deus, o Clemente, o Misericordioso.",
+ 31,
+ "Não vos ensoberbeçais; outrossim, vinde a mim, submissos!",
+ 32,
+ "Disse mais: Ó chefes, aconselhai-me neste problema, posto que nada decidirei sem a vossa aprovação.",
+ 33,
+ "Responderam: Somos poderosos e temíveis; não obstante, o assunto te incumbe; considera, pois, o que hás deordenar-nos.",
+ 34,
+ "Disse ela: Quando os reis invadem a cidade, devastam-na e aviltam os seus nobres habitantes; assim farão conosco.",
+ 35,
+ "Porém, eu lhes enviarei presente, e esperarei, para ver com que voltarão os emissários.",
+ 36,
+ "Mas quando (o emissário) se apresentou ante Salomão, este lhe disse: Queres proporcionar-me riquezas? Sabe queaquelas que Deus me concedeu são preferíveis às que vos concedeu! Entretanto, vós vos regozijais de vossos presentes!",
+ 37,
+ "Retorna aos teus! Em verdade, atacá-los-emos com exércitos que não poderão enfrentar, e os expulsaremos, aviltados ehumilhados, de suas terras.",
+ 38,
+ "Disse (dirigindo-se aos seus): Ó chefes, quem de vós trará o trono dela, ates que venham a mim, submissos?",
+ 39,
+ "Um intrépido, dentre os gênios, lhe disse: Eu to trarei ates que te tenhas levantado do teu assento, porque sou poderoso efiel ao meu compromisso.",
+ 40,
+ "Disse aquele que possuía o conhecimento do Livro: Eu to trarei em menos tempo que um abrir e fechar de olhos! Equando (Salomão) viu o trono ante ele, disse: Isto provém da graça de meu Senhor, para verificar se sou grato ou ingrato. Pois quem agradece, certamente o faz em benefício próprio; e saiba o mal-agradecido que meu Senhor não necessita deagraciamentos, e é Generoso.",
+ 41,
+ "Disse: Dissimulai-lhe o trono, e assim veremos se ela está iluminada ou se está inscrita entre os desencaminhados.",
+ 42,
+ "E quando (a rainha) chegou, foi-lhe perguntado: O teu trono é assim? Ela respondeu: Parece que é o mesmo! E eis querecebemos a ciência antes daquilo, e nos submetemos (à vontade divina).",
+ 43,
+ "Desviaram-na aqueles a quem ela adorava, em vez de Deus, porque era de um povo incrédulo.",
+ 44,
+ "Foi-lhe dito: Entra no palácio! E quando o viu, pensou que no piso houvesse água; e, (recolhendo a saia), descobriu assuas pernas; (Salomão) lhe disse: É um palácio revestido de cristal. Ela disse: Ó Senhor meu, em verdade fui iníqua; agorame consagro, com Salomão, a Deus, Senhor do Universo!",
+ 45,
+ "Havíamos enviado ao povo de Samud seu irmão, Sáleh, que disse aos seus membros: Adorai a Deus! Porém, eis que sedividiram em dois grupos, que disputavam entre si.",
+ 46,
+ "Perguntou-lhes (Sáleh): Ó povo meu, por que apressais o mal em vez do bem? Por que não implorais o perdão de Deus, talvez recebereis misericórdia.",
+ 47,
+ "Responderam-lhe: Temos um mau augúrio acerca de ti e de quem está contigo. Disse-lhe: Vosso mau augúrio está empoder de Deus; porém, sois um povo que está à prova.",
+ 48,
+ "E havia, na cidade, nove indivíduos, que causaram corrupção na terra, e não praticavam o bem.",
+ 49,
+ "Eles disseram: Juramos que o surpreenderemos a ele e à sua família durante a noite, matando-os; então, diremos ao seuprotetor: Não presenciamos o assassinato de sua família, e somos verazes (nisso).",
+ 50,
+ "E conspiraram e planejaram; porém, Nós também planejamos, sem que eles o suspeitassem.",
+ 51,
+ "Repara, pois, qual foi a sorte da sua conspiração! Exterminamo-los, juntamente com todo o seu povo!",
+ 52,
+ "E eis suas casas assoladas, por causa da sua iniqüidade. Em verdade, nisto há um sinal para os sensatos.",
+ 53,
+ "E salvamos os fiéis benevolentes.",
+ 54,
+ "E recorda-te de Lot, quando disse ao seu povo: Cometeis a obscenidade com convicção?",
+ 55,
+ "Acercar-vos-eis, em vossa luxúria, dos homens, em vez das mulheres? Qual! Sois um povo de insensatos!",
+ 56,
+ "Porém, a única resposta de sue povo foi: Expulsai a família de Lot de vossa cidade, porque são pessoas que seconsideram castas!",
+ 57,
+ "Mas o salvamos, juntamente com sua família, exceto sua mulher, que somamos ao número dos deixados para trás.",
+ 58,
+ "E desencadeamos sobre eles uma tempestade. E que péssima foi a tempestade para os admoestados!",
+ 59,
+ "Dize (ó Mohammad): Louvado seja Deus e que a paz esteja com os Seus diletos servos! E pergunta-lhes: Que épreferível, Deus ou os ídolos que Lhe associam?",
+ 60,
+ "Quem criou os céus e a terra, e quem envia a água do céu, mediante a qual fazemos brotar vicejantes vergéis, cujossimilares jamais podereis produzir? Poderá haver outra divindade em parceria com Deus? Qual! Porém, (esses que assimafirmam) são seres que se desviam.",
+ 61,
+ "Ou quem fez a terra firme para se viver, dispôs em sua superfície rios, dotou-a de montanhas imóveis e pôs entre as duasmassas de água uma barreira? Poderá haver outra divindade em parceria com Deus? Qual! Porém, a sua maioria é insipiente.",
+ 62,
+ "Por outra, quem atende o necessitado, quando implora, e liberta do mal e vos designa sucessores na terra? Poderá haveroutra divindade em parceria com Deus? Quão pouco meditais!",
+ 63,
+ "Também, quem vos ilumina nas trevas da terra e do mar? E quem envia os ventos alvissareiros, que chegam ates da Suamisericórdia? Haverá outra divindade em parceria com Deus? Exaltado seja Deus de quanto Lhe associam!",
+ 64,
+ "Ainda: Quem origina a criação e logo reproduz? E quem vos dá o sustento do céu e da terra? Poderá haver outradivindade em parceria com Deus? Dize-lhes: Apresentai as vossas provas, se estiverdes certos.",
+ 65,
+ "Dize: Ninguém, além de Deus, conhece o mistério dos céus e da terra. Eles não se apercebem de quando serãoressuscitados.",
+ 66,
+ "Tal conhecimento dar-se-á na vida futura; porém, eles estão em dúvida a respeito disso, e, ainda, quanto a isso estãocegos!",
+ 67,
+ "Os incrédulos dizem: Quando formos convertidos em pó, como foram nossos pais, seremos, acaso, ressuscitados?",
+ 68,
+ "Isto nos foi prometido antes, assim como o foi a nossos pais; porém, não é mais do que fábulas dos primitivos.",
+ 69,
+ "Dize-lhes: Percorrei a terra e reparai qual foi a sorte dos pecadores!",
+ 70,
+ "E não te aflijas por eles, nem te angusties pelo que conspiram contra ti",
+ 71,
+ "E dizem: Quando se cumprirá tal promessa? Dizei-nos, se estais certos!",
+ 72,
+ "Responde-lhes: É possível que vos acosse algo do que pretendeis apressar!",
+ 73,
+ "Por certo que teu Senhor é Agraciante para com os humanos; porém, a sua maioria é ingrata.",
+ 74,
+ "E, em verdade, teu Senhor sabe tudo quanto dissimulam seus corações e tudo quanto manifestam.",
+ 75,
+ "E não há mistério nos céus e na terra que não esteja registrado no Livro lúcido.",
+ 76,
+ "Sabei que este Alcorão explica aos israelitas os principais objetos de suas divergências.",
+ 77,
+ "E que é, ademais, orientação e clemência para os fiéis.",
+ 78,
+ "Por certo que teu Senhor julgará entre eles com justiça, porque é Poderoso, Sapientíssimo.",
+ 79,
+ "Encomenda-te, pois, a Deus, porque segues a verdade elucidativa.",
+ 80,
+ "Certamente, tu não poderás fazer os mortos ouvir, nem fazer-te ouvir pelos surdos (especialmente) quando fogem,",
+ 81,
+ "Como tampouco és guia dos cegos em seu erro, porque só podes fazer-te escutar por aqueles que crêem nos Nossosversículos e são muçulmanos.",
+ 82,
+ "E quando recair sobre eles a sentença, produzir-lhes-emos da terra uma besta, que lhe dirá: A verdade é que os humanosnão crêem nos Nossos versículos!",
+ 83,
+ "Recorda-te de que um dia congregaremos um grupo de cada povo, dentre aqueles que desmentiram os Nossos versículos, os quais serão postos em formação,",
+ 84,
+ "Até que compareçam (ante o tribunal). Dir-lhes-á (Deus): Com que então desmentistes os Meus versículos, semcompreendê-los! Que estáveis fazendo?",
+ 85,
+ "E a sentença recairá sobre eles, por sua iniqüidade, e nada terão a alegar.",
+ 86,
+ "Acaso, não reparam em que temos instituído a noite para o seu repouso e o dia para dar-lhes luz? Por certo que nisto hásinais para os crentes!",
+ 87,
+ "E no dia em que soar a trombeta, espantar-se-ão aqueles que estiverem nos céus e na terra, exceto aqueles que Deusagraciar. E todos comparecerão, humildes, ante Ele.",
+ 88,
+ "E verás as montanhas, que te parecem firmes, passarem rápidas como as nuvens. Tal é a obra de Deus, Que tem dispostoprudentemente todas as coisas, porque está inteirado de tudo quanto fazeis.",
+ 89,
+ "Aqueles que tiverem praticado boas ações receberão maior recompensa e estarão isentos do espanto daquele dia.",
+ 90,
+ "Aqueles que tiverem cometido más ações, porém, serão precipitados, de bruços, no fogo infernal. Sereis retribuídos, senão pelo que fizestes?",
+ 91,
+ "Tem-me sido ordenado adorar o Senhor desta Metrópole, o Qual a consagrou - a Ele tudo pertence -, e também me foiordenado ser um dos muçulmanos.",
+ 92,
+ "(Foi-me ordenado ainda) que recite o Alcorão. E quem se encaminhar, fá-lo-á em benefício próprio; por outra, a quem sedesviar, dize-lhe: Sou tão-somente um dos tantos admoestadores.",
+ 93,
+ "E dize (mais): Louvado seja Deus! Ele vos mostrará os Seus sinais; então, os conhecereis. Sabe que teu Senhor não estádesatento a tudo quanto fazeis."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/28.json b/share/quran-json/TheQuran/pt/28.json
new file mode 100644
index 0000000..224188b
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/28.json
@@ -0,0 +1,193 @@
+[
+ {
+ "id": "28",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qasas",
+ "translated_name": "The Stories",
+ "verse_count": 88,
+ "slug": "al-qasas",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1589,
+ 1589
+ ]
+ },
+ 1,
+ "Tah, Sin, Mim.",
+ 2,
+ "Estes são os versículos do Livro lúcido.",
+ 3,
+ "Em verdade, relatar-te-emos, algo da história de Moisés e do Faraó (e também) ao povo fiel.",
+ 4,
+ "É certo que o Faraó se envaideceu, na terra (do Egito) e dividiu em castas o seu povo; subjugou um grupo deles, sacrificando-lhes os filhos e deixando com vidas as suas mulheres. Ele era um dos corruptores.",
+ 5,
+ "E quisemos agraciar os subjugados na terra, designando-os imames e constituindo-os herdeiros.",
+ 6,
+ "E os arraigando na terra, para mostrarmos ao Faraó, a Haman e seus exércitos, o que temiam.",
+ 7,
+ "E inspiramos a mãe de Moisés: Amamenta-o e, se temes por ele, lança-o ao rio; não temas, nem te aflijas, porque todevolveremos e o faremos um dos mensageiros.",
+ 8,
+ "A família do Faraó recolheu-o, para que viesse a ser, para os seus membros, um adversário e uma aflição; isso porque oFaraó, Haman e seus exércitos eram pecadores.",
+ 9,
+ "E a mulher do Faraó disse: Será meu consolo e teu. Não o mates! Talvez nos seja útil, ou o adoremos como filho. E elesde nada se aperceberam.",
+ 10,
+ "O coração impaciente da mãe de Moisés tornou-se vazio, e pouco faltou para que ela se delatasse, não lhe tivéssemosNós confortado o coração, para que continuasse sendo uma das fiéis.",
+ 11,
+ "E ela disse à irmã dele (Moisés): Segue-o! e esta o observou de longe, sem que os demais se apercebessem.",
+ 12,
+ "E fizemos com que recusasse as nutrizes. E disse (a irmã, referindo-se ao bebê): Quereis que vos indique uma casafamiliar, onde o criarão para vós e serão seus custódios?",
+ 13,
+ "Restituímo-lo, assim, à mãe, para que se consolasse e não se afligisse, e para que verificasse que a promessa de Deus éverídica. Porém, a maioria o ignora.",
+ 14,
+ "E quando chegou à idade adulta, e estava bem estabelecido concedemos-lhe prudência e sabedoria; assimrecompensamos os benfeitores.",
+ 15,
+ "E entrou na cidade, em um momento de descuido, por parte dos seus moradores, e encontrou nela dois homens brigando; um era da sua casta, e o outro da de seus adversários. O da sua casta pediu-lhe ajuda a respeito do adversário; Moisésespancou este e o matou. Disse: Isto é obra de Satanás, porque é um inimigo declarado, desencaminhador!",
+ 16,
+ "Disse (ainda): Ó Senhor meu, certamente me condenei! Perdoa-me, pois! E (Deus) o perdoou, porque é o Indulgente, oMisericordiosíssimo.",
+ 17,
+ "Disse (mais): Ó Senhor meu, posto que me tens agraciado, juro que jamais ampararei os criminosos!",
+ 18,
+ "Amanheceu, então, na cidade, temeroso e receoso, e eis que aquele que na véspera lhe havia pedido socorro gritava-lhepelo mesmo. Moisés lhe disse: Evidentemente, és um desordeiro!",
+ 19,
+ "E quando quis castigar o inimigo de ambos, este lhe disse: Ó Moisés, queres matar-me como mataste, ontem, um homem? Só anseias ser opressor na terra e não queres ser um dos pacificadores!",
+ 20,
+ "E dos confins da cidade acudiu, ligeiro, um homem que lhe disse: Ó Moisés, em verdade, os chefes conspiram contra ti, para matar-te. Sai, pois, da cidade, porque sou, para ti, um dos que dão sinceros conselhos!",
+ 21,
+ "Saiu então de lá, temeroso e receoso; disse: Ó Senhor meu, salva-me dos iníquos.",
+ 22,
+ "E quando se dirigiu rumo a Madian, disse: Quiçá meu Senhor me indique a senda reta.",
+ 23,
+ "E quando chegou à aguada de Madian, achou nela um grupo de pessoas que dava de beber (ao rebanho), e viu duasmoças que aguardavam, afastadas, por seu turno. Perguntou-lhes: Que vos ocorre? Responderam-lhe: Não podemos dar debeber (ao nosso rebanho), até que os pastores se tenham retirado, (e temos nós de fazer isso) porque o nosso pai édemasiado idoso.",
+ 24,
+ "Assim, ele deu de beber ao rebanho, e logo, retirando- se para uma sombra, disse: Ó Senhor meu, em verdade, estounecessitado de qualquer dádiva que me envies!",
+ 25,
+ "E uma (moça) se aproximou dele, caminhando timidamente, e lhe disse: Em verdade meu pai te convida pararecompensar-te por teres dado de beber (ao nosso rebanho). E quando se apresentou a ele e lhe fez a narração da (sua) aventura, (o ancião) lhe disse: Não temas! Tu te livraste dos iníquos.",
+ 26,
+ "Uma delas disse, então: Ó meu pai, emprega-o, porque é o melhor que poderás empregar, pois é forte e fiel.",
+ 27,
+ "Disse (o pai): Na verdade, quero casar-te com uma das minhas filhas, com a condição de que me sirvas durante oitoanos; porém, se cumprires dez, será por teu gosto, pois não quero obrigar-te e, se Deus quiser, achar-me-ás entre os justos.",
+ 28,
+ "Respondeu-lhe: Tal fica combinado entre mim e ti, e, seja qual for o término que tenha de cumprir, que não haveráinjustiça contra mim. seja Deus testemunha de tudo quanto dissermos!",
+ 29,
+ "E quando Moisés cumpriu o término e viajava com a sua família, percebeu, ao longe, um fogo, ao lado do monte (Sinai) e disse à sua família: Aguardai aqui, porque vejo fogo. Quiçá vos diga do que se trata ou traga umas brasas para vosaquecerdes.",
+ 30,
+ "E quando lá chegou, foi chamado por uma voz, que partia do lado direito do vale, a planície bendita, junto à árvore: ÓMoisés, sou Eu, Deus, Senhor do Universo!",
+ 31,
+ "Arroja teu cajado! E quando o viu agitar-se como uma serpente, virou-se em fuga, sem se voltar. (Foi-lhe dito): ÓMoisés, aproxima-te e não temas, porque és um dos que estão a salvo.",
+ 32,
+ "Introduz a tua mão em teu manto e a retirarás diáfana, imaculada; e junta a tua mão ao teu flanco (o que te resguardará) contra o temor. Estes serão dois argumentos (irrefutáveis) do teu Senhor para o Faraó, e seus chefes, porque são depravados.",
+ 33,
+ "Disse (Moisés): Ó Senhor meu, em verdade, matei um homem deles e temo que me matem!",
+ 34,
+ "E meu irmão, Aarão, é mais eloqüente do que eu; envia-o, pois, comigo, como auxiliar, para confirmar-me, porque temoque me desmintam.",
+ 35,
+ "Respondeu-lhe: Em verdade, fortalecer-te-emos com teu irmão; dar-vos-emos tal autoridade, para que eles jamaispossam igualar-se a vós. Com os Nossos sinais, vós e aqueles que vos seguirem sereis vencedores.",
+ 36,
+ "Mas quando Moisés lhes apresentou os Nossos sinais evidentes, disseram: isto não é mais do que falsa magia, poisjamais ouviremos falar disso os nossos antepassados.",
+ 37,
+ "Moisés lhes disse: Meu Senhor sabe melhor do que ninguém quem virá com a Sua orientação e quem obterá a últimamorada. Em verdade, os iníquos jamais prosperarão.",
+ 38,
+ "O Faraó disse: Ó chefes, não tendes, que eu saiba, outro deus além de mim! Ó Haman, acende, pois, (o forno), para (cozer) tijolos, e fabrica-me um monumento para que possa elevar-me até ao Deus de Moisés, se bem que, segundo meparece, (Moisés) seja um dos impostores!",
+ 39,
+ "E eles, com os seus exércitos, ensoberbeceram-se, e pensaram que jamais retornariam a Nós!",
+ 40,
+ "Porém, apanhamo-lo, juntamente com os seus exércitos, e os precipitamos no mar. Repara, pois, qual foi o fim dosiníquos!",
+ 41,
+ "E os designamos líderes, para incitarem (seus sequazes) ao fogo infernal; e, no Dia da Ressurreição, não serãosocorridos.",
+ 42,
+ "E os perseguimos com a maldição, neste mundo, e, no Dia da Ressurreição, estarão entre os execrados.",
+ 43,
+ "Depois de termos aniquilado as primeiras gerações, concedemos a Moisés o Livro como discernimento, orientação emisericórdia para os humanos, a fim de que refletissem.",
+ 44,
+ "Porém, tu (ó Mohammad) não estavas do lado ocidental (do monte Sinai) quando decretamos a Moisés os mandamentos, nem tampouco te contavas entre as testemunhas (de tal evento).",
+ 45,
+ "Mas criamos novas gerações, que viveram muito tempo. Tu não eras habitante entre os madianitas, para lhes recitares osNossos versículos; porém, Nós é Quem mandamos mensageiros.",
+ 46,
+ "Tampouco estiveste no sopé do monte Sinai quando chamamos (Moisés); porém, foi uma misericórdia do teu Senhor, para que admoestes um povo que, antes de ti, jamais teve admoestador algum; quiçá, assim reflitam.",
+ 47,
+ "E para que, quando os açoitar uma calamidade, por suas más ações, não se escusem, dizendo: Ó Senhor nosso, por quenão nos enviastes um mensageiro, para que seguíssemos os Teus versículos e nos contássemos entre os fiéis?",
+ 48,
+ "Porém, quando lhes chegou de Nós a verdade, disseram: Por que não lhe foi concedido o mesmo que foi concedido aMoisés? - Não descreram eles no que foi concedido, antes, a Moisés? Disseram: São dois magos, que se ajudammutuamente! E disseram: Em verdade negamos tudo!",
+ 49,
+ "Dize-lhes: Apresentai um livro, da parte de Deus, que seja melhor guia do que qualquer um destes (Alcorão e Tora); então, eu o seguirei, se estiverdes certos.",
+ 50,
+ "E se não te atenderem, ficarás sabendo, então, que só seguem as suas luxúrias. Haverá alguém mais desencaminhado doque quem segue sua concupiscência, sem orientação alguma de Deus? Em verdade, Deus não encaminha os iníquos.",
+ 51,
+ "Eis que lhes fizemos chegar, sucessivamente, a Palavra, para que refletissem.",
+ 52,
+ "(São) aqueles a quem concedemos o Livro, antes, e nele crêem.",
+ 53,
+ "E quando lhes é recitado (o Alcorão), dizem: Cremos nele, porque é a verdade, emanada do nosso Senhor. Em verdade, já éramos muçulmanos, antes disso.",
+ 54,
+ "A estes lhes será duplicada a recompensa por sua perseverança, porque retribuem o mal com o bem e praticam acaridade daquilo com que os agraciamos.",
+ 55,
+ "E quando ouvem futilidades, afastam-se delas, dizendo: Somos responsáveis pelas nossas ações e vós (incrédulos) pelasvossas; que a paz esteja convosco! Não aspiramos à amizade dos insipientes.",
+ 56,
+ "Por certo que não és tu que orientas a quem queres; contudo, Deus orienta a quem Lhe apraz, porque conhece melhor doque ninguém os encaminhados.",
+ 57,
+ "(Os maquenses) dizem: Se seguíssemos, como tu, a Orientação (Alcorão), seríamos retirados de nossa terra! Porventura, não lhes temos estabelecido um santuário seguro ao qual chegam produtos de toda espécie como provisão Nossa! Porém, amaioria o ignora.",
+ 58,
+ "Quantas cidades temos destruído porque exultaram em sua vida (quanto às facilidades e à fartura)! Eis que suashabitações foram desabitadas, a não ser por uns poucos, depois deles, e fomos Nós o Herdeiro!",
+ 59,
+ "É inconcebível que teu Senhor tivesse destruído cidades, se antes enviar os seus habitantes um mensageiro que lhesrecitasse os Nossos versículos. Tampouco aniquilamos cidade alguma, a menos que os seus moradores fosse iníquos.",
+ 60,
+ "Tudo quanto vos tem sido concedido não é mais do que um gozo da vida terrena com os seus encantos; por outra, o queestá junto a Deus é preferível e mais persistente. Não raciocinais?",
+ 61,
+ "Acaso, aquele a quem temos feito uma boa promessa e que, com certeza, a alcançará, poderá ser equiparado àquele queagraciamos com o gozo da vida terrena, mas que, no Dia da Ressurreição, contar-se-á entre os que serão trazidos (ajulgamento)?",
+ 62,
+ "Recorda-lhes o dia em que (Deus) os convocará e lhes dirá: Onde estão os parceiros que pretendestes atribuir-Me?",
+ 63,
+ "E aqueles sobre os quais pesar tal atribuição, dirão: Ó Senhor nosso, são estes os que extraviamos; extraviamo-los, como fomos extraviados; isentamo-nos deles na Tua presença, posto que não nos adoravam.",
+ 64,
+ "E lhes será dito: Invocai vossos parceiros! E os invocarão; porém, não os atenderão.",
+ 65,
+ "Será o dia em que Ele os convocar, e em que lhes perguntará: Que respondestes aos mensageiros?",
+ 66,
+ "Nesse dia obscurecer-se-lhes-ão as respostas e eles não (poderão) se inquirir mutuamente.",
+ 67,
+ "Porém, quanto ao que se arrepender e praticar o bem, é possível que se conte entre os bem-aventurados.",
+ 68,
+ "Teu Senho cria e escolhe da maneira que melhor Lhe apraz, ao passo que eles não têm faculdade de escolha. Glorificadoseja Deus de tudo quanto Lhe associam!",
+ 69,
+ "Teu Senhor conhece tanto o que dissimulam os seus corações como o que manifestam (as suas bocas).",
+ 70,
+ "E Ele é Deus! Não há mais divindade além d'Ele! Seus são os louvores, do início e no fim! Seu é o juízo! E a Eleretornareis!",
+ 71,
+ "Pergunta-lhes: Que vos pareceria se Deus vos prolongasse a noite até ao Dia da Ressurreição? Que outra divindade, além de Deus, poderia trazer-vos a claridade? Não atentais para isso?",
+ 72,
+ "Pergunta-lhes mais: Que vos pareceria se Deus vos prolongasse o dia até ao Dia da Ressurreição? Que outra divindade, além de Deus, poderia proporcionar-vos a noite, para que repousásseis? Não vedes?",
+ 73,
+ "Mercê de Sua misericórdia vos fez a noite e o dia; (a noite) para que repouseis; (o dia) para que procureis a Sua graça, afim de que Lhe agradeçais.",
+ 74,
+ "O dia em que os convocar, dirá: Onde estão aqueles parceiros que pretendestes (associar-Me)?",
+ 75,
+ "E tiraremos uma testemunha de cada povo, e diremos: Apresentai as vossas provas! E então saberão que a verdade sópertence a Deus, e tudo quanto tiverem forjado desvanecer-se-á.",
+ 76,
+ "Em verdade, Carun era do povo de Moisés e o envergonhou. Havíamos-lhe concedido tantos tesouros, que as suaschaves constituíam uma carga para um grupo de homens robustos. Recorda quando o seu povo lhe disse: Não exultes, porqueDeus não aprecia os exultados.",
+ 77,
+ "Mas procura, com aquilo com que Deus te tem agraciado, a morada do outro mundo; não te esqueças da tua porção nestemundo, e sê amável, como Deus tem sido para contigo, e não semeies a corrupção na terra, porque Deus não aprecia oscorruptores.",
+ 78,
+ "Respondeu: Isto me foi concedido, devido a certo conhecimento que possuo! Porém, ignorava que Deus já haviaexterminado tantas gerações, mais vigorosas e mais opulentas do que ele. Em verdade, os pecadores não serão interrogados (imediatamente) sobre os seus pecados.",
+ 79,
+ "Então apresentou-se seu povo, com toda a sua pompa. Os que ambicionavam a vida terrena disseram: Oxalá tivéssemoso mesmo que foi concedido a Carun! Quão afortunado é!",
+ 80,
+ "Porém, os sábios lhes disseram: Ai de vós! A recompensa de Deus é preferível para o fiel que pratica o bem. Porém, ninguém a obterá, a não ser os perseverantes.",
+ 81,
+ "E fizemo-lo ser tragado, juntamente com sua casa, pela terra, e não teve partido algum que o defendesse de Deus, e nãose contou entre os defendidos.",
+ 82,
+ "E aqueles que, na véspera, cobiçavam a sua sorte, disseram: Ai de nós! Deus prodigaliza ou restringe as Suas mercês aquem Lhe apraz, dentre os Seus servos! Se Deus não nos tivesse agraciado, far-nos-ia sermos tragados pela terra. Emverdade, os incrédulos jamais prosperarão.",
+ 83,
+ "Destinamos a morada, no outro mundo, àqueles que não se envaidecem nem fazem corrupção na terra; e a recompensaserá dos tementes.",
+ 84,
+ "Aqueles que tiverem praticado o bem, obterão algo melhor do que isso; por outra, quem houver praticado o mal, saibaque os malfeitores não serão punidos senão segundo o houverem feito.",
+ 85,
+ "Em verdade, Quem te prescreveu o Alcorão te repatriará. Dize-lhes: Meu Senhor sabe muito melhor do que ninguémquem trouxe a Orientação e quem está em erro evidente.",
+ 86,
+ "E não esperavas que te fosse revelado o Livro; foi-o, devido à misericórdia do teu Senhor. Não sirvas, pois, de amparoaos incrédulos!",
+ 87,
+ "Que jamais te afastem dos versículos de Deus, uma vez que te foram revelados; admoesta (os humanos) quanto ao teuSenhor e não sejas um daqueles que (Lhe) atribuem parceiros.",
+ 88,
+ "E não invoqueis, à semelhança de Deus, outra divindade, porque não há mais divindades além d'Ele! Tudo perecerá, exceto o Seu Rosto Seu é o Juízo, e a Ele retornareis!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/29.json b/share/quran-json/TheQuran/pt/29.json
new file mode 100644
index 0000000..1940467
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/29.json
@@ -0,0 +1,158 @@
+[
+ {
+ "id": "29",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-'Ankabut",
+ "translated_name": "The Spider",
+ "verse_count": 69,
+ "slug": "al-ankabut",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1593,
+ 1606,
+ 1603,
+ 1576,
+ 1608,
+ 1578
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim.",
+ 2,
+ "Porventura, pensam os humanos que serão deixados em paz, só porque dizem: Cremos!, sem serem postos à prova?",
+ 3,
+ "Havíamos provado seus antecessores, a fim de que Deus distinguisse os leais dos impostores.",
+ 4,
+ "Crêem, acaso, os malfeitores, que poderão iludir-Nos? Quão péssimo é o que julgam!",
+ 5,
+ "Quanto àquele que anela o comparecimento ante Deus, saiba que certamente o destino prefixado, por Ele, é inexorável, porque Ele é o Oniouvinte, o Sapientíssimo.",
+ 6,
+ "Quanto àquele que lutar pela causa de Deus, o fará em benefício próprio; porém, sabei que Deus pode prescindir de todaa humanidade.",
+ 7,
+ "Quanto aos fiéis que praticam o bem, saibam que os absolveremos das suas faltas e os recompensaremos com algosuperior ao que houverem feito.",
+ 8,
+ "E recomendamos ao homem benevolência para com seus pais; porém, se te forçarem a associar-Me ao que ignoras, nãolhes obedeças. Sabei (todos vós) que o vosso retorno será a Mim, e, então, inteirar-vos-ei de tudo quanto houverdes feito.",
+ 9,
+ "Quanto aos fiéis que praticam o bem, admiti-los-emos entre os virtuosos.",
+ 10,
+ "Entre os humanos há aqueles que dizem: Cremos em Deus! Porém, quando são afligidos pela causa de Deus, equiparam aopressão do homem ao castigo de Deus. E quando lhes chega algum socorro, da parte do teu Senhor, dizem: Em verdade, estávamos convosco! Acaso Deus não sabe melhor do que ninguém tudo quanto encerram os corações das criaturas?",
+ 11,
+ "E certamente Deus conhece tanto os fiéis quanto os hipócritas.",
+ 12,
+ "E os incrédulos dizem aos fiéis: Segui a nossa senda, e nos responsabilizaremos por vossas faltas! Qual! Não podemnem se responsabilizar pelas suas faltas, porque são impostores!",
+ 13,
+ "Certamente, arcarão com o seu peso, assim como outros pesos além do seu; e no Dia da Ressurreição serão interrogadossobre tudo quanto houverem forjado.",
+ 14,
+ "Enviamos Noé ao seu povo; permaneceu entre eles mil anos menos cinqüenta, e o dilúvio surpreendeu esse povo em suainiqüidade.",
+ 15,
+ "E o salvamos, juntamente com os ocupantes da arca, e fizemos dela um sinal para a humanidade.",
+ 16,
+ "E recorda-te de Abraão, quando disse ao seu povo: Adorai a Deus e temei-O! isso será melhor para vós, se ocompreendeis!",
+ 17,
+ "Qual, somente adorais ídolos, em vez de Deus, e inventai calúnias! Em verdade, os que adorais, em vez de Deus, nãopodem proporcionar-vos sustento. Procurai, pois, o sustento junto a Deus, adorai-O e agradecei-Lhe, porque a Eleretornareis.",
+ 18,
+ "E se rejeitardes (a Mensagem), sabei que outras gerações, anteriores a vós, desmentiram (seus mensageiros). E aomensageiro só incumbe a proclamação da lúcida mensagem.",
+ 19,
+ "Não reparam, acaso, em como Deus origina a criação e logo a reproduz? Em verdade, isso é fácil a Deus.",
+ 20,
+ "Dize-lhes: Percorrei a terra e contemplai como Deus origina a criação; assim sendo, Deus pode produzir outra criação, porque Deus é Onipotente.",
+ 21,
+ "Ele castiga quem deseja e Se apiada de quem Lhe apraz, e a Ele retornareis.",
+ 22,
+ "Não podereis frustrar (os Planos de Deus), tanto na terra como no céus, e além de Deus não tereis protetor nem defensoralgum!",
+ 23,
+ "Quanto àqueles que negam os versículos de Deus e o comparecimento ante Ele, esses desesperarão por Minha clemênciae sofrerão um doloroso castigo.",
+ 24,
+ "Porém, a única resposta do seu povo (de Abraão) foi: Matai-o e queimai-o! Mas Deus o salvou do fogo. Certamente, nisso há sinais para os crentes.",
+ 25,
+ "E ele lhes disse: Só haveis adotado ídolos em vez de Deus, como vínculo de amor entre vós, na vida terrena; eis que, noDia da Ressurreição, desconhecer-vos-eis e vos amaldiçoareis reciprocamente; e vossa morada será o fogo, e jamais tereissocorredores.",
+ 26,
+ "Lot acreditou nele. Ele disse: Em verdade, emigrarei para onde me ordene o meu Senhor, porque Ele é o Poderoso, oPrudentíssimo.",
+ 27,
+ "E o agraciamos com Isaac e Jacó, e designamos, para a sua prole, a profecia e o Livro; concedemos-lhe a suarecompensa neste mundo e, no outro, contar-se-á entre os virtuosos.",
+ 28,
+ "E de quando Lot disse ao seu povo: Verdadeiramente, cometeis obscenidades que ninguém no mundo cometeu, antes devós.",
+ 29,
+ "Vós vos aproximais dos homens, assaltais as estradas e, em vossos concílios, cometeis o ilícito! Porém, a única respostado seu povo foi: Manda-nos o castigo de Deus, se estiveres certo.",
+ 30,
+ "Disse: Ó Senhor meu, concede-me a vitória sobre o povo dos corruptores!",
+ 31,
+ "E quando os Nossos mensageiros (angelicais) levaram a Abraão as alvíssaras de boas novas, disseram: Em verdade, exterminaremos os moradores desta cidade, porque eles são iníquos.",
+ 32,
+ "Disse-lhes: Sabei que Lot vive nela. Disseram-lhe: Nós bem sabemos quem nela está; e sem dúvida que o salvaremos, juntamente com os seus familiares, exceto a sua mulher, que se contará entre os deixados para trás.",
+ 33,
+ "E quando Nossos mensageiros se apresentaram a Lot, este se angustiou por causa deles e por sua própria impotência emos defender. Disseram-lhe: Não temas, nem te aflijas, porque te salvaremos, juntamente com a tua família, exceto a tuamulher, que se contará entre os deixados para trás.",
+ 34,
+ "Sabei que desencadearemos sobre os moradores desta cidade um castigo do céu por sua depravação.",
+ 35,
+ "E, daquilo, deixamos um sinal para os sensatos.",
+ 36,
+ "E enviamos aos madianitas seu irmão, Xuaib (Jetro), que lhes disse: Ó povo meu, adorai a Deus, temei o Dia do JuízoFinal, e não injurieis na terra, corrompendo-a!",
+ 37,
+ "Porém, desmentiram-no, e a centelha os fulminou, e a manhã encontrou-os jacentes em seus lares.",
+ 38,
+ "E aniquilamos o povo de Ad e o de Samud, como atestam (as ruínas de) suas casas, porque Satanás lhes abrilhantou asações e os desencaminhou da (verdadeira) senda, apesar de serem perspicazes.",
+ 39,
+ "E (recorda-te de) Carun, do Faraó e de Haman. Moisés lhes apresentou as evidências, mas eles se ensoberbeceram naterra, mas não puderam iludir(-Nos).",
+ 40,
+ "Porém, castigamos cada um, por seus pecados; sobre alguns deles desencadeamos um furacão; a outros, fulminou-os oestrondo; a outros, fizemo-los serem tragados pela terra e, a outros, afogamo-los. É inconcebível que Deus os houvessecondenado; outrossim, condenaram-se a si mesmos.",
+ 41,
+ "O exemplo daqueles que adotam protetores, em vez de Deus, é igual ao da aranha, que constrói a sua própria casa. Porcerto que a mais fraca das casas é a teia de aranha. Se o soubessem!",
+ 42,
+ "Em verdade, Deus sabe que nada significa o que invocam em vez d'Ele, e Ele é o Poderoso, o Prudentíssimo.",
+ 43,
+ "E estas parábolas, citamo-las aos humanos; porém, só os sensatos as compreendem.",
+ 44,
+ "Deus criou os céus e a terra com prudência; certamente, nisto há um sinal para os fiéis.",
+ 45,
+ "Recita o que te foi revelado do Livro e observa a oração, porque a oração preserva (o homem) da obscenidade e doilícito; mas, na verdade, a recordação de Deus é o mais importante. Sabei que Deus está ciente de tudo quanto fazeis.",
+ 46,
+ "E não disputeis com os adeptos do Livro, senão da melhor forma, exceto com os iníquos, dentre eles. Dizei-lhes: Cremosno que nos foi revelado, assim como no que vos foi revelado antes; nosso Deus e o vosso são Um e a Ele nos submetemos.",
+ 47,
+ "E assim te revelamos o Livro. Aqueles a quem concedemos o Livro crêem nele, e também entre estes (árabes idólatras) há os que nele crêem; e ninguém, salvo os incrédulos, nega os Nosso versículos.",
+ 48,
+ "E nunca recitaste livro algum antes deste, nem o transcreveste com a tua mão direita; caso contrário, os difamadores teriaduvidado.",
+ 49,
+ "Qual! Ele encerra lúcidos versículos, inculcados nos corações daqueles a quem foi dado o conhecimento e ninguém, salvo os iníquos, nega os Nossos versículos.",
+ 50,
+ "E dizem: Por que não lhe foram revelados uns sinais do seu Senhor? Responde-lhes: Os sinais só estão com Deus, quanto a mim, sou somente um elucidativo admoestador.",
+ 51,
+ "Não lhes basta, acaso, que te tenhamos revelado o Livro, que lhes é recitado? Em verdade, nisto há mercês e mensagempara os fiéis.",
+ 52,
+ "Dize-lhes: Basta-me Deus por testemunha, entre vós e mim. Ele conhece o que há nos céus e na terra. Aqueles quecrerem nas vaidades e negarem Deus, serão os desventurados.",
+ 53,
+ "Apressam-te com o castigo; porém, se não fosse pelo término prefixado, tê-los-ia açoitado o castigo; saibam eles queeste os surpreenderá inopinadamente, sem que para isso estejam prevenidos.",
+ 54,
+ "Apressam-te com o castigo; porém, certamente, o inferno cercará os incrédulos (por todos os lados).",
+ 55,
+ "(Será) o dia em que o castigo os cobrirá por cima e por baixo; então, ser-lhe-á dito: Sofrei as conseqüências das vossasações!",
+ 56,
+ "Ó fiéis, servos Meus, em verdade, a Minha terra é ampla. Adorai-Me, pois!",
+ 57,
+ "Toda alma provará o gosto da morte; então, retornareis a Nós.",
+ 58,
+ "Quanto aos fiéis, que praticam o bem, dar-lhes-emos um lar no Paraíso, abaixo dos quais correm rios, onde morarãoeternamente. Quão excelente é a recompensa dos caritativos,",
+ 59,
+ "Que perseveram e se encomendam ao seu Senhor!",
+ 60,
+ "E quantas criaturas existem que não podem procurar o seus sustento! Deus as agracia da mesma maneira que a vós, e Eleé o Oniouvinte, o Sapientíssimo!",
+ 61,
+ "E se lhes perguntas: Quem criou os céus e a terra e submeteu o sol e a lua? Eles respondem: Deus! Então, por que seretraem?",
+ 62,
+ "Deus prodigaliza e restringe a subsistência a quem Lhe apraz, dentre os Seus servos, porque Deus é Onisciente.",
+ 63,
+ "E se lhes perguntas: Quem faz descer a água do céu e com ela vivifica a terra, depois de haver sido árida? Respondem-te: Deus! Dize: Louvado seja Deus! Porém, a maioria é insensata.",
+ 64,
+ "E que é a vida terrena, senão diversão e jogo? Certamente a morada no outro mundo é a verdadeira vida. Se osoubessem!",
+ 65,
+ "Quando embarcam nos navios, invocam Deus sinceramente; porém, quando, a salvo, chegam à terra, eis que (Lhe) atribuem parceiros,",
+ 66,
+ "Para, em seguida, desagradecerem tudo, com que o temos cumulado, e para se deleitarem. Logo o saberão!",
+ 67,
+ "E não reparam (os maquenses) em que lhes concedemos um santuário seguro, ao passo que, ao seu redor, as pessoaseram saqueadas? Crerão, acaso, nas falsidades, e rejeitarão as graças de Deus?",
+ 68,
+ "Haverá alguém, mais iníquo do que quem forja mentiras acerca de Deus ou desmente a verdade, quando esta lhe chega? Não há, acaso, no inferno, morada para os incrédulos?",
+ 69,
+ "Por outra, quanto àqueles que diligenciam por Nossa causa, encaminhá-los-emos pela Nossa senda. Sabei que Deus estácom os benfeitores."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/3.json b/share/quran-json/TheQuran/pt/3.json
new file mode 100644
index 0000000..37a7dae
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/3.json
@@ -0,0 +1,420 @@
+[
+ {
+ "id": "3",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Ali 'Imran",
+ "translated_name": "Family of Imran",
+ "verse_count": 200,
+ "slug": "ali-imran",
+ "codepoints": [
+ 1570,
+ 1604,
+ 32,
+ 1593,
+ 1605,
+ 1585,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim.",
+ 2,
+ "Deus! Não há mais divindade além d'Ele, o Vivente, o Subsistente.",
+ 3,
+ "Ele te revelou (ó Mohammad) o Livro (paulatinamente) com a verdade corroborante dos anteriores, assim como haviarevelado a Tora e Evangelho,",
+ 4,
+ "Anteriormente, para servir de orientação aos humanos, e relevou ainda o Discernimento. Aqueles que negarem osversículos de Deus, sofrerão um severo castigo, e Deus é Punidor, Poderosíssimo.",
+ 5,
+ "De Deus nada se oculta, tanto na terra como nos céus.",
+ 6,
+ "Ele é Quem vos configura nas entranhas, como Lhe apraz. Não há mais divindades além d'Ele, o Poderoso, oPrudentíssimo.",
+ 7,
+ "Ele foi Quem te revelou o Livro; nele há versículos fundamentais, que são a base do Livro, havendo outros alegóricos. Aqueles cujos abrigam a dúvida, seguem os alegóricos, a fim de causarem dissensões, interpretando-os capciosamnte. Porém, ninguém, senão Deus, conhece a sua verdadeira interpretação. Os sábios dizem: Cremos nele (o Alcorão); tudoemana do nosso Senhor. Mas ninguém o admite, salvo os sensatos.",
+ 8,
+ "(Que dizem:) Ó Senhor nosso, não desvies os nossos corações, depois de nos teres iluminados, e agracia-nos com a TuaMisericórdia, porque Tu és o Munificiente por excelência.",
+ 9,
+ "Ó Senhor nosso, Tu consagrarás os humanos para um dia indubitável. E Deus não faltará com a promessa.",
+ 10,
+ "Quanto aos incrédulos, nem as suas riquezas, nem os seus filhos, de nada lhes servirão ante Deus, e serão combustível doinferno.",
+ 11,
+ "Terão a mesma sorte do povo do Faraó e dos seus antecessores, que desmentiram os Nossos versículos; porém, Deus oscastigou por seus pecados, porque Deus é Severíssimo na punição.",
+ 12,
+ "Dize (ó Profeta) aos incrédulos: Sereis vencidos e congregados para o inferno. Que funesto leito!",
+ 13,
+ "Tivestes um exemplo nos dois grupos que se enfrentaram: um combatia pela causa de Deus e outro, incrédulo, via com osseus próprios olhos o (grupo) fiel, duas vezes mais numeroso do que na realidade o era; Deus reforça, com Seu socorro, quem Lhe apraz. Nisso há uma lição para os que têm olhos para ver.",
+ 14,
+ "Aos homens foi abrilhantado o amor à concupiscência relacionada às mulheres, aos filhos, ao entesouramento do ouro eda prata, aos cavalos de raça, ao gado e às sementeiras. Tal é o gozo da vida terrena; porém, a bem-aventurança está ao ladode Deus.",
+ 15,
+ "Dize (ó Profeta): Poderia anunciar-vos algo melhor do que isto? Para os que temem a Deus haverá, ao lado do seuSenhor, jardins, abaixo dos quais correm rios, onde morarão eternamente, junto a companheiros puros, e obterão acomplacência de Deus, porque Deus é observador dos Seus servos,",
+ 16,
+ "Que dizem: ó Senhor nosso, cremos! Perdoa os nossos pecados e preserva-nos do tormento infernal.",
+ 17,
+ "São perseverantes, verazes, consagrados (a Deus), caritativos, e nas horas de vigília imploram o perdão a Deus.",
+ 18,
+ "Deus dá testemunho de que não há mais divindade além d'Ele; os anjos e os sábios O confirmam Justiceiro; não há maisdivindades além d'Ele, o Poderoso, o Prudentíssimo.",
+ 19,
+ "Para Deus a religião é o Islam. E os adeptos do Livro só discordaram por inveja, depois que a verdade lhes foirevelada. Porém, quem nega os versículos de Deus, saiba que Deus é Destro em ajustar contas.",
+ 20,
+ "E se eles discutirem contigo (ó Mohammad), dize-lhes: Submeto-me a Deus, assim como aqueles que me seguem! Pergunta aos adeptos do Livro e aos iletrados: Tornai-vos-ei muçulmanos? Se se tornarem encaminhar-se-ão; se negarem, sabe que a ti só compete a proclamação da Mensagem. E Deus é observador dos Seus servos.",
+ 21,
+ "Alerta aqueles que negam os versículos de Deus, assassinam iniquamente os profetas e matam os justiceiros, dentre oshomens, de que terão um doloroso castigo.",
+ 22,
+ "São aqueles cujas obras tornar-se-ão sem efeito, neste mundo e no outro, e não terão socorredores.",
+ 23,
+ "Não reparaste nos que foram agraciados com uma parte do Livro, e mesmo quando foram convocados para o Livro deDeus, para servir-lhes de juiz, alguns deles o negaram desdenhosamente?",
+ 24,
+ "E ainda disseram: O fogo infernal não nos atingirá, senão por alguns dias. Suas próprias invenções os enganaram, em suareligião.",
+ 25,
+ "Que será deles, quando os congregarmos, no Dia Indubitável, em que cada alma será recompensada segundo o seumérito, e não será defraudada?",
+ 26,
+ "Dize: Ó Deus, Soberano do poder! Tu concedes a soberania a quem Te apraz e a retiras de quem desejas; exaltas quemqueres e humilhas a Teu belprazer. Em Tuas mãos está todo o Bem, porque só Tu és Onipotente.",
+ 27,
+ "Tu inseres a noite no dia e inseres o dia na noite; extrais o vivo do morto e o morto do vivo, e agraciasimensuravelmente a quem Te apraz.",
+ 28,
+ "Que os fiéis não tomem por confidentes os incrédulos, em detrimento de outros fiéis. Aqueles que assim procedem, demaneira alguma terão o auxílio de Deus, salvo se for para vos precaverdes e vos resguardardes. Deus vos exorta a d'Ele voslembrardes, porque para Ele será o retorno.",
+ 29,
+ "Dize: Quer oculteis o que encerram os vossos corações, quer o manifesteis, Deus bem o sabe, como também conhecetudo quanto existe nos céus e na terra, porque é Onipotente.",
+ 30,
+ "No dia em que cada alma se confrontar com todo o bem que tiver feito e com todo o mal que tiver cometido, ansiará paraque haja uma grande distância entre ela e ele (o mal). Deus vos exorta a d'Ele vos lembrardes, porque Deus é Compassivopara com os Seus servos.",
+ 31,
+ "Dize: Se verdadeiramente amais a Deus, segui-me; Deus vos amará e perdoará as vossas faltas, porque Deus éIndulgente, Misericordiosíssimo.",
+ 32,
+ "Dize: Obedecei a Deus e ao Mensageiro! Mas, se se recusarem, saibam que Deus não aprecia os incrédulos.",
+ 33,
+ "Sem dúvida que Deus preferiu Adão, Noé, a família de Abraão e a de Imran, aos seus contemporâneos,",
+ 34,
+ "Famílias descendentes umas das outras, porque Deus é Oniouvinte, Sapientíssimo.",
+ 35,
+ "Recorda-te de quando a mulher de Imran disse: Ó Senhor meu, é certo que consagrei a ti, integralmente, o fruto do meuventre; aceita-o, porque és o Oniouvinte, o Sapientíssimo.",
+ 36,
+ "E quando concebeu, disse: Ó Senhor meu, concebi uma menina. Mas Deus bem sabia o que eu tinha concebido, e ummacho não é o mesmo que uma fêmea. Eis que a chamo Maria; ponho-a, bem como à sua descendência, sob a Tua proteção, contra o maldito Satanás.",
+ 37,
+ "Seu Senhor a aceitou benevolentemente e a educou esmeradamente, confiando-a a Zacarias. Cada vem que Zacarias avisitava, no oratório, encontrava-a provida de alimentos, e lhe perguntava: Ó Maria, de onde te vem isso? Ela respondia: DeDeus!, porque Deus agracia imensuravelmente quem Lhe apraz.",
+ 38,
+ "Então, Zacarias rogou ao seu Senhor, dizendo: Ó Senhor meu, concede-me uma ditosa descendência, porque és Exorável, por excelência.",
+ 39,
+ "Os anjos o chamaram, enquanto rezava no oratório, dizendo-lhe: Deus te anuncia o nascimento de João, que corroboraráo Verbo de Deus, será nobre, casto e um dos profetas virtuosos.",
+ 40,
+ "Disse: Ó Senhor meu, como poderei ter um filho, se a velhice me alcançou a minha mulher é estéril? Disse-lhe (o anjo): Assim será. Deus faz o que Lhe apraz.",
+ 41,
+ "Disse: Ó Senhor meu, dá-me um sinal. Asseverou-lhe (o anjo): Teu sinal consistirá em que não fales com ninguémdurante três dias, a não ser por sinais. Recorda-te muito do teu Senhor e glorifica-O à noite e durante as horas da manhã.",
+ 42,
+ "Recorda-te de quando os anjos disseram: Ó Maria, é certo que Deus te elegeu e te purificou, e te preferiu a todas asmulheres da humanidade!",
+ 43,
+ "Ó Maria, consagra-te ao Senhor! Prostra-te e genuflecte, com os genuflexos!",
+ 44,
+ "Estes são alguns relatos do incognoscível, que te revelamos (ó Mensageiro). Tu não estavas presente com eles (osjudeus) quando, com setas, tiravam a sorte para decidir quem se encarregaria de Maria; tampouco estavam presentes quandorivalizavam entre si.",
+ 45,
+ "E quando os anjos disseram: Ó Maria, por certo que Deus te anuncia o Seu Verbo, cujo nome será o Messias, Jesus, filhode Maria, nobre neste mundo e no outro, e que se contará entre os diletos de Deus.",
+ 46,
+ "Falará aos homens, ainda no berço, bem como na maturidade, e se contará entre os virtuosos.",
+ 47,
+ "Perguntou: Ó Senhor meu, como poderei ter um filho, se mortal algum jamais me tocou? Disse-lhe o anjo: Assim será. Deus cria o que deseja, posto que quando decreta algo, diz: Seja! e é.",
+ 48,
+ "Ele lhe ensinará o Livro, a sabedoria, a Tora e o Evangelho.",
+ 49,
+ "E ele será um Mensageiro para os israelitas, (e lhes dirá): Apresento-vos um sinal d vosso Senhor: plasmarei de barro afigura de um pássaro, à qual darei vida, e a figura será um pássaro, com beneplácito de Deus, curarei o cego de nascença e oleproso; ressuscitarei os mortos, com a anuência de Deus, e vos revelarei o que consumis o que entesourais em vossas casas. Nisso há um sinal para vós, se sois fiéis.",
+ 50,
+ "(Eu vim) para confirmar-vos a Tora, que vos chegou antes de mim, e para liberar-vos algo que vos está vedado. Eu vimcom um sinal do vosso Senhor. Temei a Deus, pois, e obedecei-me.",
+ 51,
+ "Sabei que Deus é meu Senhor e vosso. Adorai-O, pois. Essa é a senda reta.",
+ 52,
+ "E quando Jesus lhes sentiu a incredulidade, disse: Quem serão os meus colaboradores na causa de Deus? Os discípulosdisseram: Nós seremos os colaboradores, porque cremos em Deus; e testemunhamos que somos muçulmanos.",
+ 53,
+ "Ó Senhor nosso, cremos no que tens revelado e seguimos o Mensageiro; inscreve-nos, pois, entre os testemunhadores.",
+ 54,
+ "Porém, (os judeus) conspiraram (contra Jesus); e Deus, por Sua parte, planejou, porque é o melhor dos planejadores.",
+ 55,
+ "E quando Deus disse: Ó Jesus, por certo que porei termo à tua estada na terra; ascender-te-ei até Mim e salvar-te-ei dosincrédulos, fazendo prevalecer sobre eles os teus prosélitos, até ao Dia da Ressurreição. Então, a Mim será o vosso retornoe julgarei as questões pelas quais divergis.",
+ 56,
+ "Quanto aos incrédulos, castigá-los-ei severamente, neste mundo e no outro, e jamais terão protetores.",
+ 57,
+ "Em troca, aos fiéis, que praticam o bem, Deus os recompensará; sabei que Deus não aprecia os iníquos.",
+ 58,
+ "Estes são os versículos que te ditamos, acompanhados de prudente Mensagem.",
+ 59,
+ "O exemplo de Jesus, ante Deus, é idêntico ao de Adão, que Ele criou do pó, então lhe disse: Seja! e foi.",
+ 60,
+ "Esta é a verdade emanada do teu Senhor. Não sejas, pois, dos que (dela) duvidam.",
+ 61,
+ "Porém, àqueles que discutem contigo a respeito dele, depois de te haver chegado o conhecimento, dize-lhes: Vinde! Convoquemos os nossos filhos e os vossos, e as nossas mulheres e as vossas, e nós mesmos; então, deprecaremos para que amaldição de Deus caia sobre os mentirosos.",
+ 62,
+ "Esta é a puríssima verdade: não há mais divindade além de Deus e Deus é o Poderoso, o Prudentíssimo.",
+ 63,
+ "Porém, se desdenharem, saibam que Deus bem conhece os corruptores.",
+ 64,
+ "Dize-lhes: Ó adeptos do Livro, vinde, para chegarmos a um termo comum, entre nós e vós: Comprometamo-nos, formalmente, a não adorar senão a Deus, a não Lhe atribuir parceiros e a não nos tomarmos uns aos outros por senhores, emvez de Deus. Porém, caso se recusem, dize-lhes: Testemunhais que somos muçulmanos.",
+ 65,
+ "Ó adeptos do Livro, por que discutis acerca de Abraão, se a Tora e o Evangelho não foram revelados senão depoisdele? Não raciocinais?",
+ 66,
+ "Vá lá que discutais sobre o que conheceis. Por que discutis, então, sobre coisas das quais não tendes conhecimentoalgum? Deus sabe e vós ignorais.",
+ 67,
+ "Abraão jamais foi judeu ou cristão; foi, outrossim, monoteísta, muçulmano, e nunca se contou entre os idólatras.",
+ 68,
+ "Os mais chegados a Abraão foram aqueles que o seguiram, assim como (o são) este Profeta e os que creram; e Deus éProtetor dos fiéis.",
+ 69,
+ "Uma parte dos adeptos do Livro tentou desviar-vos; porém, sem o perceber, não fez mais do que desviar a si mesma.",
+ 70,
+ "Ó adeptos do Livro, por que negais os versículos de Deus, conhecendo-os?",
+ 71,
+ "Ó adeptos do Livro, por que disfarçais a verdade com a falsidade, e ocultais a verdade com pleno conhecimento?",
+ 72,
+ "E há uma parte dos adeptos do Livro que diz: Crede, ao amanhecer, no que foi relevado aos fiéis, e negai-o ao anoitecer! Talvez assim renunciem à sua religião.",
+ 73,
+ "E não confieis senão naqueles que professam a vossa religião. Dize-lhes (ó Profeta): A verdadeira orientação é a deDeus. (Temeis, acaso), que alguém seja agraciado com o mesmo com que fostes agraciados, ou com que vos refutem peranteo vosso Senhor? Dize-lhes (ainda): A graça está na Mão de Deus, que a concede a Seu critério, porque Deus é Munificente, Sapientíssimo.",
+ 74,
+ "Ele agracia, com a Sua misericórdia, exclusivamente a quem Lhe apraz, porque Deus é Agraciante por excelência.",
+ 75,
+ "Entre os adeptos do Livro há alguns a quem podes confiar um quintal de ouro, que te devolverão intacto; também há osque, se lhes confiares um só dinar, não te restituirão, a menos que a isso os obrigues. Isto, porque dizem: Nada devemos aosiletrados. E forjam mentiras acerca de Deus, conscientemente.",
+ 76,
+ "Qual! No entanto, quem cumpre o seu pacto e teme, saiba que Deus aprecia os tementes.",
+ 77,
+ "Aqueles que negociam o pacto com Deus, e sua palavra empenhada, a vil preço, não participarão da bem-aventurança davida futura; Deus não lhes falará, nem olhará para eles, no Dia da Ressurreição, nem tampouco os purificará, e sofrerão umdoloroso castigo.",
+ 78,
+ "E também há aqueles que, com suas línguas, deturpam os versículos do Livro, para que peneis que ao Livro pertencem, quando isso não é verdade. E dizem: Estes (versículos) emanam de Deus, quando não emanam de Deus. Dizem mentiras arespeito de Deus, conscientemente.",
+ 79,
+ "É inadmissível que um homem a quem Deus concedeu o Livro, a sabedoria e a profecia, diga aos humanos: Sede meusservos, em vez de o serdes de Deus! Outrossim, o que diz, é: Sede servos do Senhor, uma vez que sois aqueles que estudame ensinam o Livro.",
+ 80,
+ "Tampouco é admissível que ele vos ordene tomar os anjos e os profetas por senhores. Poderia ele induzir-vos àincredulidade, depois de vos terdes tornado muçulmanos?",
+ 81,
+ "Quando Deus aceitou a promessa dos profetas, disse-lhes: Eis o Livro e a sabedoria que ora vos entrego. Depois voschegou um Mensageiro que corroborou o que já tendes. Crede nele e socorrei-o. Então, perguntou-lhes: Comprometer-vos-eis a fazê-lo? Responderam: Comprometemo-nos. Disse-lhes, então: Testemunharei, que também serei, convosco, Testemunha disso.",
+ 82,
+ "E aqueles que, depois disto, renegarem, serão depravados.",
+ 83,
+ "Anseiem, acaso, por outra religião, que noa a de Deus? Todas as coisas que há nos céus e na terra, quer queiram, quernão, estão-Lhe submetidas, e a Ele retornarão.",
+ 84,
+ "Dize: Cremos em Deus, no que nos foi revelado, no que foi revelado a Abraão, a Ismael, a Isaac, a Jacó e às tribos, e noque, de seu Senhor, foi concedido a Moisés, a Jesus e aos profetas; não fazemos distinção alguma entre eles, porque somos, para Ele, muçulmanos.",
+ 85,
+ "E quem quer que almeje (impingir) outra religião, que noa seja o Islam, (aquela) jamais será aceita e, no outro mundo, essa pessoa contar-se-á entre os desventurados.",
+ 86,
+ "Como poderá Deus iluminar aqueles que renunciaram à fé, depois de terem acreditado e testemunhado que o Mensageiroé autêntico e terem recebido as evidência? Deus não encaminha os iníquos.",
+ 87,
+ "A retribuição desses será a maldição de Deus, dos anjos e de toda a humanidade.",
+ 88,
+ "A qual (maldição) pesará sobre eles eternamente,; o suplício não lhes será mitigado, nem serão tolerados.",
+ 89,
+ "Salvo aqueles que, depois disso, arrependem-se e se emendarem, pois que Deus é Indulgente, Misericordiosíssimo.",
+ 90,
+ "Quando àqueles que descrerem, após terem acreditado, imbuindo-se de incredulidade, jamais será aceito oarrependimento e serão os desviados.",
+ 91,
+ "Os incrédulos que morrerem na incredulidade jamais serão redimidos, ainda que ofereçam, em resgate, todo o ouro quepossa caber na terra. Estes sofrerão um doloroso castigo e não terão socorredores.",
+ 92,
+ "Jamais alcançareis a virtude, até que façais caridade com aquilo que mais apreciardes. E sabei que, de toda caridadeque fazeis, Deus bem o sabe.",
+ 93,
+ "Aos israelitas, todo o alimento era lícito, salvo aquilo que Israel se havia privado antes de a Tora ter sido revelada. Dize-lhes: Trazei a Tora e lede-a, se estiverdes certos.",
+ 94,
+ "E aqueles que forjarem mentiras acerca de Deus, depois disso, serão iníquos.",
+ 95,
+ "Dize: Deus diz a verdade. Segui, pois, a religião de Abraão, o monoteísta, que jamais se contou entre os idólatras.",
+ 96,
+ "A primeira Casa (Sagrada), erigida para o Genero humano, é a de Bakka, onde reside a bênção servindo de orientaçãoà humanidade.",
+ 97,
+ "Encerra sinais evidentes; lá está a Estância de Abraão, e quem quer que nela se refugie estará em segurança. Aperegrinação à Casa é um dever para com Deus, por parte de todos os seres humanos, que estão em condições deempreendê-la; entretanto, quem se negar a isso saiba que Deus pode prescindir de toda a humanidade.",
+ 98,
+ "Dize: Ó adeptos do Livro, por que negais os versículos de Deus, sabendo que Deus é Testemunha de tudo quanto fazeis?",
+ 99,
+ "Dize (ainda): Ó adeptos do Livro, por que desviais os crentes da senda de Deus, esforçando-vos por fazê-la tortuosa, quando sois testemunhas (do pacto de Deus)? Sabei que Deus não está desatento a tudo quando fazeis.",
+ 100,
+ "Ó fiéis, se escutásseis alguns daqueles que receberam o Livro (o judeus), converter-vos-íeis em incrédulos, depois deterdes acreditado!",
+ 101,
+ "E como podeis descrer, já que vos são recitados os versículos de Deus, e entre vós está o Seu Mensageiro? Quem seapegar a Deus encaminhar-se-á à senda reta.",
+ 102,
+ "Ó fiéis, temei a Deus, tal como deve ser temido, e não morrais, senão como muçulmanos.",
+ 103,
+ "E apegai-vos, todos, ao vínculo com Deus e noa vos dividais; recorda-vos das mercês de Deus para convosco, porquanto éreis adversários mútuos e Ele conciliou os vossos corações e, mercê de Sua graça, vos convertestes emverdadeiros irmãos; e quando estivestes à beira do abismo infernal, (Deus) dele vos salvou. Assim, Deus vos elucida osSeus versículos, para que vos ilumineis.",
+ 104,
+ "E que surja de vós uma nação que recomende o bem, dite a retidão e proíba o ilícito. Esta será (uma nação) bem-aventurada.",
+ 105,
+ "Não sejais como aqueles que se dividiram e discordaram, depois de lhes terem chegado as evidências, porque essessofrerão um severo castigo.",
+ 106,
+ "Chegará o dia em que uns rosto resplandecerão e outros se ensombrecerão. Quanto a estes, ser-lhes-á dito: Então, renegastes depois de terdes acreditado? Sofrei, pois, o castigo da vossa perfídia!",
+ 107,
+ "Quanto àqueles, cujos rostos resplandecerão, terão a misericórdia de Deus, da qual gozarão eternamente.",
+ 108,
+ "Estes são os versículos de Deus, que em verdade te recitamos. Deus jamais deseja a injustiça para a humanidade.",
+ 109,
+ "A Deus pertence tudo quanto há nos céus e na terra, e todos os assuntos retornarão a Deus.",
+ 110,
+ "Sois a melhor nação que surgiu na humanidade, porque recomendais o bem, proibis o ilícito e credes em Deus. Se osadeptos do Livro cressem, melhor seria para eles. Entre eles há fiéis; porém, a sua maioria é depravada.",
+ 111,
+ "Porém, não poderão vos causar nenhum mal; e caso viessem a vos combater, bateriam em retirada e jamais seriamsocorridos.",
+ 112,
+ "Estarão na ignomínia onde se encontrarem, a menos que se apeguem ao vínculo com Deus e ao vínculo com o homem. Eincorreram na abominação de Deus e foram vilipendiados, por terem negado os Seus versículos, morto iniquamente osprofetas, bem como por terem desobedecido e transgredido os limites.",
+ 113,
+ "Os adeptos do Livros não são todos iguais: entre eles há uma comunidade justiceira, cujos membros recitam osversículos de Deus, durante a noite, e se prostram ante o seu Senhor.",
+ 114,
+ "Crêem em Deus e no Dia do Juízo Final, aconselham o bem e proíbem o ilícito, e se emulam nas boas ações. Estescontar-se-ão entre os virtuosos.",
+ 115,
+ "Todo o bem que façam jamais lhes será desmerecido, porque Deus bem conhecem os que o Temem.",
+ 116,
+ "Aos incrédulos de nada valerão a fortuna e os filhos, ante Deus, porque serão condenados ao inferno, ondepermanecerão eternamente.",
+ 117,
+ "O exemplo deles, ao despenderem neste mundo, é como o exemplo de um povo condenado, cujas semeaduras sãoaçoitadas e arrasadas por um vento glacial. Mas não é Deus que os condena, mas sim eles próprios.",
+ 118,
+ "Ó fiéis, não tomeis por confidentes a outros que não sejam vossos, porque eles tratarão de vos arruinar e de voscorromper, posto que só ambicionam a vossa perdição. O ódio já se tem manifestado por suas bocas; porém, o que ocultamem seus corações é ainda pior. Já vos elucidamos os sinais, e sois sensatos.",
+ 119,
+ "E eis que vós os amais; porém, eles não vos amam, apesar de crerdes em todo o Livro; porém, eles, quando vosencontram, dizem: Cremos! Mas quando estão a sós mordem os dedos de raiva. Dize-lhes: Morrei, com a vossa raiva! Sabeique Deus bem conhece o íntimo dos corações.",
+ 120,
+ "Quando sois agraciados com um bem, eles ficam aflitos; porém, se vos açoita uma desgraça, regozijam-se. Mas seperseverardes e temerdes a Deus, em nada vos prejudicarão as suas conspirações. Deus está inteirado de tudo quanto fazem.",
+ 121,
+ "Recordar-te (ó Mensageiro) de quando saíste do teu lar, ao amanhecer, para assinalar aos fiéis a sua posição no campode batalha. Sabe que Deus é Oniouvinte, Sapientíssimo.",
+ 122,
+ "E de quando dois grupos dos teus pensaram em acovardar-se, apesar de ser Deus o seu Protetor. Que a Deus seencomendem os fiéis.",
+ 123,
+ "Sem dúvida que Deus vos socorreu, em Badr, quando estáveis em inferioridade de condições. Temei, pois, a Deus eagradecei-Lhe.",
+ 124,
+ "E de quando disseste aos fiéis: Não vos basta que vosso Senhor vos socorra com o envio celestial de três mil anjos?",
+ 125,
+ "Sim! Se fordes perseverantes, temerdes a Deus, e se vos atacarem imediatamente, vosso Senhor vos socorrerá, comcinco mil anjos bem treinados.",
+ 126,
+ "Deus não o fez como anúncio para vós, a fim de sossegar os vossos corações. Sabei que o socorro só emana de Deus, oPoderoso, o Prudentíssimo.",
+ 127,
+ "Assim o fez para aniquilar um falange de incrédulos e afrontá-los, fazendo com que fugissem frustrados.",
+ 128,
+ "Não é da tua alçada, mas de Deus, absolvê-los ou castigá-los, porque são iníquos.",
+ 129,
+ "A Deus pertence tudo quando há nos céus e na terra. Perdoa a quem Lhe apraz e castiga a quem deseja, porque Deus éIndulgente, Misericordiosíssimo.",
+ 130,
+ "Ó fiéis, não exerçais a usura, multiplicando (o emprestado) e temei a Deus para que prospereis,",
+ 131,
+ "E precavei-vos do fogo infernal, que está preparado para os incrédulos.",
+ 132,
+ "Obedecei a Deus e ao Mensageiro, a fim de que sejais compadecidos.",
+ 133,
+ "Emulai-vos em obter a indulgência do vosso Senhor e um Paraíso, cuja amplitude é igual à dos céus e da terra, preparado para os tementes,",
+ 134,
+ "Que fazem caridade, tanto na prosperidade, como na adversidade; que reprimem a cólera; que indultam o próximo. Sabei que Deus aprecia os benfeitores.",
+ 135,
+ "Que, quando cometem uma obscenidade ou se condenam, mencionam a Deus e imploram o perdão por seus pecados -mas quem, senão Deus perdoa os pecados? - e não reincidem, com conhecimento, no que cometeram.",
+ 136,
+ "Para estes a recompensa será uma indulgência do seu Senhor, terão jardins, abaixo dos quais correm os rios, ondemorarão eternamente. Quão excelente é a recompensa dos diligentes!",
+ 137,
+ "Já houve exemplos, antes de vós; percorrei, pois, a terra e observai qual foi a sorte dos desmentidores.",
+ 138,
+ "Este (Alcorão) é uma declaração aos humanos, orientação e exortação para os tementes.",
+ 139,
+ "Não desanimeis, nem vos aflijais, porque sempre saireis vitoriosos, se fordes fiéis.",
+ 140,
+ "Quando receberdes algum ferimento, sabei que os outros já sofreram ferimento semelhante. E tais dias (de infortúnio) são alternados, entre os humanos, para que Deus Se assegure dos fiéis e escolha, dentre vós, os mártires; sabei que Deus nãoaprecia os iníquos.",
+ 141,
+ "E (assim faz) Deus para purificar os fiéis e aniquilar os incrédulos.",
+ 142,
+ "Pretendeis, acaso, entrar no Paraíso, sem que Deus Se assegure daqueles, dentre vós, que combatem e sãoperseverantes?",
+ 143,
+ "Aneláveis a morte antes de vos terdes deparado com ela. Viste-la, então, como os vossos próprios olhos!",
+ 144,
+ "Mohammad não é senão um Mensageiro, a quem outros mensageiros precederam. Porventura, se morresse ou fossemorto, voltaríeis à incredulidade? Mas quem voltar a ela em nada prejudicará Deus; e Deus recompensará os agradecidos.",
+ 145,
+ "Não é dado a nenhum ser morrer, sem a vontade de Deus; é um destino prefixado. E a quem desejar a recompensaterrena, conceder-lha-emos; e a quem desejar a recompensa da outra vida, conceder-lha-emos, igualmente; tambémrecompensaremos os agradecidos.",
+ 146,
+ "Quantos profetas e, com eles, quantos grupos lutaram pela causa de Deus, sem desanimarem com o que lhes aconteceu; não se acovardaram, nem se renderam! Deus aprecia os perseverantes.",
+ 147,
+ "Eles nada disseram, além de: Ó Senhor nosso, perdoa-nos por nosso pecados e por nossos excessos; firma os nossospassos e concede-nos a vitória sobre os incrédulos!",
+ 148,
+ "Deus lhes concedeu a recompensa terrena e a bem-aventurança na outra vida, porque Deus aprecia os benfeitores.",
+ 149,
+ "Ó fiéis, se obedecerdes aos incrédulos, eles vos farão voltar ao que éreis antes, e sereis desventurados.",
+ 150,
+ "Mas Deus é vosso Protetor, e é o melhor dos socorredores.",
+ 151,
+ "Infundiremos terror nos corações dos incrédulos, por terem atribuído parceiros a Deus, sem que Ele lhes tivesseconferido autoridade alguma para isso. Sua morada será o fogo infernal. Quão funesta é a morada dos iníquos!",
+ 152,
+ "Deus cumpriu a Sua promessa quanto, com a Sua anuência, aniquilastes os incrédulos, até que começastes a vacilar edisputar acerca da ordem e a desobedecestes, apesar de Deus vos Ter mostrado tudo o que aneláveis. Uma parte de vósambicionava a vida terrena, enquanto a outra aspirava à futura. Então, Deus vos desviou dos vossos inimigos, paraprovar-vos; porém, Ele vos indultou, porque é Agraciante para com os fiéis.",
+ 153,
+ "Recordai-vos de quando subistes a colina às cegas, enquanto o Mensageiro ia pela retaguarda, incitando-vos aocombate. Foi então que Deus vos infligiu angústia após angústia, para ensinar-vos a não lamentardes pelo que haveisperdido, nem pelo que vos havia acontecido, porque está bem inteirado de tudo quanto fazeis.",
+ 154,
+ "Logo depois da angústia, infundiu-vos uma calma sonorífera, que envolveu alguns de vós, enquanto outros,, preocupados consigo próprios, puseram-se a conjecturar ignomínias acerca de Deus, como na era da idolatria, dizendo: Tivemos, acaso, alguma escolha? Responde-lhes: A escolha pertence inteiramente a Deus! E eis que eles guardam para si oque noa te manifestam, dizendo (mais): Se houvéssemos tido escolha, não teríamos sido chacinados. Dize-lhes: Sabei que, mesmo que tivésseis permanecido nas vossas casas, certamente, àqueles dentre vós, aos quais estava decretada a morte, estaapareceria, no local de sua morte. Isso, para que Deus comprovasse o que ensejáveis e purificasse o que havia em vossoscorações; sabei que Deus conhece dos peitos as intimidades.",
+ 155,
+ "Aqueles que desertaram, no dia do encontro dos dois grupos, foram seduzidos por Satanás pelo que haviam perpetrado; porém Deus os indultou porque é Tolerante, Indulgentíssimo.",
+ 156,
+ "Ó fiéis, não sejais como os incrédulos, que dizem de seus irmãos, quando estes viajam pela terra ou quando estão emcombate: Se tivessem ficado conosco, não teriam morrido, nem sido assassinados! Com isso, Deus infunde-lhes a angústianos corações, pois Deus concede a vida e a morte, e Deus bem vê tudo quando fazeis.",
+ 157,
+ "Mas, se morrerdes ou fordes assassinados pela causa de Deus, sabei que a Sua indulgência e a Sua clemência sãopreferíveis a tudo quando possam acumular.",
+ 158,
+ "E sabei que, tanto se morrerdes, como ser fordes assassinados, sereis congregados ante Deus.",
+ 159,
+ "Pela misericórdia de Deus, foste gentil para com eles; porém, tivesses tu sido insociável ou de coração insensível, elesse teriam afastado de ti. Portanto, indulta-os implora o perdão para eles e consulta-os nos assuntos (do momento). E quandote decidires, encomenda-te a Deus, porque Deus aprecia aqueles que (a Ele) se encomendam.",
+ 160,
+ "Se Deus vos secundar, ninguém poderá vencer-vos; por outra, se Ele vos esquecer, quem, em vez d'Ele, vos ajudará? Que os fiéis se encomendem a Deus!",
+ 161,
+ "É inadmissível que o profeta fraude; mas, o que assim fizer, comparecerá com o que tiver fraudado, no Dia daRessurreição, quando cada alma será recompensada segundo o que tiver feito, e não será injustiçada.",
+ 162,
+ "Equiparar-se-á quem tiver seguido o que apraz Deus com quem tiver suscitado a Sua indignação, cuja morada será oinferno? Que funesto destino!",
+ 163,
+ "Há distintos graus (de graça e de condenação), aos olhos de Deus, porque Deus, bem vê tudo quanto fazem.",
+ 164,
+ "Deus agraciou os fiéis, ao fazer surgir um Mensageiro da sua estirpe, que lhes ditou os Seus versículos, redimiu-os, elhes ensinou o Livro e a Prudência, embora antes estivessem em evidente erro.",
+ 165,
+ "Qual! Ando sofreis um revés do adversário, embora inflijais outro duas vezes maior, dizeis: Donde nos provém isto? Responde-lhes: De vós mesmos. Sabei que Deus é Onipotente.",
+ 166,
+ "O que vos aconteceu, no dia do encontro das duas hostes, aconteceu com o beneplácito de Deus, para que sedistinguissem os verdadeiros fiéis;",
+ 167,
+ "E também se distinguissem os hipócritas, aos quais foi dito: Vinde lutar pela causa de Deus, ou defender-vos. Disseram: Se soubéssemos combater, seguir-vos-íamos! Naquele dia, estavam mais perto da incredulidade do que da fé, porque diziam, com as suas bocas, o que não sentiam os seus corações. Porém, Deus bem sabe tudo quanto ocultam.",
+ 168,
+ "São os que, ficando para trás, dizem de sues irmãos: Se nos tivessem obedecido, não teriam sido mortos! Dize-lhes: Defendei-vos da morte, se estiverdes certos.",
+ 169,
+ "E não creiais que aqueles que sucumbiram pela causa de Deus estejam mortos; ao contrário, vivem, agraciados, ao ladodo seu Senhor.",
+ 170,
+ "Estão jubilosos por tudo quanto Deus lhes concedeu da Sua graça, e se regozijam por aqueles que ainda nãosucumbiram, porque estes não serão presas do temor, nem se atribularão.",
+ 171,
+ "Regozijam-se com a mercê e com a graça de Deus, e Deus jamais frustra a recompensa dos fiéis,",
+ 172,
+ "Que, mesmo feridos, atendem a Deus e ao Mensageiro. Para os benfeitores e tementes, dentre eles, haverá umamagnífica recompensa.",
+ 173,
+ "São aqueles aos quais foi dito: Os inimigos concentraram-se contra vós; temei-os! Isso aumentou-lhes a fé e disseram: Deus nos é suficiente. Que excelente Guardião!",
+ 174,
+ "Pela mercê e pela graça de Deus, retornaram ilesos. Seguiram o que apraz a Deus; sabei que Deus é Agraciante porexcelência.",
+ 175,
+ "Eis que Satanás induz os seus sequazes. Não os temais; temei a Mim, se sois fiéis.",
+ 176,
+ "Que não te atribulem aqueles que se precipitam na incredulidade, porquanto em nada prejudicam Deus. Deus não osfará compartilhar da bem-aventurança da vida futura, e assim, sofrerão um severo castigo.",
+ 177,
+ "Aqueles que trocam a fé pela incredulidade, em nada prejudicam a Deus, e sofrerão um doloroso castigo.",
+ 178,
+ "Que os incrédulos não pensem que os toleramos, para o seu bem; ao contrário, toleramo-los para que suas faltas sejamaumentadas. Eles terão um castigo afrontoso.",
+ 179,
+ "Não é do propósito de Deus abandonar os fiéis no estado em que vos encontrais, até que Ele separe o corrupto dobenigno, nem tampouco de seu propósito é inteirar-vos do incognoscível; Deus escolhe, para isso, dentre os Seusmensageiros, quem Lhe apraz. Crede em Deus e em Seus mensageiros; se crerdes em temerdes, obtereis magníficarecompensa.",
+ 180,
+ "Que os avarentos, que negam fazer caridade daquilo que com que Deus os agraciou, não pensem que isso é um bempara eles; ao contrário, é prejudicial, porque no Dia da Ressurreição, irão, acorrentados, com aquilo com quemesquinharam. A Deus pertence a herança dos céus e da terra, porque Deus está bem inteirado de tudo quanto fazeis.",
+ 181,
+ "Deus, sem dúvida, ouviu as palavras daqueles que disseram: Deus é pobre e nós somos ricos. Registramos o quedisseram, assim como a iníquo matança dos profetas, e lhes diremos: Sofrei o tormento da fogueira.",
+ 182,
+ "Isso vos ocorrerá, por obra das vossas próprias mãos. Deus não é injusto para com Seus servos.",
+ 183,
+ "São aqueles que disseram: Deus nos comprometeu a não crermos em nenhum mensageiro, até este nos apresente umaoferenda, que o fogo celestial consumirá. Dize-lhes: Antes de mim, os mensageiros vos apresentaram as evidências etambém o que descreveis. Por que os matastes, então? Respondei, se estiverdes certos.",
+ 184,
+ "E se te desmentem, recorda-te de que também foram desmentidos os mensageiros que, antes de ti, apresentaram asevidências, os Salmos e o Livro Luminoso.",
+ 185,
+ "Toda a alma provará o sabor da morte e, no Dia da Ressurreição, sereis recompensado integralmente pelos vossosatos; quem for afastado do fogo infernal e introduzido no Paraíso, triunfará. Que é a vida terrena, senão um prazer ilusório?",
+ 186,
+ "Sem dúvida que sereis testados quanto aos vossos bens e pessoas, e também ouvireis muitas blasfêmias daqueles querecebem o Livro antes de vós, e dos idólatras; porém, se perseverardes pacientemente e temerdes a Deus, sabei que isso éum fator determinante, em todos os assuntos.",
+ 187,
+ "Recorda-te de quando Deus obteve a promessa dos adeptos do Livro, (comprometendo-se a) evidenciá-lo (o Livro) aoshomens, e a não ocultá-lo. Mas eles jogaram às costas, negociando-o a vil preço. Que detestável transação a deles!",
+ 188,
+ "Não creias que aqueles que se regozijam pelo que causaram, e aspiram ser louvados pelo que não fizeram, não oscreias a salvo do castigo, pois sofrerão doloroso castigo.",
+ 189,
+ "A Deus pertence o reino dos céus e da terra, e Deus é Onipotente.",
+ 190,
+ "Na criação dos céus e da terra e na alternância do dia e da noite há sinais para os sensatos,",
+ 191,
+ "Que mencionam Deus, estando em pé, sentados ou deitados, e meditam na criação dos céus e da terra, dizendo: ÓSenhor nosso, não criaste isto em vão. Glorificado sejas! Preserva-nos do tormento infernal!",
+ 192,
+ "Ó Senhor nosso, quanto àqueles a quem introduzirás no fogo, Tu o aviltarás! Os iníquos não terão socorredores!",
+ 193,
+ "Ó Senhor nosso, ouvimos um pregoeiro que nos convoca à fé dizendo: Crede em vosso Senhor! E cremos. Ó Senhornosso, perdoa as nossas faltas, redime-nos das nossas más ações e acolhe-nos entre os virtuosos.",
+ 194,
+ "Ó Senhor nosso, concede-nos o que prometeste, por intermédio dos Teus mensageiros, e não aviltes no Dia daRessurreição. Tu jamais quebras a promessa.",
+ 195,
+ "Seu Senhor nos atendeu, dizendo: Jamais desmerecerei a obra de qualquer um de vós, seja homem ou mulher, porqueprocedeis uns dos outros. Quanto àqueles que foram expulsos dos seus lares e migraram, e sofreram pela Minha causa, combateram e foram mortos, absorvê-los-ei dos seus pecados e os introduzirei em jardins, abaixo dos quais corres os rios, como recompensa de Deus. Sabei que Deus possui a melhor das recompensas.",
+ 196,
+ "Que não te enganem, pois (ó Mohammad), as andanças (mercantilistas) dos incrédulos, na terra.",
+ 197,
+ "Porque é um gozo transitório e sua morada será o inferno. Que funesta morada!",
+ 198,
+ "Entretanto, aqueles que temem a seu Senhor terão jardins, abaixo dos quais correr os rios, onde morarão eternamente, como dádiva de Deus. Sabei que o que está ao lado de Deus é o melhor para os virtuosos.",
+ 199,
+ "Entre os adeptos do Livro há aqueles que crêem em Deus, no que vos foi revelado, assim como no que lhes foirevelado, humilhando-se perante Deus; não negociam os versículos de Deus a vil preço. Terão sua recompensa ante o seuSenhor, porque Deus é Destro em ajustar contas.",
+ 200,
+ "Ó fiéis, perseverai, sede pacientes, estai sempre vigilantes e temei a Deus, para que prospereis."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/30.json b/share/quran-json/TheQuran/pt/30.json
new file mode 100644
index 0000000..3751692
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/30.json
@@ -0,0 +1,137 @@
+[
+ {
+ "id": "30",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ar-Rum",
+ "translated_name": "The Romans",
+ "verse_count": 60,
+ "slug": "ar-rum",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1585,
+ 1608,
+ 1605
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim.",
+ 2,
+ "Os bizantinos foram derrotados.",
+ 3,
+ "Em terra muito próxima; porém, depois de sua derrota, vencerão,",
+ 4,
+ "Dentro de alguns anos; porque é de Deus a decisão do passado e do futuro. E, nesse dia, os fiéis se regozijarão,",
+ 5,
+ "Com o socorro de Deus. Ele socorre quem Lhe apraz e Ele é o Poderoso, o Misericordiosíssimo.",
+ 6,
+ "É a promessa de Deus, e Deus jamais quebra a Sua promessa; porém, a maioria dos humanos o ignora.",
+ 7,
+ "Distinguem tão-somente o aparente da vida terrena; porém, estão alheios quanto à outra vida.",
+ 8,
+ "Porventura não refletem em si mesmos? Deus não criou os céus, a terra e o que existe entre ambos, senão com prudência epor um término prefixado. Porém, certamente muitos dos humanos negam o comparecimento ante o seu Senhor (quando daRessurreição).",
+ 9,
+ "Porventura não percorrem a terra, para observarem qual foi o destino dos seus antecessores? Foram mais vigorosos doque eles, cultivaram a terra e a povoaram melhor do que eles, cultivaram a terra e a povoaram melhor do que eles. Seusmensageiros lhes apresentaram as evidências. Não foi Deus Que os prejudicou, mas foram eles mesmos que se condenaram.",
+ 10,
+ "E o destino daqueles que cometeram o mal será pior, pois desmentiram os versículos de Deus e deles escarneceram!",
+ 11,
+ "Deus origina a criação, logo a reproduz, depois a ele retornareis.",
+ 12,
+ "E no dia em que chegar a Hora do Juízo, os pecadores se desesperarão.",
+ 13,
+ "E não acharão intercessores, entre os seus parceiros, e eles (próprios) renegarão seus parceiros.",
+ 14,
+ "No dia em que chegar a Hora, nesse dia se separarão.",
+ 15,
+ "Enquanto os fiéis, que tiverem praticado o bem, descansarão em um vergel.",
+ 16,
+ "Os incrédulos, que tiverem desmentido os Nossos versículos e o comparecimento da outra vida, serão entregues aocastigo.",
+ 17,
+ "Glorificai, pois, Deus, quando anoitece e quando amanhece!",
+ 18,
+ "Seus são os louvores, nos céus e na terra, tanto na hora do poente como só meio-dia.",
+ 19,
+ "Ele extrai o vivo do morto, e o morto do vivo; e vivifica a terra, depois de haver sido árida. E assim sereisressuscitados!",
+ 20,
+ "Entre os Seus sinais está o de haver-vos criado do pó; logo, sois, seres que se espalham (pelo globo).",
+ 21,
+ "Entre os Seus sinais está o de haver-vos criado companheiras da vossa mesma espécie, para que com elas convivais; ecolocou amor e piedade entre vós. Por certo que nisto há sinais para os sensatos.",
+ 22,
+ "E entre os Seus sinais está a criação dos céus e da terra, as variedades dos vossos idiomas e das vossas cores. Emverdade, nisto há sinais para os que discernem.",
+ 23,
+ "E entre os Seus sinais está o do vosso dormir durante a noite e, durante o dia, e de procurardes a Sua graça. Certamente, nisto há sinais para os que escutam.",
+ 24,
+ "E entre os Seus sinais está o de mostrar-vos o relâmpago, provocando temos e esperança, e o de fazer descer a água doscéus, com a qual vivifica a terra depois de haver sido árida. Sabei que nisto há sinais para os sensatos.",
+ 25,
+ "E entre os Seus sinais está o fato de os céus e a terra se manterem sob o Seu Comando, e, quando vos chamar, uma sóvez, eis que sareis da terra.",
+ 26,
+ "E Seus são todos aqueles que estão nos céus e na terra; tudo Lhe obedece.",
+ 27,
+ "Ele é Quem origina a criação, logo a reproduz, porque isso Lhe é fácil. Sua é a mais elevada similitude, nos céus e naterra, e Ele é o Poderoso, o Prudentíssimo.",
+ 28,
+ "Apresenta-vos, ainda, um exemplo tomado doe vós mesmos. Porventura, compartilharíeis faríeis daqueles que as vossasmãos direitas possuem parceiros naquilo de que vos temos agraciado e lhe concederíeis partes iguais ás vossas? Temei-osacaso, do mesmo modo que temeis uns aos outros? Assim elucidamos os Nossos versículos aos sensatos.",
+ 29,
+ "Porém, os iníquos se entregam nesciamente ás suas luxúrias; mas quem poderá encaminhar aqueles que Deus tem deixadoque se desviem? Esses jamais terão socorredores!",
+ 30,
+ "Volta o teu rosto para a religião monoteísta. É a obra de Deus, sob cuja qualidade inata Deus criou a humanidade. Acriação feita por Deus é imutável. Esta é a verdadeira religião; porém, a maioria dos humanos o ignora.",
+ 31,
+ "Voltai-vos contritos a Ele, temei-O, observai a oração e não vos conteis entre os que (Lhe) atribuem parceiros.",
+ 32,
+ "Que dividiram a sua religião e formaram seitas, em que cada partido exulta no dogma que lhe é intrínseco.",
+ 33,
+ "Quando a adversidade açoita os humanos, suplicam contritos ao seu Senhor; mas, quando os agracia com a Suamisericórdia, eis que alguns deles atribuem parceiros ao seu Senhor,",
+ 34,
+ "Para desagradecerem o que lhes concedemos. Deleitai-vos (enquanto puderdes), pois logo o sabereis!",
+ 35,
+ "Porventura, enviamos-lhes alguma autoridade, que justifique a sua idolatria?",
+ 36,
+ "Mas quando agraciamos os humanos com a misericórdia, regozijam-se dele; por outra, se os açoita a adversidade, peloque as suas mãos cometeram, ei-los desesperados!",
+ 37,
+ "Porventura, não reparam em que Deus prodigaliza e restringe a Sua graça a quem Lhe apraz? Por certo que nisto hásinais para os crentes.",
+ 38,
+ "Concede, pois, aos parentes os seus direitos, assim como ao necessitado e ao viajante. Isso é preferível, para aquelesque anelam contemplar o Rosto de Deus; e estes serão os bem-aventurados.",
+ 39,
+ "Quando emprestardes algo com usura, para que vos aumente (em bens), às expensas dos bens alheios, não aumentarãoperante Deus; contudo, o que derdes em zakat, anelando contemplar o Rosto de Deus (ser-vos-á aumentado). A estes, ser-lhes-á duplicada a recompensa.",
+ 40,
+ "Deus é Quem vos cria, e depois vos agracia, então vos fará morrer, logo vos ressuscitará. Haverá alguém, dentre osvossos parceiros, que possa fazer algo similar a isso? Qual! Glorificado e exaltado seja Ele de tudo quanto Lhe associam!",
+ 41,
+ "A corrupção surgiu na terra e no mar por causa do que as mãos dos humanos lucraram. E (Deus) os fará provar algo deque cometeram. Quiçá assim se abstenham disso.",
+ 42,
+ "Dize-lhes: Percorrei a terra e observai qual foi a sorte daqueles que vos precederam; sua maioria era idólatra.",
+ 43,
+ "Fixa, pois, o teu rosto na verdadeira religião, antes que chegue o dia inevitável de Deus; nesse dia (os humanos) sedividirão (em duas partes).",
+ 44,
+ "O incrédulo sofrerá o peso da sua incredulidade; ao contrário, aqueles que tiverem praticado o bem, estenderão leitos (para repouso) para si próprios (no Céu),",
+ 45,
+ "A fim de que ele recompense, com a Sua graça os fiéis, que praticam o bem; sabei que Ele não aprecia os incrédulos.",
+ 46,
+ "E entre os Seus sinais está o de enviar ventos alvissareiros (prenunciativos de chuva), para agraciar-vos com a Suamisericórdia, para que os navios singrem os mares com o Seu beneplácito, e para procurardes algo de Sua graça; quiçá Lheagradeçais.",
+ 47,
+ "Antes de ti, enviamos mensageiros aos seus povos, que lhes apresentaram as evidências. Vingamo-Nos dos pecadores, eera Nosso dever socorrer os fiéis.",
+ 48,
+ "Deus é Quem envia os ventos que agitam as nuvens, e as espalha no céu como Lhe apraz; logo as fragmenta, e observas achuva a manar delas, e quando a envia sobre quem Lhe apraz, dentre os Seus servos, eis que se regozijam.",
+ 49,
+ "A despeito de estarem desesperados antes de recebê-la (a chuva).",
+ 50,
+ "Contempla, pois, (ó humano), os traços da misericórdia de Deus! Como vivifica a terra, depois de esta haver sido árida! Em verdade, Este é o (Mesmo) Ressuscitador dos mortos, porque Ele é Onipotente.",
+ 51,
+ "Mas, se lhes houvéssemos enviado ventos glaciais e as vissem (as suas semeaduras) crestadas, tonar-se-iam, depoisdisso, ingratos.",
+ 52,
+ "Certamente não poderias fazer ouvir os mortos, nem os surdos, quando voltam as costas em fuga.",
+ 53,
+ "Nem és guia dos cegos, em seu erro, Só podes fazer-te escutar por aqueles que crêem nos Nossos versículos e sãomuçulmanos.",
+ 54,
+ "Deus é Quem vos criou da debilidade; depois da debilidade vos vigorou, depois do vigor vos reduziu (novamente) àdebilidade, e à velhice. Ele cria tudo quanto Lhe apraz, e é o Poderoso, o Sapientíssimo.",
+ 55,
+ "E no dia em que chegar a Hora, os pecadores jurarão que não permaneceram nos sepulcros mais do que uma hora. Comose equivocarão!",
+ 56,
+ "Porém, os sábios e fiéis dir-lhes-ão: Permanecestes no decreto de Deus até ao Dia da Ressurreição. E este é o dia daRessurreição; porém, vós ignoráveis.",
+ 57,
+ "Neste dia, a escusa dos iníquos de nada lhes valerá, nem serão resgatados.",
+ 58,
+ "Neste Alcorão, temos proposto aos humanos toda a espécie de exemplos: E quando lhes apresentas um sinal, osincrédulos dizem: Não fazeis mais do que proferir vaidades.",
+ 59,
+ "Assim Deus sigila os corações dos insipientes.",
+ 60,
+ "Sê perseverante, porque a promessa de Deus é inexorável. Que não te abatem aqueles que não crêem (na tua firmeza)."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/31.json b/share/quran-json/TheQuran/pt/31.json
new file mode 100644
index 0000000..9763f70
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/31.json
@@ -0,0 +1,85 @@
+[
+ {
+ "id": "31",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Luqman",
+ "translated_name": "Luqman",
+ "verse_count": 34,
+ "slug": "luqman",
+ "codepoints": [
+ 1604,
+ 1602,
+ 1605,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim.",
+ 2,
+ "Estes são os versículos do Livro da Sabedoria.",
+ 3,
+ "Orientação e misericórdia para os benfeitores.",
+ 4,
+ "Que observam a oração, pagam o zakat e estão persuadidos da outra vida.",
+ 5,
+ "Estes são orientados por seu Senhor, e serão os bem-aventurados.",
+ 6,
+ "Entre os humanos, há aqueles que entabula vãs conversas, para com isso desviar nesciamente (os seus semelhantes) dasenda de Deus, escarnecendo-a. Este sofrerá um castigo ignominioso!",
+ 7,
+ "E quando lhe são recitados os Nossos versículos, volta-se, ensoberbecido, como se não os tivesse ouvido, como sesofresse de surdez; anuncia-lhe, pois, um doloroso castigo.",
+ 8,
+ "Em verdade, os fiéis, que praticam o bem, abrigar-se-ão nos jardins do prazer.",
+ 9,
+ "Onde morarão eternamente. A promessa de Deus é inexorável, e Ele é o Poderoso, o Prudentíssimo.",
+ 10,
+ "Criou os céus, sem colunas aparentes; fixou na terra firmes montanhas, para que não oscile convosco, e disseminou nelaanimais de toda a espécie. E enviamos a água do céu, com que fazemos brotar toda a nobre espécie de casais.",
+ 11,
+ "Aí está a criação de Deus! Mostra-me, então, o que criaram outros, em lugar d'Ele. Porém, os iníquos estão em evidenteerro.",
+ 12,
+ "Agraciamos Lucman com a sabedoria, (dizendo-lhe): Agradece a Deus, porque quem agradece, o faz em benefíciopróprio; por outro lado, quem desagradece, (saiba) que certamente Deus é, por Si, Opulento, Laudabilíssimo.",
+ 13,
+ "Recorda-te de quando Lucman disse ao seu filho, exortando-o: Ó filho meu, não atribuas parceiros a Deus, porque aidolatria é grave iniqüidade.",
+ 14,
+ "E recomendamos ao homem benevolência para com os seus pais. Sua mãe o suporta, entre dores e dores, e sua desmamaé aos dois anos. (E lhe dizemos): Agradece a Mim e aos teus pais, porque retorno será a Mim.",
+ 15,
+ "Porém, se te constrangerem a associar-Me o que tu ignoras, não lhes obedeças; comporta-te com eles com benevolêncianeste mundo, e segue a senda de quem se voltou contrito a Mim. Logo o retorno de todos vós será a Mim, e entãointeirar-vos-ei de tudo quanto tiverdes feito.",
+ 16,
+ "Ó filho meu (disse) Lucman, em verdade, ainda que algo como o peso de um grão de mostarda estivesse (oculto) em umarocha, fosse nos céus, fosse na terra, Deus o descobriria, porque é Onisciente, Sutilíssimo.",
+ 17,
+ "Ó filho meu, observa a oração, recomenda o bem, proíbe o ilícito e sofre pacientemente tudo quanto te suceda, porqueisto é firmeza (de proprósito na condução) dos assuntos.",
+ 18,
+ "E não vires o rosto às gentes, nem andes insolentemente pala terra, porque Deus não estima arrogante e jactanciosoalgum.",
+ 19,
+ "E modera o teu andar e baixa a tua voz, porque o mais desagradável dos sons é o zurro dos asnos.",
+ 20,
+ "Porventura, não reparais em que Deus vos submeteu tudo quanto há nos céus e na terra, e vos cumulou com as Suasmercês, cognoscíveis e incognoscíveis? Sem dúvida, entre os humanos, há os que disputam nesciamente acerca de Deus, semorientação ou Livro lúcido algum.",
+ 21,
+ "E quanto lhes é dito: Segui o que Deus tem revelado, retrucam: Seguiremos o que vimos praticar os nossos pais! Seguí-los-iam eles, mesmo que (com isso) Satanás os convidasse ao castigo do tártaro?",
+ 22,
+ "Mas quem se submeter a Deus e for caritativo ver-se-á apegado à verdade inquebrantável. E em Deus e for caritativover-se-á apegado à verdade inquebrantável. E em Deus reside o destino de todos os assuntos.",
+ 23,
+ "Quando ao incrédulo, que a sua incredulidade não te atribule, porque o seu retorno será a Nós, e então o inteiraremos detudo quanto tiver feito; Deus é Conhecedor das intimidades dos corações.",
+ 24,
+ "Agraciá-los-emos um pouco; então, lhes infligiremos um severo castigo.",
+ 25,
+ "E se lhes perguntares quem criou os céus e a terra, dirão: Deus! Dize: Louvado seja Deus! Porém, a maioria dos homenso ignora.",
+ 26,
+ "A Deus pertence tudo quanto há nos céus e na terra, porque Deus é o Opulento, o Laudabilíssimo.",
+ 27,
+ "Ainda que todas as árvores da terra se convertessem em cálamos e o oceano (em tinta), e lhes fossem somados mais seteoceanos, isso não exauriria as palavras de Deus, porque Deus é Poderoso, Prudentíssimo.",
+ 28,
+ "Vossa criação e ressurreição não são mais do que (o são) a de um só ser; sabei que Deus é Oniouvinte, Onividente.",
+ 29,
+ "Não tens reparado, acaso, em que Deus insere a noite no dia e o dia na noite, e que submeteu o sol e a lua, e que cada um (destes) gira em sua órbita até um término prefixado, e que Deus está inteirado de tudo quanto fazeis?",
+ 30,
+ "Isso ocorre porque Deus é a Verdade, e porque tudo quanto invocam, em lugar d'Ele, é a falsidade, e porque Deus é oGrandioso, o Altíssimo.",
+ 31,
+ "Não reparas, acaso, nos navios, que singram os mares pela graça de Deus, para mostrar-vos algo dos Seus sinais? Sabeique nisto há sinais para o perseverante, agradecido.",
+ 32,
+ "E quando as ondas montanhas tenebrosas, os envolvem, invocam sinceramente Deus e, tão logo Ele os põe a salvo, emterra, eis que alguns deles vacilam; entretanto, ninguém nega os Nossos versículos, além do pérfido, ingrato.",
+ 33,
+ "Ó humanos, temei vosso Senhor e temei o dia em que um pai em nada poderá redimir o filho, nem o filho ao pai. Certamente, a promessa de Deus é verdadeira! Que não vos iluda a vida terrena, nem vos iluda a sedutor, com respeito aDeus!",
+ 34,
+ "Em verdade, Deus possui o conhecimento da Hora, faz descer a chuva e conhece o que encerram os ventres maternos. Nenhum ser saber o que ganhará amanhã, tampouco nenhum ser saberá em que terra morrerá, porque (só) Deus é Sapiente, Inteiradíssimo!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/32.json b/share/quran-json/TheQuran/pt/32.json
new file mode 100644
index 0000000..1160a22
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/32.json
@@ -0,0 +1,78 @@
+[
+ {
+ "id": "32",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "As-Sajdah",
+ "translated_name": "The Prostration",
+ "verse_count": 30,
+ "slug": "as-sajdah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1587,
+ 1580,
+ 1583,
+ 1577
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim.",
+ 2,
+ "Esta é a revelação do Livro indubitável, que emana do Senhor do Universo.",
+ 3,
+ "Ou dizem: ele o (Alcorão) tem forjado! Qual! É a verdade do teu Senhor, para que admoestes (com ele) um povo, ao qualantes de ti não chegou admoestador algum, para que se encaminhe.",
+ 4,
+ "Foi Deus Quem criou, em seis dias, os céus e a terra, e tudo quanto há entre ambos; logo assumiu o Trono. Não tendes, além d'Ele, protetor, nem intercessor algum. Não meditais?",
+ 5,
+ "Ele rege todos os assuntos, desde o céu até à terra; logo (tudo) ascenderá a Ele, em um dia cuja duração será de mil anos, de vosso cômputo.",
+ 6,
+ "Tal é (Deus), Conhecer do cognoscível e do incognoscível, o Poderoso, o Misericordiosíssimo,",
+ 7,
+ "Que aperfeiçoou tudo o que criou e iniciou a criação do primeiro homem, de barro.",
+ 8,
+ "Então, formou-lhe uma prole da essência de sêmen sutil.",
+ 9,
+ "Depois o modelou; então, alentou-o com Seu Espírito. Dotou a todos vós da audição, da visão e das vísceras. Quão poucoLhe agradeceis!",
+ 10,
+ "Dizem (os incrédulos): Quando formos consumidos pela terra, seremos, acaso, renovados em uma nova criatura? Qual? Eles negam o comparecimento ante o seu Senhor!",
+ 11,
+ "Dize-lhes: O anjo da morte, que foi designado para vos guardar, recolher-vos-á, e logo retornareis ao vosso Senhor.",
+ 12,
+ "Ah, se pudesses ver os pecadores, cabisbaixos, ante o seu Senhor! (Exclamarão): Ó Senhor nosso, agora temos olhospara ver e ouvidos para ouvir! Faze-nos retornar ao mundo, que praticaremos o bem, porque agora estamos persuadidos!",
+ 13,
+ "E se quiséssemos, teríamos iluminado todo o ser, porém, a Minha sentença foi pronunciada; sabei que encherei o infernocom gênios e humanos, todos juntos.",
+ 14,
+ "(Ser-lhes-á dito): Sofrei, pois, por terdes esquecido o comparecimento neste vosso dia! Em verdade, vos esqueceremos. E sofrei o castigo, por toda a eternidade, pelo que cometestes!",
+ 15,
+ "Somente crêem nos Nossos versículos aqueles que, quando eles lhos são recitados, se prostram em adoração e celebramos louvores de seu Senhor, sem, contudo, se ensoberbecerem.",
+ 16,
+ "São aqueles, cujo corpos não relutam em se afastar dos leitos para invocarem seu Senhor com temor e esperança, e quefazem caridade daquilo com que os agraciamos.",
+ 17,
+ "Nenhuma alma caridosa sabe que deleite para os olhos lhe está reservado, em recompensa pelo que fez.",
+ 18,
+ "Poderá, acaso, aquiparar-se ao fiel o ímpio? Jamais se equipararão!",
+ 19,
+ "Quanto aos fiéis, que tiverem praticado o bem, terão por abrigo jardins de aconchego, por tudo quanto fizeram.",
+ 20,
+ "Por outra, os depravados terão por morada o fogo infernal. Cada vez que desejarem sair dali, serão ainda maisarraigados nele, e lhes será dito: Provai o tormento do fogo que desmentistes!",
+ 21,
+ "Em verdade, infligir-lhes-emos o castigo terreno, antes do castigo supremo, para que se arrependam.",
+ 22,
+ "E haverá alguém mais iníquo do que quem, ao ser exortado com os versículos do seu Senhor, logo os desdenha? Sabeique Nós puniremos os pecadores.",
+ 23,
+ "Já havíamos concedido o Livro a Moisés. Não vaciles, pois, quando ele chegar a ti. E destinamo-lo como orientaçãopara os israelitas.",
+ 24,
+ "E designamos líderes dentre eles, os quais encaminham os demais segundo a Nossa ordem, porque perseveraram e sepersuadiram dos Nossos versículos.",
+ 25,
+ "Certamente teu Senhor julgará entre eles, no Dia da Ressurreição, quanto àquilo a respeito do quê divergiam",
+ 26,
+ "Acaso, Ele não lhes evidenciou quantas gerações anteriores à deles temos exterminado, apesar de caminharem sobre assuas (antigas) moradas? Certamente, nisto há sinais. Não ouvem, então?",
+ 27,
+ "Não reparam em que conduzimos a água à terra erma, fazendo com isso, brotar as semeaduras de que se nutrem eles e oseu gado? Não vêem, acaso?",
+ 28,
+ "E perguntam: Quando chegará essa vitória, se estiverdes certos?",
+ 29,
+ "Responde-lhes: No dia da vitória de nada valerá a fé tardia dos incrédulos, nem serão tolerados.",
+ 30,
+ "Afasta-te, pois deles, e espera, porque eles também não perdem por esperar."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/33.json b/share/quran-json/TheQuran/pt/33.json
new file mode 100644
index 0000000..4fcaebe
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/33.json
@@ -0,0 +1,165 @@
+[
+ {
+ "id": "33",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Ahzab",
+ "translated_name": "The Combined Forces",
+ "verse_count": 73,
+ "slug": "al-ahzab",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1581,
+ 1586,
+ 1575,
+ 1576
+ ]
+ },
+ 1,
+ "Ó Profeta, teme a Deus e não obedeças aos incrédulos, nem aos hipócritas. Fica sabendo que Deus é Sapiente, Prudentíssimo.",
+ 2,
+ "E observa o que te foi inspirado por teu senhor, porque Deus está inteirado de tudo quanto todos vós fazeis.",
+ 3,
+ "Encomenda-te a Deus, porque basta Ele por Guardião.",
+ 4,
+ "Deus não pôs no peito do homem dois corações; tampouco fez com que vossas esposas, as quais repudiais através dozihar, fossem para vós como vossas mães, nem tampouco que vossos filhos adotivos fossem como vossos próprios filhos. Estas são vãs palavras das vossas bocas. E Deus disse a verdade, e Ele mostra a (verdadeira) senda.",
+ 5,
+ "Dai-lhes os sobrenomes dos seus verdadeiros pais; isto é mais eqüitativo ante Deus. Contudo, se não lhes conheceis ospais, sabei que eles são vossos irmãos, na religião, e vossos tutelados. Porém, se vos equivocardes, não sereisrecriminados; (o que conta) são as intenções de vossos corações; sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 6,
+ "Um Profeta tem mais domínio sobre os fiéis do que eles mesmos (sobre si), e as esposas dele devem ser (para eles) comosuas mães. E, segundo o que foi estipulado no livro de Deus, os consangüíneos têm mais direito entre si do que os fiéis e os migrantes. Contudo, fazei o que é justo aos vossos amigos; isso está escrito no Livro.",
+ 7,
+ "Recorda-te de quando instituímos o pacto com os profetas: contigo, com Noé, com Abraão, com Moisés, com Jesus, filhode Maria, e obtivemos deles um solene compromisso.",
+ 8,
+ "Para que (Deus) pudesse interrogar (por vosso intermédio) os verazes, acerca de sua veracidade, e destinar um dolorosocastigo aos incrédulos.",
+ 9,
+ "Ó fiéis, recordai-vos da graça de Deus para convosco! Quando um exército se abateu sobre vós, desencadeamos sobre eleum furacão e um exército invisível (de anjos), pois Deus bem via tudo quanto fazíeis.",
+ 10,
+ "(Foi) quando os inimigos vos atacaram de cima e de baixo, e os (vossos) olhos se assombraram, e os (vossos) coraçõescomo que (vos) subiam à garganta; nessa altura ainda estáveis a desconfiar de Deus, sob vários aspectos.",
+ 11,
+ "Então os fiéis foram testados e sacudidos violentamente.",
+ 12,
+ "(Foi também) quando os hipócritas e os que abrigavam a morbidez em seus corações disseram: Deus e Seu Mensageironão nos prometeram senão ilusões.",
+ 13,
+ "(Foi ainda) quando um grupo deles (dos fiéis) disse: Ó povo de Yátrib, retornai à vossa cidade, porque aqui não há lugarpara vós! E um grupo deles pediu licença (ao profeta) para retirar-se, dizendo: certamente nossas casas estão indefesas - quandorealmente não estavam indefesas, mas eles pretendiam fugir.",
+ 14,
+ "Porém se (Madina) houvesse sido invadida pelos seus flancos, e se eles houvessem sido incitados à intriga, tê-la iamaceito, mesmo que não se houvessem deleitado com ela senão temporariamente.",
+ 15,
+ "Tinham prometido a Deus que não fugiriam (do inimigo). Terão que responder pela promessa feita a Deus.",
+ 16,
+ "Dize-lhes: A fuga de nada vos servirá, porque, se escapardes à morte ou a matança, não desfrutareis da vida, senãotransitoriamente.",
+ 17,
+ "Dize-lhes (mais): Quem poderia preservar-vos de Deus, se Ele quisesse infligir-vos um mal? Ou se quisessecompadecer-Se de vós? Porém, não encontrarão, para si, além de Deus, protetor, nem socorredor algum.",
+ 18,
+ "Deus conhece aqueles, dentre vós, que impedem os demais de seguirem o profeta, e dizem a seus irmãos: Ficai conosco!, e não vão à luta, a não ser para permanecerem por pouco tempo.",
+ 19,
+ "São avarentos para convosco. Quando o medo se apodera deles, observa (Ó Mohammad), que te olham com os olhosinjetados, como quem se encontra num transe de morte; porém, quando se lhes desvanece o temor, zurzem-te com suaslínguas ferinas, avarentos quanto ao feitio do bem. Estes não crêem; assim, pois, Deus tornará suas obras sem efeito, porqueisso é fácil a Deus.",
+ 20,
+ "Imaginavam que os partidos não haviam sido derrotados; porém, se os partidos tivessem voltado (a atacar), teriamanelado viver com os beduínos, para se informarem das vossas ações; e se tivessem estado convosco, não teriam combatido, senão aparentemente.",
+ 21,
+ "Realmente, tendes no Mensageiro de Deus um excelente exemplo para aqueles que esperam contemplar Deus, deparar-secom o Dia do Juízo Final, e invocam Deus freqüentemente.",
+ 22,
+ "E quando os fiéis avistaram as facções, disseram: Eis o que nos haviam prometido Deus e o Seu Mensageiro; e tantoDeus como o Seu Mensageiro disseram a verdade! E isso não fez mais do que lhes aumentar a fé e resignação.",
+ 23,
+ "Entre os fiéis, há homens que cumpriram o que haviam prometido, quando da sua comunhão com Deus; há-os que oconsumaram (ao extremo), e outros que esperam, ainda, sem violarem a sua comunhão, no mínimo que seja.",
+ 24,
+ "Deus recompensa os verazes, por sua veracidade, e castiga os hipócritas como Lhe apraz; ou então os absolve, porqueDeus é Indulgente, Misericordiosíssimo.",
+ 25,
+ "Deus rechaçou os incrédulos que, apesar da sua fúria, não tiraram vantagem alguma; basta Deus aos fiéis, no combate, porque Deus é potente, poderosíssimo!",
+ 26,
+ "E (Deus) desalojou de suas fortalezas os adeptos do Livro, que o (inimigo) apoiaram, e infundiu o terror em seuscorações. Matastes uma parte e capturastes outra.",
+ 27,
+ "E (depois disso) vos fez herdeiros de sua cidade, de suas casas, seus bens e das terras que nunca havíeis pisado (antes); sabei que Deus é Onipotente.",
+ 28,
+ "Ó Profeta, dize a tuas esposas: Se ambicionardes a vida terrena e as suas ostentações, vinde! Prover-vos-ei e dar-vos-eia liberdade, da melhor forma possível.",
+ 29,
+ "Outrossim, se preferirdes Deus, Seu Mensageiro e morada eterna, certamente Deus destinará, para as benfeitoras, dentrevós, uma magnífica recompensa.",
+ 30,
+ "Ó esposas do Profeta, se alguma de vós for culpada de uma má conduta evidente, ser-lhe-á duplicado o castigo, porqueisso é fácil a Deus.",
+ 31,
+ "Por outra, àquela que se consagrar a Deus e a Seus Mensageiro, e praticar o bem, duplicaremos a recompensa e lhedestinaremos um generoso sustento.",
+ 32,
+ "Ó esposas do Profeta, vós não sois como as outras mulheres; se sois tementes, não sejais insinuantes na conversação, para evitardes a cobiça daquele que possui morbidez no coração, e falai o que é justo.",
+ 33,
+ "E permanecei tranqüilas em vossos lares, e não façais exibições, como as da época da idolatria; observai a oração, pagai o zakat, obedecei a Deus e ao seu Mensageiro, porque Deus só deseja afastar de vós a abominação, ó membros daCasa, bem como purificar-vos integralmente.",
+ 34,
+ "E lembrai-vos do que é recitado em vosso lar, dos versículos de Deus e da sabedoria, porque Deus é Onisciente, Sutilíssimo.",
+ 35,
+ "Quanto aos muçulmanos e às muçulmanas, aos fiéis e às fiéis, aos consagrados e às consagradas, aos verazes e àsverazes, aos perseverantes e às perseverantes, aos humildes e às humildes, aos caritativos e às caritativas, aos jejuadores eàs jejuadoras, aos recatados e às recatadas, aos que se recordam muito de Deus e às que se recordam d'Ele, saibam queDeus lhes tem destinado a indulgência e uma magnífica recompensa.",
+ 36,
+ "Não é dado ao fiel, nem à fiel, agir conforme seu arbítrio, quando Deus e Seu Mensageiro é que decidem o assunto. Sabei que quem desobedecer a Deus e ao Seu Mensageiro desviar-se á evidentemente.",
+ 37,
+ "Recorda-te de quando disseste àquele que Deus agraciou, e tu favoreceste: Permanece com tua esposa e teme a Deus!, ocultando em teu coração o que Deus ia revelar; temais, acaso, mais as pessoas, sabendo que Deus é mais digno de que Otemas? Porém, quando Zaid resolveu dissolver o seu casamento com a necessária (formalidade), permitimos que tu adesposasses, a fim de que os fiéis não tivessem inconvenientes em contrair matrimônio com as esposas de seus filhosadotivos, sempre que estes decidissem separar-se com a necessária (formalidade); e fica sabendo que o mandamento deDeus deve ser cumprido.",
+ 38,
+ "Não será recriminado o Profeta por cumprir o que Deus lhe prescreveu, porque é a lei de Deus, com respeito aos que oprecederam. Os desígnios de Deus são de ordem irrevogável.",
+ 39,
+ "(É a lei) daqueles que transmitem as Mensagens de Deus e O temem, e a ninguém temem, senão a Deus, e basta Deuspara que Lhe rendam contas.",
+ 40,
+ "Em verdade, Mohammad não é o pai de nenhum de vossos homens, mas sim o Mensageiro de Deus e o prostremos dosprofetas; sabei que Deus é Onisciente.",
+ 41,
+ "Ó fiéis, mencionai freqüentemente Deus.",
+ 42,
+ "E glorificai-O, de manhã e à tarde.",
+ 43,
+ "Ele é Quem vos abençoa, assim como (fazem) Seus anjos, para tirar-vos das trevas e levar-vos para a luz; sabei que Eleé Misericordioso para com os fiéis.",
+ 44,
+ "Sua saudação, no dia em que comparecerem ante Ele, será: Paz! E está-lhes destinada uma generosa recompensa.",
+ 45,
+ "Ó profeta, em verdade, enviamos-te como testemunha, alvissareiro e admoestador!",
+ 46,
+ "E, como convocador (dos humanos) a Deus, com Sua anuência, e como uma lâmpada luminosa.",
+ 47,
+ "E anuncia aos fiéis, que obterão de Deus infinita graça.",
+ 48,
+ "E não obedeças aos incrédulos, nem aos hipócritas, e não faças caso de suas injúrias; encomenda-te a Deus, porque Deuste basta por Guardião.",
+ 49,
+ "Ó fiéis, se vos casardes com as fiéis e as repudiardes, antes de haverde-las tocado, não lhes exigias o cumprimento dotérmino estabelecido; dai-lhes um presente, outrossim, e libertai-as decorosamente.",
+ 50,
+ "Ó Profeta, em verdade, tornamos lícitas, para ti as esposas que tenhas dotado, assim como as que a tua mão direitapossui (cativas), que Deus tenha feito cair em tuas mãos, as filhas de teus tios e tias paternas, as filhas de teus tios e tiasmaternas, que migraram contigo, bem como toda a mulher fiel que se dedicar ao Profeta, por gosto, e uma vez que o Profetaqueira desposá-la; este é um privilégio exclusivo teu, vedado aos demais fiéis. Bem sabemos o que lhes impusemos (aosdemais), em relação às suas esposas e às que suas mãos direita possuem, a fim de que não haja inconveniente algum para ti. E Deus é Indulgente, Misericordioso.",
+ 51,
+ "Podes abandonar, dentre elas, as que desejares e tomar as que te agradarem; e se desejares tomar de novo a qualquerdelas que tiveres abandonado, não terás culpa alguma. Esse proceder será sensato para que se refresquem seus olhos, não seaflijam e se satisfaçam com o que tiveres concedido a todas, pois Deus sabe o que encerram os vossos corações; e Deus, éTolerante, Sapientíssimo.",
+ 52,
+ "Alem dessas não te será permitido casares com outras, nem trocá-las por outras mulheres, ainda que suas belezas teencantarem, com exceção das que a tua mão direita possua. E Deus é Observador de tudo.",
+ 53,
+ "Ó fiéis, não entreis na casas do Profeta, salvo se tiverdes sido convidados a uma refeição, mas não para aguardardes asua preparação. Porém, se fordes convidados, entrai; e quando tiverdes sido servidos, retirai-vos sem fazer colóquiofamiliar, porque isso molestaria o Profeta e este se envergonharia de vós; porém, Deus não Se envergonha da verdade. E seisso será mais puro para os vossos corações e para os delas. Não vos é dado molestar o Mensageiro de Deus nem jamaisdesposar as suas esposas, depois dele, porque isso seria grave ante Deus.",
+ 54,
+ "Quer manifesteis algo, quer o oculteis, sabei que Deus é Conhecedor de todas as coisas.",
+ 55,
+ "(As esposas do Profeta) não serão recriminadas (se aparecerem a descoberto) perante seus pais, seus filhos, seusirmãos, seus sobrinhos, perante suas mulheres crentes ou as que suas mãos direita possuam (servas). E temei a Deus, porqueEle é Testemunha de tudo.",
+ 56,
+ "Em verdade, Deus e Seus anjos abençoam o Profeta. Ó fiéis, abençoai-o e saudai-o reverentemente!",
+ 57,
+ "Em verdade, àqueles que molestam Deus e Seu Mensageiro, Deus os amaldiçoará, neste mundo e no outro, e tem-lhespreparado um afrontoso castigo.",
+ 58,
+ "E aqueles que molestarem os fiéis e as fiéis imerecidamente, serão culpados de uma falsa imputação e de um delitoflagrante.",
+ 59,
+ "Ó Profeta, dize a tuas esposas, tuas filhas e às mulheres dos fiéis que (quando saírem) se cubram com as suas mantas; isso é mais conveniente, para que distingam das demais e não sejam molestadas; sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 60,
+ "Se os hipócritas e os que abrigam a morbidez em seus corações, e os intrigantes, em Madina, não se contiverem, ordenar-te-emos combatê-los; então, não ficarão nela, como teus vizinhos, senão por pouco tempo.",
+ 61,
+ "Serão malditos: onde quer que se encontrarem, deverão ser aprisionados e cruelmente mortos.",
+ 62,
+ "Tal foi a Lei de Deus, para com aqueles que viveram anteriormente. Nunca acharás mudanças na Lei de Deus!",
+ 63,
+ "As pessoas te interrogarão sobre a Hora (do Juízo). Dize-lhes: Seu conhecimento somente está com Deus! E quem teinteirará, se a Hora estiver próxima?",
+ 64,
+ "Em verdade, Deus amaldiçoou os incrédulos e lhes preparou o tártaro.",
+ 65,
+ "Onde permanecerão eternamente; não encontrarão protetor ou socorredor.",
+ 66,
+ "No dia em que seus rostos forem virados para o fogo, dirão: Oxalá tivéssemos obedecido a Deus e ao Mensageiro!",
+ 67,
+ "E dirão (mais): Ó Senhor nosso, em verdade, obedecíamos aos nossos chefes, os quais nos desviaram da (verdadeira) senda.",
+ 68,
+ "Ó Senhor nosso, redobra-lhes o castigo e amaldiçoa-os reiteradamente!",
+ 69,
+ "Ó fiéis, não sejais como aqueles que injuriaram Moisés, e sabei que Deus o isentou do que diziam, porque era nobre aosOlhos de Deus.",
+ 70,
+ "Ó fiéis, temei a Deus e falai apropriadamente.",
+ 71,
+ "Ele emendará as vossas ações e vos absolverá dos vossos pecados; e quem obedecer a Deus e ao Seu Mensageiro terálogrado um magnifico benefício.",
+ 72,
+ "Por certo que apresentamos a custódia aos céus, à terra e às montanhas, que se negaram e temeram recebê-la; porém, ohomem se encarregou disso, mas provou ser injusto e insipiente.",
+ 73,
+ "Deus castigará os hipócritas e as hipócritas, os idólatras e as idólatras, e perdoará os fiéis e as fiéis, porque Deus éIndulgente, Misericordiosíssimo."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/34.json b/share/quran-json/TheQuran/pt/34.json
new file mode 100644
index 0000000..438aed5
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/34.json
@@ -0,0 +1,123 @@
+[
+ {
+ "id": "34",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Saba",
+ "translated_name": "Sheba",
+ "verse_count": 54,
+ "slug": "saba",
+ "codepoints": [
+ 1587,
+ 1576,
+ 1573
+ ]
+ },
+ 1,
+ "Louvado seja Deus, a Quem pertence tudo quanto existe nos céus e na terra; Seus serão os louvores, (também) no outromundo, porque é o Onisciente, o Prudentíssimo.",
+ 2,
+ "Ele conhece tanto o que penetra na terra, como o que dela sai, o que desce do céu e o que a ele ascende, porque é oMisericordioso, o Indulgentíssimo.",
+ 3,
+ "Os incrédulos dizem: Nunca nos chegará a Hora! Dize-lhes: Sim, por meu Senhor! Chegar-vos-á, procedente deconhecedor do incognoscível, de Quem nada escapa, nem mesmo algo do peso de um átomo, quer seja nos céus ou na terra, e (nada há) menor ou maior do que isso, que não esteja registrado no Livro lúcido.",
+ 4,
+ "Isso para certificar os fiéis, que praticam o bem, de que obterão indulgência e um magnífico sustento.",
+ 5,
+ "Mas, aqueles que lutam contra os nossos versículos sofrerão um castigo e uma dolorosa punição.",
+ 6,
+ "E os que foram agraciados com a sabedoria sabem que o que te foi revelado, por teu Senhor, é a verdade, e que issoconduz à senda do Poderoso, Laudabilíssimo.",
+ 7,
+ "E os incrédulos dizem (uns aos outros): Quereis que vos indiquemos um homem que vos inteire de que quando fordesdesintegrados sereis reanimados novamente?",
+ 8,
+ "Forjou mentiras a respeito de Deus, está louco! Qual! Aquelas que negarem a outra vida serão atormentados por teremestado num profundo erro.",
+ 9,
+ "Não reparam, acaso, no que está antes deles e atrás deles, de céu e terra? Se quiséssemos, poderíamos fazê-los serengolidos pela terra ou fazer cair sobre eles uma obliteração do céu. Nisto há um sinal para todo o servo contrito.",
+ 10,
+ "Agraciamos Davi com a Nossa mercê (e dissemos): Ó montanhas, ó pássaros, repeti com ele os louvores de Deus. E lhefizemos maleável o ferro.",
+ 11,
+ "(E lhe dissemos): Faze com ele cotas de malha e ajusta-as! Praticai o bem, porque bem vemos tudo quanto fazeis.",
+ 12,
+ "E fizemos o vento (obediente) a Salomão, cujo trajeto matinal equivale a um mês (de viagem) e o vespertino a um mês (de viagem). E fizemos brotar, para ele, uma fonte do cobre, e proporcionamos gênios, para trabalharem sob as suas ordens, com a anuência do seu Senhor; e a quem, dentre eles, desacatar as Nossas ordens, infligiremos o castigo do tártaro.",
+ 13,
+ "Executaram, para ele, tudo quanto desejava: arcos, estátuas, grandes vasilhas como reservatórios, e resistentes caldeirasde cobre. (E dissemos): Trabalhai, ó familiares de Davi, com agradecimento! Quão pouco são os agradecidos, entre osMeus servos!",
+ 14,
+ "E quando dispusemos sobre sua morte (de Salomão), só se aperceberam dela em virtude dos cupins que lhe roíam ocajado; e quando tombou, os gênios souberam que, se estivessem de posse do incognoscível, não permaneceriam noafrontoso castigo.",
+ 15,
+ "Os habitantes de Sabá tinham, em sua cidade, um sinal: duas espécies de jardins, à direita e à esquerda. (Foi-lhes dito): Desfrutai de graça de vosso Senhor e agradecei-Lhe. Tendes terra fértil e um Senhor Indulgentíssimo.",
+ 16,
+ "Porém, desencaminharam-se. Então, desencadeamos sobre eles a inundação provinda dos diques, e substituímos seusjardins por outro cujos frutos eram amargos, e tamargueiras, e possuíam alguns lotos.",
+ 17,
+ "Assim os castigamos, por sua ingratidão. Temos castigado, acaso, alguém, além do ingrato?",
+ 18,
+ "E estabelecemos, entre eles, e as cidades que havíamos bendito, cidades proeminentes, e lhes apontamos estágios deviagem, (dizendo-lhes): Viajai por aí em segurança, durante o dia e à noite!",
+ 19,
+ "Porém, disseram: Ó Senhor nosso, prolonga a distância entre os nossos estágios de viagem! E se condenaram. Então osconvertemos em lenta (a ser marrada) para os povos e os dispersamos por todas as partes. Nisto há sinais para todo operseverante, agradecido.",
+ 20,
+ "O próprio Lúcifer confirmou que havia pensado certo a respeito deles - eles o seguiram, exceto uma parte dos fiéis;",
+ 21,
+ "Se bem que não tivesse autoridade alguma sobre eles. Fizemos isto para certificar-Nos de quem, dentre eles, acreditavana outra vida e quem dela duvidava. Em verdade, teu Senhor é Guardião de tudo.",
+ 22,
+ "Dize-lhes: Invocai os que pretendeis, em vez de Deus! Eles não possuem nada, nem mesmo do peso de um átomo, no céuou na terra, nem tampouco têm neles participação; nem Ele os tem como ajudantes.",
+ 23,
+ "E de nada valerá a intercessão junto a Ele, senão a daquele a quem for permitida. Quando o terror for banido de seuscorações, dirão: Que tem dito o vosso Senhor? Dirão: A verdade, porque é o Grandioso, o Altíssimo.",
+ 24,
+ "Dize-lhes: Quem vos agracia, seja do céu, seja da terra? Dize: Deus! Portanto, certamente, ou nós estamos guiados ouvós estais orientados, ou em erro evidente.",
+ 25,
+ "Dize-lhes mais: Não sereis responsáveis por tudo quanto tenhamos feito, como tampouco não seremos responsáveis porquanto tenhais cometido.",
+ 26,
+ "Dize-lhes (ainda): Nosso Senhor nos congregará e logo decidirá o assunto entre nós com eqüidade, porque é o Árbitropor excelência, o Sapientíssimo.",
+ 27,
+ "Torna a lhes dizer: Mostrai-me os parceiros que Lhe atribuís! Não podereis fazê-lo! Porém, Ele é Deus, o Poderoso, oPrudentíssimo.",
+ 28,
+ "E não te enviamos, senão como universal (Mensageiro), alvissareiro e admoestador para os humanos; porém, a maioriados humanos o ignora.",
+ 29,
+ "E dizem: Quando (se cumprirá) esta promessa? Dize-nos, se estiveres certo.",
+ 30,
+ "Responde-lhes: Tendes um encontro marcado para um dia, o qual não podereis atrasar, nem adiantar por uma só hora.",
+ 31,
+ "Os incrédulos dizem: Jamais creremos neste Alcorão, tampouco nos (Livros) que o precederam. Ah, se pudesses ver osiníquos reprovarem-se reciprocamente, quando compararem ante seu Senhor! Os seguidores dirão aos que seensoberbeceram: Se não fosse por vós, teríamos sido fiéis!",
+ 32,
+ "E os que se ensoberbeceram dirão aos seus seguidores: Acaso, nós vos desencaminhamos da orientação, depois de vo-later chegado? Qual! Fostes vós os pecadores!",
+ 33,
+ "E os seguidores responderão aos que se ensoberbeceram: Ao contrário, foram as vossas artimanhas, à noite e de dia, quando nos ordenáveis que negássemos Deus e Lhe atribuíssemos parceiros! E dissimularão o remorso quando virem ocastigo. E carregaremos de pesadas argolas os pescoços dos incrédulos. Porventura serão retribuídos, senão pelo quehouverem feito?",
+ 34,
+ "E não enviamos admoestador algum a cidade alguma sem que os concupiscentes lhes dissessem: Sabei que negamos (amensagem) com que foste enviado.",
+ 35,
+ "E disseram: Nós possuímos mais riquezas e filhos do que vós, e jamais seremos castigados.",
+ 36,
+ "Dize-lhes: Em verdade, meu Senhor prodigaliza e restringe a Sua graça a quem Lhe apraz: porém, a maioria dos humanoso ignora.",
+ 37,
+ "E não serão nem as vossas riquezas, nem os vosso filhos que vos aproximarão dignamente de Nós; outrossim, serão osfiéis, que praticam o bem, que receberão uma multiplicada recompensa por tudo quanto tiverem feito, e residirão, seguros, no empíreo.",
+ 38,
+ "Em verdade, aqueles que lutam contra os Nossos versículos, e tentam frustrá-los, serão os que comparecerão ao castigo.",
+ 39,
+ "Dize-lhes: Em verdade, meu Senhor prodigaliza e restringe Sua graça a quem Lhe apraz, dentre os Seus servos. Tudoquanto distribuirdes em caridade Ele vo-lo restituirá, porque é o melhor dos agraciadores.",
+ 40,
+ "Um dia os congregará a todos, e logo perguntará aos anjos: São estes, acaso, os que vos adoravam?",
+ 41,
+ "Responderão: Glorificado sejas! Tu és nosso Protetor, em vez deles! Qual! Adoravam os gênios! A maioria delesacreditava neles.",
+ 42,
+ "Porém, hoje não podereis beneficiar-vos nem prejudicar-vos reciprocamente. E diremos aos iníquos: Provai o castigoinfernal que negastes!",
+ 43,
+ "E quando lhes são recitados os Nossos lúcidos versículos (esta pelo Profeta), dizem: Este não é mais do que um homemque quer afastar-vos do que adoravam os vossos pais! E dizem (ainda): Este (Alcorão) não é mais do que uma calúniaforjada! E os incrédulos dizem da verdade quando lhes chega: Isto não é mais do que pura magia!",
+ 44,
+ "Antes de ti não lhes tínhamos enviado livro algum, para que o estudassem, nem lhes havíamos enviado admoestadoralgum.",
+ 45,
+ "Os povos antigos desmentiram (seus mensageiros); e não conseguiram alcançar nem a décima parte do conhecimento quelhes concedemos. Negaram os Meus mensageiros, mas que terrível foi a (Minha) rejeição (a eles)!",
+ 46,
+ "Dize-lhes: Exorto-vos a uma só coisa: que vos consagreis a Deus, em pares ou individualmente; e refleti. Vossocompanheiro não é um energúmeno. Ele não é senão vosso admoestador, que vos adverte, face a um terrível castigo.",
+ 47,
+ "Dize-lhes: Jamais vos exigi recompensa alguma; tudo (que fiz) foi em vosso interesse; e minha recompensa só incumbe aDeus, porque é Testemunha de tudo.",
+ 48,
+ "Dize-lhes (mais): Sabei que meu Senhor é Quem difunde a verdade e é conhecedor do incognoscível.",
+ 49,
+ "Dize-lhes (ainda): A verdade tem prevalecido, e a falsidade nada cria e nem restaura.",
+ 50,
+ "Torna o dizer-lhes: Se me desviar, será unicamente em detrimento meu; em troca, se me encaminhar, será por causa doque meu Senhor me tem revelado, porque é Oniouvinte, Próximo.",
+ 51,
+ "E se puderes vê-los, quando tremerem de medo, sem terem escapatória! Serão levados (para o inferno) de um lugarpróximo!",
+ 52,
+ "E então dirão: Cremos nela (a verdade)! Porém, como poderão alcançá-la de um lugar distante,",
+ 53,
+ "Quando antes a negaram, escarnecendo do incognoscível, de um lugar distante?",
+ 54,
+ "E erigiu, entre eles e suas aspirações, uma barreira, como foi feito anteriormente com os seus partidários, porqueestavam em uma inquietante dúvida."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/35.json b/share/quran-json/TheQuran/pt/35.json
new file mode 100644
index 0000000..6da2312
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/35.json
@@ -0,0 +1,106 @@
+[
+ {
+ "id": "35",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Fatir",
+ "translated_name": "Originator",
+ "verse_count": 45,
+ "slug": "fatir",
+ "codepoints": [
+ 1601,
+ 1575,
+ 1591,
+ 1585
+ ]
+ },
+ 1,
+ "Louvado seja Deus, Criador dos céus e da terra, Que fez dos anjos mensageiros, dotados de dois, três ou quatro pares deasas; aumenta a criação conforme Lhe apraz, porque Deus é Onipotente.",
+ 2,
+ "A misericórdia com que Deus agracia o homem ninguém pode obstruir e tudo quanto restringe ninguém pode prodigalizar, à parte d'Ele, porque é o Poderoso, o Prudentíssimo.",
+ 3,
+ "Ó humanos, recordai-vos da graça de Deus para convosco! Porventura, existe outro criador que não seja Deus, Que vosagracia, quer (com coisas) do céu quer da terra? Não há mais divindade além d'Ele! Como, pois, vos desviais?",
+ 4,
+ "E se te desmentirem, fica sabendo que mensageiros anteriores a ti também foram desmentidos. Mas a Deus retornarão osassuntos!",
+ 5,
+ "Ó humanos, a promessa de Deus é inexorável! Que a vida terrena não vos iluda, nem vos engane o sedutor, com respeito aDeus.",
+ 6,
+ "Posto que Satanás é vosso inimigo, tratai-o, pois como inimigo, porque ele incita os seus prosélitos a que sejamcondenados ao tártaro.",
+ 7,
+ "Os incrédulos sofrerão um terrível castigo. Mas os fiéis, que praticam o bem, obterão indulgência e uma granderecompensa.",
+ 8,
+ "Acaso, aquele cujas más ações lhe foram abrilhantadas e as vê como boas, (poderá ser equiparado ao encaminhado)? Certamente Deus deixa desviar-se quem quer e encaminha quem Lhe apraz. Não te mortifiques, pois, em vão, por seu desvio, porque Deus é Sabedor de tudo quanto fazem.",
+ 9,
+ "E Deus é Quem envia os ventos, que movem as nuvens (que produzem chuva). Nós as impulsionamos até a uma terra áridae, mediante elas, reavivamo-la, depois de haver sido inerte; assim é a ressurreição!",
+ 10,
+ "Quem ambiciona a glória, saiba que toda glória pertence integralmente a Deus. Até a Ele ascendem as puras palavras eas nobres ações. Aqueles que urdem maldades sofrerão um terrível castigo, e sua conspiração será inútil.",
+ 11,
+ "E Deus vos criou do pó; então de esperma; depois vos dividiu em pares. E nenhuma fêmea concebe ou gera sem o Seuconhecimento. Não se prolonga, nem se abrevia a vida de ninguém, sem que isso esteja registrado no Livro, porque isso éfácil a Deus.",
+ 12,
+ "Jamais se equipararão as duas águas, uma doce, agradável de ser bebida, e a outra, que é salobra e amarga; porém, tantode uma como da outra comeis carne fresca e extraís ornamentos com que vos embelezais - e vedes nela os navios sulcandoas ondas, à procura da Sua graça, para que, quiçá, Lhe agradeçais.",
+ 13,
+ "Ele insere a noite no dia e o dia na noite e rege o sol e a lua; cada um percorrerá o seu curso até um término prefixado. Tal é Deus para vós, vosso Senhor, e é d'Ele o Reino. Quanto aos que invocais em vez d'Ele, não possuem o mínimo queseja de poder.",
+ 14,
+ "Quando os invocardes, não ouvirão a vossa súplica e, mesmo se a ouvirem, não vos atenderão. E no Dia da Ressurreiçãorenegarão a vossa idolatria; e ninguém te informará (ó humano) como o Onisciente.",
+ 15,
+ "Ó humanos, sois vós que necessitais de Deus, porque Deus é, por Si, o Opulento, o Laudabilíssimo.",
+ 16,
+ "Se quisesse, poderia fazer-vos desaparecer e apresentaria uma nova criação,",
+ 17,
+ "Porque isso não é difícil a Deus.",
+ 18,
+ "E nenhum pecador arcará com culpa alheia; e se uma alma sobrecarregada suplicar a outra a que lhe alivie a carga, estanão lhe será aliviada no mínimo que seja, ainda que por um parente. Admoestarás tão-somente aqueles que temem seuSenhor na intimidade, e observam a oração. E quem se purificar, será em seu próprio benefício, porque a Deus será oretorno.",
+ 19,
+ "Jamais se equipararão o cego e o vidente.",
+ 20,
+ "Tampouco as trevas e a luz.",
+ 21,
+ "Ou a sombra e a canícula.",
+ 22,
+ "Nem tampouco se equipararão os vivos e os mortos. Em verdade, Deus faz ouvir quem Lhe apraz; contudo, tu não podesfazer-te ouvir por aqueles que estão nos sepulcros,",
+ 23,
+ "Porque não és mais do que um admoestador.",
+ 24,
+ "Certamente te enviamos com a verdade e como alvissareiro e admoestador, e não houve povo algum que não tivesse tidoum admoestador.",
+ 25,
+ "E, se te desmentirem, olha, seus antecessores desmentiram os seus mensageiros que lhes apresentaram as evidências, osSalmos e o Livro lúcido.",
+ 26,
+ "Então castigamos os incrédulos; e que terrível foi a (Nossa) rejeição (a eles)!",
+ 27,
+ "Não reparas em que Deus faz descer a água do céu? E produzimos, com ela, frutos de vários matizes; e também háextensões de montanhas, brancas, vermelhas, de diferentes cores, e as há de intenso negro.",
+ 28,
+ "E entre os humanos, entre os répteis e entre o gado, há indivíduos também de diferentes cores. Os sábios, dentre osservos de Deus, só Ele temem, porque sabem que Deus é Poderoso, Indulgentíssimo.",
+ 29,
+ "Por certo que aqueles que recitam o Livro de Deus, observam a oração e fazem caridade, privativa ou paladinamente, com uma parte daquilo com que os agraciamos, almejam um comércio imorredouro.",
+ 30,
+ "Deus lhe pagará as suas recompensas e lhes acrescentará de Sua graça, porque é Compensador, Indulgentíssimo.",
+ 31,
+ "E o que te revelamos do Livro é a verdade que corrobora os Livros que o precederam; sabei que Deus está inteirado, e éObservador de Seus servos.",
+ 32,
+ "Então, fizemos herdar o Livro a quem elegemos dentre os Nossos servos; porém, entre eles há aqueles que se condenam, outros que são parcimoniosos e outros que se emulam na beneficência, com o beneplácito de Deus. Eis a magnífica graça:",
+ 33,
+ "Jardins do Éden, os quais adentrarão, onde serão enfeitados com braceletes de ouro e pérolas; e suas vestimentas serãode seda pura.",
+ 34,
+ "E dirão; Louvado seja Deus, que nos tem livrado da aflição! O Nosso Senhor é Compensador, Indulgentíssimo.",
+ 35,
+ "E, em virtude de Sua graça, alojou-nos na morada eterna, onde não nos molestará a fadiga, nem tampouco a languidez!",
+ 36,
+ "Por outra, os incrédulos experimentarão o fogo infernal. Não serão condenados a morrer, nem lhes será aliviado, emnada, o castigo. Assim castigamos todo o ingrato.",
+ 37,
+ "E aí clamarão: Ó Senhor nosso, tira-nos daqui, que agiremos de uma forma diferente da que agíamos! Acaso, não vosprolongamos as vidas, para que, quem quisesse refletir, pudesse fazê-lo, e não vos chegou o admoestador? Provai, pois, (ocastigo)! Sabei que os iníquos não têm socorredor algum!",
+ 38,
+ "Deus é Conhecedor do mistério dos céus e da terra, porque conhece bem as intimidades dos corações.",
+ 39,
+ "Ele foi Quem vos designou como legatários na terra. Mas, quem pecar, o fará em detrimento próprio; porém, quanto aosincrédulos, sua perfídia não lhes acrescentará senão aversão, aos olhos de seu Senhor; e sua perfídia não lhes acrescentarásenão perdição.",
+ 40,
+ "Dize-lhes: Não reparais nas divindades que invocais em vez de Deus? Mostrai-me o que criaram na terra! Acaso, participem dos céus? Ou então lhes concedemos algum Livro, no qual pudessem basear-se? Qual! Os iníquos não prometem, mutualmente, mais do que ilusões!",
+ 41,
+ "Em verdade, Deus sustém os céus e a terra, para que não se desloquem, e se se deslocassem, ninguém, que não fosse Ele, poderia contê-los. Em verdade, é Tolerante, Indulgentíssimo.",
+ 42,
+ "Juraram solenemente por Deus que, se lhes fosse apresentado um admoestador, encaminhar-se-iam mais do que qualqueroutro povo; porém, quando um admoestador lhes chegou, nada lhes foi aumentando, senão em aversão,",
+ 43,
+ "Em ensoberbecimento na terra e em conspiração para o mal; todavia, a conspiração para o mal somente assedia os seusfeitores. Porventura, almejam algo, além da sorte dos povos primitivos? Porém, nunca acharás variações na Lei de Deus; enunca acharás mudanças na Lei de Deus.",
+ 44,
+ "Porventura, não percorreram a terra, para ver qual foi o destino dos seus antecessores, que eram mais poderosos do queeles? Porém, nada poderá desafiar Deus, nos céus ou na terra, porque é Onipotente, Sapientíssimo.",
+ 45,
+ "De sorte que se Deus tivesse castigado os humanos pelo que cometeram, não teria deixado sobre a face da terra um sóser; porém, tolera-os até um término prefixado. E quando esse término expirar, certamente constatarão que Deus éObservador de Seus servos."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/36.json b/share/quran-json/TheQuran/pt/36.json
new file mode 100644
index 0000000..61b1728
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/36.json
@@ -0,0 +1,180 @@
+[
+ {
+ "id": "36",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ya-Sin",
+ "translated_name": "Ya Sin",
+ "verse_count": 83,
+ "slug": "ya-sin",
+ "codepoints": [
+ 1610,
+ 1587
+ ]
+ },
+ 1,
+ "Yá, Sin.",
+ 2,
+ "Pelo Alcorão da Sabedoria.",
+ 3,
+ "Que tu és dos mensageiros,",
+ 4,
+ "Numa senda reta.",
+ 5,
+ "É uma revelação do Poderoso, Misericordiosíssimo.",
+ 6,
+ "Para que admoestes um povo, cujos pais não foram admoestados e permaneceram indiferentes.",
+ 7,
+ "A palavra provou ser verdadeira sobre a maioria deles, pois que são incrédulos.",
+ 8,
+ "Nós sobrecarregamos os seus pescoços com correntes até ao queixo, para que andem com as cabeças hirtas.",
+ 9,
+ "E lhes colocaremos uma barreira pela frente e uma barreira por trás, e lhes ofuscaremos os olhos, para que não possamver.",
+ 10,
+ "Tanto se lhes dá que os admoestes ou não; jamais crerão.",
+ 11,
+ "Admoestarás somente quem seguir a Mensagem e temer intimamente o Clemente; anuncia a este, pois, uma indulgência euma generosa recompensa.",
+ 12,
+ "Nós ressuscitaremos os mortos, e registraremos as suas ações e os seus rastros, porque anotaremos tudo num Livrolúcido.",
+ 13,
+ "E lembra-lhes a parábola dos moradores da cidade, quando se lhes apresentaram os mensageiros.",
+ 14,
+ "Enviamos-lhes dois (mensageiros), e os desmentiram; e, então, foram reforçados com o envio de um terceiro; (osmensageiros) disseram-lhes: Ficai sabendo que fomos enviados a vós.",
+ 15,
+ "Disseram: Não sois senão seres como nós, sendo que o Clemente nada revela que seja dessa espécie; não fazeis mais doque mentir.",
+ 16,
+ "Disseram-lhes: Nosso Senhor bem sabe que somos enviados a vós.",
+ 17,
+ "E nada nos compete, senão a proclamação da lúcida Mensagem.",
+ 18,
+ "Disseram: Auguramos a vossa desgraça e, se não desistirdes, apedrejar-vos-emos e vos infligiremos um dolorosocastigo.",
+ 19,
+ "Responderam-lhes: Que vosso augúrio vos acompanhe! Maltratar-nos-eis, acaso, porque fostes admoestados? Sois, certamente, um povo transgressor!",
+ 20,
+ "E um homem, que acudiu da parte mais afastada da cidade, disse: Ó povo meu, segui os mensageiros!",
+ 21,
+ "Segui aqueles que não vos exigem recompensa alguma e são encaminhados!",
+ 22,
+ "E por que não teria eu de adorar Quem me criou e a Quem vós retornareis?",
+ 23,
+ "Deverei, acaso, adorar outros deuses em vez d'Ele? Se o Clemente quisesse prejudicar-me, de nada valeriam as suasintercessões, nem poderiam salvar-me.",
+ 24,
+ "(Se eu os adorasse), estaria em evidente erro.",
+ 25,
+ "Em verdade, creio em vosso Senhor, escutai-me pois!",
+ 26,
+ "Ser-lhe-á dito: Entra no Paraíso! Dirá então: Oxalá meu povo soubesse,",
+ 27,
+ "Que meu Senhor me perdoou e me contou entre os honrados!",
+ 28,
+ "E depois dele não enviamos a seu povo hoste celeste alguma, nem nunca enviaremos.",
+ 29,
+ "Foi só um estrondo, e ei-los inertes!, feito cinzas, prostrados e silentes.",
+ 30,
+ "Ai dos (Meus) servos! Não lhes foi apresentado mensageiro algum sem que o escarnecessem!",
+ 31,
+ "Não reparam, acaso, em quantas gerações, antes deles, aniquilamos? Não retornarão a eles.",
+ 32,
+ "Todos, unanimemente, comparecerão ante Nós.",
+ 33,
+ "Um sinal, para eles, é a terra árida; reavivamo-la e produzimos nela o grão com que se alimentam.",
+ 34,
+ "Nela produzimos, pomares de tamareiras e videiras, em que brotam mananciais,",
+ 35,
+ "Para que se alimentem dos seus frutos, coisa que suas mãos não poderiam fazer. Não agradecerão?",
+ 36,
+ "Glorificado seja Quem criou pares de todas as espécies, tanto naquilo que a terra produz como no que eles mesmosgeram, e ainda mais o que ignoram.",
+ 37,
+ "E também é sinal, para eles, a noite, da qual retiramos o dia, e ei-los mergulhados nas trevas!",
+ 38,
+ "E o sol, que segue o seu curso até um local determinado. Tal é o decreto do Onisciente, Poderosíssimo.",
+ 39,
+ "E a lua, cujo curso assinalamos em fases, até que se apresente como um ramo seco de tamareira.",
+ 40,
+ "Não é dado ao sol alcançar a lua; cada qual gira em sua órbita; nem a noite, ultrapassar o dia.",
+ 41,
+ "Também é um sinal, para eles, o fato de termos levado os seus concidadãos na arca carregada.",
+ 42,
+ "E lhes criamos similares a ela, para navegarem.",
+ 43,
+ "E, se quiséssemos, tê-los-íamos afogada, e não teriam quem ouvisse os seus gritos, nem seriam salvos,",
+ 44,
+ "A não ser com a nossa misericórdia, como provisão, por algum tempo.",
+ 45,
+ "E quando lhes é dito: Temei o que está antes de vós e o que virá depois de vós, talvez recebereis misericórdia, (desdenham-no)",
+ 46,
+ "Não lhes foram apresentados quaisquer dos versículos do seu Senhor, sem que os desdenhassem!",
+ 47,
+ "E quando lhes é dito: Fazei caridade daquilo com que Deus vos agraciou!, os incrédulos dizem aos fiéis: Havemos nósde alimentar alguém a quem, se Deus quisesse, poderia fazê-lo? Certamente estais em evidente erro.",
+ 48,
+ "E dizem (mais): Quando se cumprirá essa promessa? Dizei-no-lo, se estiverdes certos.",
+ 49,
+ "Não esperam nada, a não ser um estrondo que os fulmine enquanto estão disputando.",
+ 50,
+ "E não terão oportunidade de deixar testamento, nem de voltar aos seus.",
+ 51,
+ "E a trombeta será soada, e ei-los que sairão dos seus sepulcros e se apressarão para o seu Senhor.",
+ 52,
+ "Dirão: Ai de nós! Quem nos despertou do nosso repouso? (Ser-lhes-á respondido): Isto foi o que prometeu o Clemente, eos mensageiros disseram a verdade.",
+ 53,
+ "Bastará um só toque (de trombeta), e eis que todos comparecerão ante Nós!",
+ 54,
+ "Hoje nenhuma alma será defraudada, nem sereis retribuídos, senão pelo que houverdes feito.",
+ 55,
+ "Em verdade, hoje os diletos do Paraíso estarão em júbilo.",
+ 56,
+ "Com seus consortes, estarão à sombra, acomodados sobre almofadas.",
+ 57,
+ "Aí terão frutos e tudo quanto pedirem.",
+ 58,
+ "Paz! Eis como serão saudados por um Senhor Misericordiosíssimo.",
+ 59,
+ "E vós, ó pecadores, afastai-vos, agora, dos fiéis!",
+ 60,
+ "Porventura não vos prescrevi, ó filhos de Adão, que não adorásseis Satanás, porque é vosso inimigo declarado?",
+ 61,
+ "E que Me agradecêsseis, porque esta é a senda reta?",
+ 62,
+ "Não obstante, ele desviou muita gente, dentre vós. Por que não raciocinastes?",
+ 63,
+ "Eis aí o inferno, que vos foi prometido!",
+ 64,
+ "Entrai nele e sofrei hoje, por vossa descrença.",
+ 65,
+ "Neste dia, selaremos as suas bocas; porém, as suas mãos Nos falarão, e os seu pés confessarão tudo quanto tiveremcometido.",
+ 66,
+ "E, se quiséssemos, ter-lhes-íamos cegado os olhos; lançar-se-iam, então, precipitadamente pela senda. Porém, como averiam?",
+ 67,
+ "E se quiséssemos, tê-los-íamos transfigurado em seus lares e não poderiam avançar, nem retroceder.",
+ 68,
+ "E se concedemos vida longa a alguém reverter-lhe-emos a natureza: não o compreendem?",
+ 69,
+ "E não instruímos (o Mensageiro) na poesia, porque não é própria dele. O que lhe revelamos não é senão uma Mensageme um Alcorão lúcido,",
+ 70,
+ "Para admoestador quem estiver vivo, e para que a palavra seja provada, a respeito dos incrédulos.",
+ 71,
+ "Porventura, não reparam em que entre o que Nossas Mãos fizeram (entre outras coisas) está o gado, de que estão deposse?",
+ 72,
+ "E os submetemos a eles (para seu uso)? Entre eles, há os que lhes servem de montarias e outros de alimento.",
+ 73,
+ "E deles obtêm proveitos (outros) e bebidas (leite). Por que, então, não agradecem?",
+ 74,
+ "Todavia, adora outras divindades, em vez de Deus, a fim de que os socorram!",
+ 75,
+ "Porém, não podem socorrê-los; outrossim, são eles que serão trazidos como legiões.",
+ 76,
+ "Que seus dizeres não te atribulem, porque conhecemos tanto o que ocultam, como o que manifestam.",
+ 77,
+ "Acaso, ignora o homem que o temos criado de uma gota de esperma? Contudo, ei-lo um oponente declarado!",
+ 78,
+ "E Nos propõe comparações e esquece a sua própria criação, dizendo: Quem poderá recompor os ossos, quando jáestiverem decompostos?",
+ 79,
+ "Dize: Recompô-los-á Quem os criou da primeira vez, porque é Conhecedor de todas as criações.",
+ 80,
+ "Ele vos propiciou fazerdes fogo de árvores secas, que vós usais como lenha.",
+ 81,
+ "Porventura, Quem criou os céus e a terra não será capaz de criar outros seres semelhantes a eles? Sim! Porque Ele é oCriador por excelência, o Onisciente!",
+ 82,
+ "Sua ordem, quando quer algo, é tão-somente: Seja!, e é.",
+ 83,
+ "Glorificado seja, pois, Aquele em Cujas Mãos está o domínio de todas as coisas, e a Quem retornareis."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/37.json b/share/quran-json/TheQuran/pt/37.json
new file mode 100644
index 0000000..8ac0491
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/37.json
@@ -0,0 +1,383 @@
+[
+ {
+ "id": "37",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "As-Saffat",
+ "translated_name": "Those who set the Ranks",
+ "verse_count": 182,
+ "slug": "as-saffat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1589,
+ 1575,
+ 1601,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "Pelos que ordenadamente se enfileiram,",
+ 2,
+ "E depois energicamente expulsam o inimigo..",
+ 3,
+ "E recitam a mensagem.",
+ 4,
+ "Em verdade, vosso Deus é Único.",
+ 5,
+ "Senhor dos Céus e da terra e de tudo quanto existe entre ambos, e Senhor dos levantes!",
+ 6,
+ "Em verdade, adornamos o céu aparente com o esplendor das estrelas.",
+ 7,
+ "(Para esplendor) e para proteção, contra todos os demônios rebeldes,",
+ 8,
+ "Para que não possam ouvir os celícolas, pois serão atacados, por todos os lados,",
+ 9,
+ "Como repulsa, e terão um sofrimento permanente.",
+ 10,
+ "Exceto quem arrebatar algo, furtivamente, será perseguido por um meteoro flamejante.",
+ 11,
+ "Pergunta-lhes se são, acaso, de mais difícil criação do que os (outros) seres que temos criado. Criamo-los do barroargiloso.",
+ 12,
+ "Porém, assombras-te, porque te escarnecem.",
+ 13,
+ "E quando são exortados, não acatam a exortação.",
+ 14,
+ "E quando vêem algum sinal, zombam.",
+ 15,
+ "E dizem: Isto não é mais do que uma magia evidente!",
+ 16,
+ "Acaso, quando morrermos e formos reduzidos a pó e ossos, seremos ressuscitados?",
+ 17,
+ "E também (o serão) nosso antepassados?",
+ 18,
+ "Dize-lhes: Sim! E sereis humilhados!",
+ 19,
+ "E para isso bastará um só grito; e ei-los começando a ver!",
+ 20,
+ "Exclamarão: Ai de nós! Eis o Dia do Juízo.",
+ 21,
+ "(Ser-lhes-á dito): Este é o Dia da Discriminação, que negáveis.",
+ 22,
+ "(E será dito aos anjos): Congregai os iníquos com suas esposas e tudo quanto adoravam,",
+ 23,
+ "Em vez de Deus, e conduzi-os até à senda do inferno!",
+ 24,
+ "E detende-os lá, porque serão interrogados:",
+ 25,
+ "Por que não vos socorreis mutuamente?",
+ 26,
+ "Porém, nesse dia, submeter-se-ão (ao juízo).",
+ 27,
+ "E começarão a reprovar-se reciprocamente.",
+ 28,
+ "Dirão: Fostes vós, os da mão direita, que usáveis vir a nós.",
+ 29,
+ "Responder-lhes-ão (seus sedutores): Qual! Não fostes fiéis!",
+ 30,
+ "E não exercemos autoridade alguma sobre vós. Ademais, éreis transgressores.",
+ 31,
+ "E a palavra de nosso Senhor provou ser verdadeira sobre nós, e provaremos (o castigo).",
+ 32,
+ "Seduzimos-vos, então, porque fôramos seduzidos.",
+ 33,
+ "Em verdade, nesse dia, todos compartilharão do tormento.",
+ 34,
+ "Sabei que trataremos assim os pecadores.",
+ 35,
+ "Porque quando lhes era dito: Não há mais divindade além de Deus!, ensoberbeciam-se.",
+ 36,
+ "E diziam: Acaso, temos de abandonar as nossas divindades, por causa de um poeta possesso?",
+ 37,
+ "Qual! Mas (o Mensageiro) apresentou-lhes a Verdade e confirmou os mensageiros anteriores.",
+ 38,
+ "Certamente sofrereis o doloroso castigo.",
+ 39,
+ "E não sereis castigados, senão pelo que tiverdes feito.",
+ 40,
+ "Salvo os sinceros servos de Deus.",
+ 41,
+ "Estes terão o sustento estipulado.",
+ 42,
+ "Os frutos. E serão honrados,",
+ 43,
+ "Nos jardins do prazer,",
+ 44,
+ "Reclinados sobre leitos, mirando-se uns aos outros, de frente.",
+ 45,
+ "Ser-lhes-á servido, em um cálice, um néctar,",
+ 46,
+ "Cristalino e delicioso, para aqueles que o bebem",
+ 47,
+ "O qual não os entorpecerá nem os intoxicará,",
+ 48,
+ "E junto a eles haverá mulheres castas, restringindo os olhares, com grandes olhos,",
+ 49,
+ "Como se fossem ovos zelosamente guardados.",
+ 50,
+ "E começarão a interrogar-se reciprocamente.",
+ 51,
+ "Um deles dirá: Eu tinha um companheiro (na terra),",
+ 52,
+ "Que perguntava: És realmente dos que crêem (na ressurreição)?",
+ 53,
+ "Quando morrermos e formos reduzidos a pó e ossos, seremos, acaso, julgados?",
+ 54,
+ "(Ser-lhes-á dito): Quereis observar?",
+ 55,
+ "E olhará, e o verá no seio do inferno.",
+ 56,
+ "Dir-lhe-á então: Por Deus, que estiveste a ponto de seduzir-me!",
+ 57,
+ "E se não fosse pela graça do meu Senhor, contar-me-ia, agora, entre os levados (para lá)!",
+ 58,
+ "(Os bem-aventurados dirão): Não é, acaso, certo que não morreremos,",
+ 59,
+ "A não ser a primeira vez, e que jamais seremos castigados?",
+ 60,
+ "Em verdade, esta é a magnífica aquisição!",
+ 61,
+ "Que trabalhem por isso, os que aspiram lográ-lo!",
+ 62,
+ "Qual é melhor recepção, esta ou a da árvore do zacum?",
+ 63,
+ "Sabei que a estabelecemos como prova para os iníquos.",
+ 64,
+ "Em verdade, é uma árvore que cresce no fundo do inferno.",
+ 65,
+ "Seus ramos frutíferos parecem cabeças de demônios,",
+ 66,
+ "Que os réprobos comerão, e com eles fartarão os seus bandulhos.",
+ 67,
+ "Então, ser-lhes-á dada (a beber) uma mistura de água fervente.",
+ 68,
+ "E depois retornarão ao inferno.",
+ 69,
+ "Porque acharam seus pais extraviados.",
+ 70,
+ "E se apressaram em lhes seguirem os rastros.",
+ 71,
+ "Já, antes disso, a maioria dos primitivos se havia extraviado.",
+ 72,
+ "Não obstante, temos-lhes enviado admoestadores.",
+ 73,
+ "Observa, pois, qual foi a sorte dos admoestados.",
+ 74,
+ "Exceto a dos sinceros servos de Deus.",
+ 75,
+ "Noé Nos havia suplicado! E somos o melhor para ouvir as súplicas.",
+ 76,
+ "E o salvamos, juntamente com a sua família, da grande calamidade.",
+ 77,
+ "E fizemos sobreviver a sua prole.",
+ 78,
+ "E o fizemos passar para a posteridade.",
+ 79,
+ "Que a paz esteja com Noé, entre todas as criaturas!",
+ 80,
+ "Em verdade, assim recompensamos os benfeitores.",
+ 81,
+ "Pois ele era um dos Nossos servos fiéis.",
+ 82,
+ "Logo, afogamos os demais.",
+ 83,
+ "Sabei que entre aqueles que seguiram o seu exemplo estava Abraão,",
+ 84,
+ "Que se consagrou ao seu Senhor de coração sincero.",
+ 85,
+ "E disse ao seu pai e ao seu povo: Que é isso que adorais?",
+ 86,
+ "Preferis as falsas divindades, em vez de Deus?",
+ 87,
+ "Que pensais do Senhor do Universo?",
+ 88,
+ "E elevou seu olhar às estrelas,",
+ 89,
+ "Dizendo: Em verdade, sinto-me enfermo!",
+ 90,
+ "Então eles se afastaram dele.",
+ 91,
+ "Ele virou-se para os ídolos deles e lhes perguntou: Não comeis?",
+ 92,
+ "Por que não falais?",
+ 93,
+ "E pôs-se a destruí-los com a mão direita.",
+ 94,
+ "E (os idólatras) regressaram, apressados, junto a ele.",
+ 95,
+ "Disse-lhes: Adorais o que esculpis,",
+ 96,
+ "Apesar de Deus vos ter criado, bem como o que elaborais?",
+ 97,
+ "Dissera: Preparai para ele uma fogueira e arrojai-o no fogo!",
+ 98,
+ "E intentaram conspirar contra ele; porém, fizemo-los os mais humilhados.",
+ 99,
+ "E disse (Abraão): Vou para o meu Senhor, Que me encaminhará.",
+ 100,
+ "Ó Senhor meu, agracia-me com um filho que figure entre os virtuosos!",
+ 101,
+ "E lhe anunciamos o nascimento de uma criança (que seria) dócil.",
+ 102,
+ "E quando chegou à adolescência, seu pai lhe disse: Ó filho meu, sonhei que te oferecia em sacrifício; que opinas? Respondeu-lhe: Ó meu pai, faze o que te foi ordenado! Encontrar-me-ás, se Deus quiser, entre os perseverantes!",
+ 103,
+ "E quando ambos aceitaram o desígnio (de Deus) e (Abraão) preparava (seu filho) para o sacrifício.",
+ 104,
+ "Então o chamamos: Ó Abraão,",
+ 105,
+ "Já realizaste a visão! Em verdade, assim recompensamos os benfeitores.",
+ 106,
+ "Certamente que esta foi a verdadeira prova.",
+ 107,
+ "E o resgatamos com outro sacrifício importante.",
+ 108,
+ "E o fizemos (Abraão) passar para a posteridade.",
+ 109,
+ "Que a paz esteja com Abraão -",
+ 110,
+ "Assim, recompensamos os benfeitores -,",
+ 111,
+ "Porque foi um dos Nossos servos fiéis.",
+ 112,
+ "E lhe anunciamos, ainda, (a vinda de) Isaac, o qual seria um profeta, entre os virtuosos.",
+ 113,
+ "E o abençoamos, a ele e a Isaac. Mas entre os seus descendentes há benfeitores, e outros que são verdadeiros iníquospara consigo mesmos.",
+ 114,
+ "E agraciamos Moisés e Aarão.",
+ 115,
+ "E salvamos ambos, juntamente com seu povo, da grande calamidade.",
+ 116,
+ "E os secundamos (contra os egípcios), e saíram vitoriosos.",
+ 117,
+ "E concedemos a ambos o Livro lúcido.",
+ 118,
+ "E os guiamos à senda reta.",
+ 119,
+ "E os fizemos passar para a posteridade.",
+ 120,
+ "Que a paz esteja com Moisés e Aarão!",
+ 121,
+ "Em verdade, assim recompensamos os benfeitores.",
+ 122,
+ "E ambos se contavam entre os Nossos servos fiéis.",
+ 123,
+ "E também Elias foi um dos mensageiros.",
+ 124,
+ "Vê que ele disse ao seu povo: Não temeis a Deus?",
+ 125,
+ "Invocais Baal e abandonais o Melhor dos criadores,",
+ 126,
+ "Deus, vosso Senhor e Senhor dos vossos antepassados?",
+ 127,
+ "E o desmentiram; porém, sem dúvida que comparecerão (para o castigo),",
+ 128,
+ "Salvo os servos sinceros de Deus.",
+ 129,
+ "E o fizemos passar para a posteridade.",
+ 130,
+ "Que a paz esteja com Elias!",
+ 131,
+ "Em verdade, assim recompensamos os benfeitores.",
+ 132,
+ "E ele foi um dos Nosso servos fiéis.",
+ 133,
+ "Lot, também, foi um dos mensageiros.",
+ 134,
+ "Vê que o salvamos com toda a família.",
+ 135,
+ "Exceto uma anciã, que se contou entre os deixados para trás.",
+ 136,
+ "Então, aniquilamos os demais.",
+ 137,
+ "Por certo, passareis defronte eles ao amanhecer,",
+ 138,
+ "E ao anoitecer. Não pensais, pois, nisso?",
+ 139,
+ "E também Jonas foi um dos mensageiros.",
+ 140,
+ "O qual fugiu num navio carregado.",
+ 141,
+ "E se lançou à deriva, e foi desafortunado.",
+ 142,
+ "E uma baleia o engoliu, porque era repreensível.",
+ 143,
+ "E se não se tivesse contado entre os glorificadores de Deus,",
+ 144,
+ "Teria permanecido em seu ventre até ao dia da Ressurreição.",
+ 145,
+ "E o arranjamos, enfermo, a uma praia deserta,",
+ 146,
+ "E fizemos crescer, ao lado dele, uma aboboreira.",
+ 147,
+ "E o enviamos a cem mil (indivíduos) ou mais.",
+ 148,
+ "E creram nele, e lhes permitimos deleitarem-se por algum tempo.",
+ 149,
+ "Pergunta-lhes:: Porventura, pertencem ao teu Senhor as filhas, assim como a eles o varões?",
+ 150,
+ "Acaso, criamos os anjos femininos, sendo eles testemunhas?",
+ 151,
+ "Acaso, não é certo que em sua calúnia dizem:",
+ 152,
+ "Deus tem gerado!? Certamente que são embusteiros!",
+ 153,
+ "Preferiu Ele as filhas aos filhos?",
+ 154,
+ "Que tendes? Como julgais?",
+ 155,
+ "Acaso não recebestes admoestação?",
+ 156,
+ "Ou tendes uma autoridade evidente?",
+ 157,
+ "Apresentai, pois, o vosso livro, se estiverdes certos!",
+ 158,
+ "E inventaram um parentesco entre Ele e os gênios, sendo que estes bem sabem que comparecerão (entre os réprobos)!",
+ 159,
+ "Glorificado seja Deus (Ele está livre) de tudo quanto Lhe atribuem!",
+ 160,
+ "Exceto os servos sinceros de Deus.",
+ 161,
+ "E, em verdade, vós, com tudo quanto adorais,",
+ 162,
+ "Não podereis seduzir ninguém.",
+ 163,
+ "Salvo quem esteja destinado ao fogo!",
+ 164,
+ "Dizem: Nenhum de nós há, que não tenha seu lugar destinado.",
+ 165,
+ "E, certamente, somos os enfileirados (para a oração).",
+ 166,
+ "E por certo que somos os glorificadores (de Deus).",
+ 167,
+ "Ainda que (os idólatras) digam:",
+ 168,
+ "Se tivéssemos tido alguma mensagem dos primitivos,",
+ 169,
+ "Havíamos de ser sinceros servos de Deus!",
+ 170,
+ "Porém, (quando lhes chegou o Alcorão), negaram-no. Logo saberão!",
+ 171,
+ "Sem dúvida que foi dada a Nossa palavra aos Nossos servos mensageiros,",
+ 172,
+ "De que seriam socorridos.",
+ 173,
+ "E de que os Nossos exércitos sairiam vencedores.",
+ 174,
+ "Afasta-te, pois temporariamente, deles.",
+ 175,
+ "E assevera-lhes que de pronto verão!...",
+ 176,
+ "Pretendem, acaso, apressar o Nosso castigo?",
+ 177,
+ "Porém, quando este descer perante eles, quão péssimo será o despertar dos admoestados!",
+ 178,
+ "E afasta-te, temporariamente, deles.",
+ 179,
+ "E assevera que de pronto verão!...",
+ 180,
+ "Glorificado seja o teu Senhor, o Senhor do Poder, de tudo quanto (Lhe) atribuem.",
+ 181,
+ "E que a paz esteja com os mensageiros!",
+ 182,
+ "E louvado seja Deus, Senhor do Universo!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/38.json b/share/quran-json/TheQuran/pt/38.json
new file mode 100644
index 0000000..dd8bb04
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/38.json
@@ -0,0 +1,189 @@
+[
+ {
+ "id": "38",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Sad",
+ "translated_name": "The Letter \"Saad\"",
+ "verse_count": 88,
+ "slug": "sad",
+ "codepoints": [
+ 1589
+ ]
+ },
+ 1,
+ "Sad. Pelo Alcorão, portador da Mensagem (que isto é a verdade)!",
+ 2,
+ "Porém, os incrédulos estão imbuídos de arrogância e separatismo.",
+ 3,
+ "Quantas gerações aniquilamos, anteriores a eles! Imploram, embora não haja escapatória.",
+ 4,
+ "Assombraram-se (os maquenses) de lhes haver sido apresentado um admoestador de sua graça. E os incrédulos dizem: Este é um mago mendaz.",
+ 5,
+ "Pretende, acaso, fazer de todos os deuses um só Deus? Em verdade, isto é algo assombroso!",
+ 6,
+ "E os chefes se retiraram, dizendo: Ide e perseverai com os vossos deuses! Verdadeiramente, isto é algo designado.",
+ 7,
+ "Não ouvimos coisa igual entre as outras comunidades. Isso não é senão uma ficção!",
+ 8,
+ "Porventura, a Mensagem foi revelada só a ele, dentre nós!? Qual! Eles estão em dúvida, quanto à Minha Mensagem. Porém, ainda não provaram o Meu castigo.",
+ 9,
+ "Possuem, acaso, os tesouros da misericórdia do teu Senhor, o Poderoso, o Liberalíssimo?",
+ 10,
+ "Ou então, é deles o reino dos céus e da terra, e tudo quanto existe entre ambos? Que subam, pois, aos céus.",
+ 11,
+ "Porém lá serão postos em fuga, mesmo com um exército de confederados.",
+ 12,
+ "Antes deles, haviam desmentido: o povo de Noé, o povo de Ad e o Faraó, o senhor das estacas.",
+ 13,
+ "O povo de Samud, o povo de Lot e os habitantes da floresta. Estes são os confederados.",
+ 14,
+ "Cada qual desmentiu os mensageiros, por isso mereceram o Meu castigo.",
+ 15,
+ "E não aguardam estes, senão um só estrondo, que não demorará (a vir).",
+ 16,
+ "E disseram: Ó Senhor nosso, apressa-nos a nossa sentença, antes do Dia da Rendição de Contas!",
+ 17,
+ "Tolera o que dizem e recorda-te do Nosso servo, Davi, o vigoroso, que foi contrito!",
+ 18,
+ "Em verdade, submetemos-lhe as montanhas, para que com ele Nos glorificassem ao anoitecer e ao amanhecer.",
+ 19,
+ "E também lhe congregamos todas as aves, as quais se voltavam a Ele.",
+ 20,
+ "E lhe fortalecemos o império e o agraciamos com a sabedoria e a jurisprudência.",
+ 21,
+ "Conheces a história dos litigantes, que escalaram o muro do oratório?",
+ 22,
+ "Quando apareceram a Davi, que os temeu? então lhe disseram: Não temas, pois somos dois litigantes; um de nós temprejudicado o outro! Julga-nos, portanto, com eqüidade e imparcialidade, e indica-nos a senda justa!",
+ 23,
+ "Este homem é meu irmão; tinha noventa e nove cordeiros e eu um só. E disse-me para confiá-lo a ele, convencendo-mecom a sua verbosidade.",
+ 24,
+ "(David lhe) disse: Verdadeiramente, fraudou-te, com o pedido de acréscimo da tua ovelha; muito sócios se prejudicamuns aos outros, salvo os fiéis, que praticam o bem; porém, quão pouco são! E Davi percebeu que o havíamos submetido auma prova e implorou o perdão de seu Senhor, caiu contrito em genuflexão.",
+ 25,
+ "E lhe perdoamos tal (falta), porque, ante Nós, goza de dignidade e excelente local de retorno.",
+ 26,
+ "Ó Davi, em verdade, designamos-te como legatário na terra, Julga, pois entre os humanos com eqüidade e não teentregues à concupiscência, para que não te desvies da senda de Deus! Sabei que aqueles que se desviam da senda de Deussofrerão um severo castigo, por terem esquecido o Dia da Rendição de Contas.",
+ 27,
+ "E não foi em vão que criamos os céus e a terra, e tudo quanto existe entre ambos! Esta é a conjectura dos incrédulos! Ai, pois, dos incrédulos, por causa do fogo (infernal)!",
+ 28,
+ "Porventura, trataremos os fiéis, que praticam o bem, como os corruptores na terra? Ou então trataremos os tementescomo os ignóbeis?",
+ 29,
+ "(Eis) um Livro Bendito, que te revelamos, para que os sensatos recordem os seus versículos e neles meditem.",
+ 30,
+ "E agraciamos Davi com Salomão. Que excelente servo! Eis que foi contrito!",
+ 31,
+ "Um dia, ao entardecer, apresentam-lhe uns briosos corcéis.",
+ 32,
+ "Ele disse: Em verdade, amo o amor ao bem, com vistas à menção do meu Senhor. Permaneceu admirando-os, até que (osol) se ocultou sob o véu (da noite).",
+ 33,
+ "(Então, ordenou): Trazei-os a mim! E se pôs a acariciar-lhes as patas e os pescoços.",
+ 34,
+ "E pusemos à prova Salomão, colocando sobre o seu trono um corpo sem vida; então, voltou-se contrito.",
+ 35,
+ "Disse: Ó Senhor meu, perdoa-me e concede-me um império que ninguém, além de mim, possa possuir, porque Tu és oAgraciante por excelência!",
+ 36,
+ "E lhe submetemos o vento, que soprava suavemente à sua vontade, por onde quisesse.",
+ 37,
+ "E todos os demônios, alvanéis e mergulhadores disponíveis.",
+ 38,
+ "E outros cingidos por correntes.",
+ 39,
+ "Estes são as Nossas dádivas; prodigalizamo-las, pois, ou restringimo-las, imensuravelmente.",
+ 40,
+ "Eis que ele desfrutará, ante Nós, de dignidade e excelente local de retorno!",
+ 41,
+ "E recorda-te do Nosso servo, Jó, que se queixou ao seu Senhor, dizendo: Satanás me aflige com a desventura e osofrimento!",
+ 42,
+ "(Ordenamos-lhe): Golpeia (a terra) com teu pé! Eis aí um manancial (de água), para banho, refrigério e bebida.",
+ 43,
+ "E lhe restituímos a família, aumentando-a com outro tanto, como prova das Nossas misericórdia e mensagem para ossensatos.",
+ 44,
+ "E apanha um feixe de capim, e golpeia com ele; e não perjures! Em verdade, encontramo-lo perseverante - que excelenteservo! - Ele foi contrito.",
+ 45,
+ "E menciona os Nossos servos Abraão, Isaac e Jacó, possuidores de poder e de visão.",
+ 46,
+ "Escolhemo-los por um propósito: a proclamação da Mensagem da morada futura.",
+ 47,
+ "Em verdade, junto a Nós, contam-se entre os eleitos e preferidos.",
+ 48,
+ "E recorda-lhes Ismael, Eliseu e Ezequiel, uma vez que todos se contavam entre os preferidos.",
+ 49,
+ "Eis aqui uma Mensagem: Sabei que os tementes terão um excelente local de retorno.",
+ 50,
+ "São os Jardins do Éden, cujas portas lhes serão abertas.",
+ 51,
+ "Ali repousarão recostados; ali poderão pedir abundantes frutos e bebidas.",
+ 52,
+ "E junto a eles haverá mulheres castas, restringindo os olhares (companheiras) da mesma idade.",
+ 53,
+ "Eis o que é prometido para o Dia da Rendição de Contas!",
+ 54,
+ "Em verdade, esta é a Nossa inesgotável mercê.",
+ 55,
+ "Tal será! Por outra, os transgressores terão o pior destino:",
+ 56,
+ "O inferno, em que entrarão! E que funesta morada!",
+ 57,
+ "Tal será! E provarão água fervente e ícor!",
+ 58,
+ "E outros suplícios semelhantes!",
+ 59,
+ "Eis o grande grupo, que entrará no fogo conosco!",
+ 60,
+ "(Os prosélitos) dirão: Qual! Mal vindos vós também, por nos haverdes induzido a isto! E que péssima morada (terão)!",
+ 61,
+ "Exclamarão: Ó Senhor nosso, àqueles que nos induziram a isto, duplica-lhes o castigo no fogo infernal!",
+ 62,
+ "E dirão (seus chefes): Por que não vemos, aqui, aqueles homens (os fiéis) que contávamos entre os maldosos?",
+ 63,
+ "Aqueles dos quais escarnecíamos? Ou, acaso, escapam às nossas vistas?",
+ 64,
+ "Por certo que é real a disputa dos réprobos!",
+ 65,
+ "Dize-lhes: Sou tão-somente um admoestador, não há mais divindade além do Único Deus, o Irresistível.",
+ 66,
+ "Senhor dos céus e da terra, e de tudo quanto existe entre ambos; o Poderoso, o Irresistível.",
+ 67,
+ "Dize: Esta é uma notícia sublime,",
+ 68,
+ "Que desdenhais!",
+ 69,
+ "Carecia eu de todo o conhecimento, a respeito dos celícolas, quando disputavam entre si.",
+ 70,
+ "Só me tem sido revelado que sou um elucidativo admoestador.",
+ 71,
+ "Recorda-te de quando o teu Senhor disse aos anjos: De barro criarei um homem.",
+ 72,
+ "Quando o tiver plasmado e alentado com o Meus Espírito, prostrai-vos ante ele.",
+ 73,
+ "E todos os anjos se prostraram, unanimemente.",
+ 74,
+ "Menos Lúcifer, que se ensoberbeceu e se contou entre os incrédulos.",
+ 75,
+ "(Deus lhe) perguntou: Ó Lúcifer, o que te impede de te prostrares ante o que criei com as Minhas Mãos? Acaso, estásensoberbecido ou é que te contas entre os altivos?",
+ 76,
+ "Respondeu: Sou superior a ele; a mim me criaste do fogo, e a ele de barro.",
+ 77,
+ "(Deus lhe) disse: Vai-te daqui, porque és maldito.",
+ 78,
+ "E a Minha maldição pesará sobre ti, até ao Dia do Juízo!",
+ 79,
+ "Disse: Ó Senhor meu, tolera-me, até ao dia em que forem ressuscitados!",
+ 80,
+ "(Deus lhe) disse: Serás, dos tolerados,",
+ 81,
+ "Até ao dia do término prefixado.",
+ 82,
+ "Disse (Satanás): Por Teu poder, que os seduzirei a todos.",
+ 83,
+ "Exceto, entre eles, os Teus servos sinceros!",
+ 84,
+ "Disse-lhe (Deus): Esta é a verdade e a verdade é:",
+ 85,
+ "Certamente que lotarei o inferno contigo e com todos os que, dentre eles, te seguirem.",
+ 86,
+ "Dize-lhes (ó Mohammad): Não vos exijo recompensa alguma por isto, e não me conto entre os simuladores.",
+ 87,
+ "Este (Alcorão) não é mais do que uma Mensagem para o Universo.",
+ 88,
+ "E, certamente, logo tereis conhecimento da sua veracidade."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/39.json b/share/quran-json/TheQuran/pt/39.json
new file mode 100644
index 0000000..15c6c23
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/39.json
@@ -0,0 +1,167 @@
+[
+ {
+ "id": "39",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Az-Zumar",
+ "translated_name": "The Troops",
+ "verse_count": 75,
+ "slug": "az-zumar",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1586,
+ 1605,
+ 1585
+ ]
+ },
+ 1,
+ "A revelação do Livro é de Deus, o Poderoso, o Prudentíssimo.",
+ 2,
+ "Em verdade, temos-te revelado do Livro. Adora, pois, a Deus, com sincera devoção.",
+ 3,
+ "Não deve, porventura, ser dirigida a Deus a devoção sincera? Quando àqueles que adotam protetores, além d'Ele, dizendo: Nós só os adoramos para nos aproximarem de Deus. Ele os julgará, a respeito de tal divergência. Deus nãoencaminha o mendaz, ingrato.",
+ 4,
+ "Se Deus quisesse tomar um filho, tê-lo-ia eleito como Lhe aprouvesse, dentre tudo quanto criou. Glorificado seja! Ele éDeus, o Único, o Irresistibilíssimo.",
+ 5,
+ "Criou com prudência os céus e a terra. Enrola a noite com o dia e enrola a noite com o dia e enrola o dia com a noite. Temsubmetido o sol e a lua: cada qual prosseguirá o seu curso até um término prefixado. Porventura, não é o Poderoso, oIndulgentíssimo?",
+ 6,
+ "Criou-vos de uma só pessoa; então, criou, da mesma, a sua esposa, e vos criou oito espécies de gado. Configura-vospaulatinamente no ventre de vossas mães, entre três trevas. Tal é Deus, vosso Senhor; d'Ele é a soberania. Não há maisdivindade, além d'Ele.",
+ 7,
+ "Se desagradecerdes, (sabei que) certamente Deus pode prescindir de vós, uma vez que Lhe aprazerá. E nenhum pecadorarcará com culpa alheia. Logo, vosso retorno será a vossa Senhor, que vos inteirará do que tiverdes feito, porque é Sabedordos recônditos dos corações.",
+ 8,
+ "E quando a adversidade açoita o homem, este suplica contrito ao seu Senhor; então, quando Ele o agracia com a Suamercê, este esquece o que antes suplicava e atribui rivais a Deus, para desviar outros as Sua senda. Dize-lhe: Desfruta, transitoriamente, da tua blasfêmia, porque te contarás entre os condenados ao inferno!",
+ 9,
+ "Tal homem poderá, acaso, ser equiparado àquele que se consagra (ao seu Senhor) durante as horas da noite, quer estejaprostrado, quer esteja em pé, que se precata em relação à outra vida e espera a misericórdia do seu Senhor? Dize: Poderão, acaso, equiparar-se os sábios com os insipientes? Só os sensatos o acham.",
+ 10,
+ "Dize-lhes: Ó meus servos, fiéis, temei a vosso Senhor! Para aqueles que praticam o bem neste mundo haverá umarecompensa. A terra de Deus é vasta! Aos perseverantes, ser-lhes-ão pagas, irrestritamente as suas recompensas!",
+ 11,
+ "Dize-lhes: Certamente, foi-me ordenado adorar a Deus com sincera devoção.",
+ 12,
+ "E também me foi ordenado ser o primeiro dos muçulmanos.",
+ 13,
+ "Dize-lhes mais: Certamente, temos o castigo do dia terrível, se desobedecer ao meu Senhor.",
+ 14,
+ "Dize (ainda): Adoro a Deus com a minha sincera devoção.",
+ 15,
+ "Adorai, contudo, o que quiserdes, em vez d'Ele! Dize: Certamente, os desventurados serão aqueles que perderem a simesmo, juntamente com as famílias, no Dia da Ressurreição. Não é esta, acaso, a evidente desventura?",
+ 16,
+ "Terão, por cima, camadas de fogo e, por baixo, camadas (de fogo). Com isto Deus previne os Seus servos: Ó servosMeus, temei-Me!",
+ 17,
+ "Mas aqueles que evitarem adorar ao sedutor e se voltarem contritos a Deus, obterão as boas notícias; anuncia, pois, asboas notícias aos Meus servos,",
+ 18,
+ "Que escutam as palavras e seguem o melhor (significado) delas! São aquelas que Deus encaminha, e são os sensatos.",
+ 19,
+ "Porventura, aquele que tiver merecido o decreto do castigo (será igual ao bem-aventurado)? Poderás, acaso, salvar quemestá no fogo (infernal)?",
+ 20,
+ "Porém, os que temerem seu Senhor terão palácios e, além destes, haverá outras construções, abaixo dos quais correm osrios. Tal é a promessa de Deus, e Deus jamais falta à (Sua) promessa!",
+ 21,
+ "Não reparas, na terra? Logo produz, com ela, plantas multicores; logo amadurecem e, às vezes, amarelam; depoisconverte (as plantas) em feno. Por certo que nisto há uma Mensagem para os sensatos.",
+ 22,
+ "Porventura, aquele a quem Deus abriu o coração ao Islam, e está na Luz de seu Senhor... (não é melhor do que aquele aquem sigilou o coração)? Ai daqueles cujos corações estão endurecidos para a recordação de Deus! Estes estão em evidenteerro!",
+ 23,
+ "Deus revelou a mais bela Mensagem: um Livro homogêneo (com estilo e eloqüência), e reiterativo. Por ele, arrepiam-seas peles daqueles que temem seu Senhor; logo, suas peles e seus corações se apaziguam, ante a recordação de Deus. Tal é aorientação de Deus, com a qual encaminha quem Lhe apraz. Por outra, quem Deus desviar não terá orientar algum.",
+ 24,
+ "Porventura, quem tiver temido o castigo afrontoso do Dia da Ressurreição (será igual ao que não o fizer)? E aos iníquosserá dito: Sofrei as conseqüências do que lucrastes!",
+ 25,
+ "Seus antepassados desmentiram os mensageiros e o castigo lhes sobreveio, de onde menos esperavam.",
+ 26,
+ "Deus os fez provar o aviltamento na vida terrena; porém, o castigo da outra vida será maior. Se o soubessem!",
+ 27,
+ "E expomos aos homens, neste Alcorão, toda a espécie de exemplos para que meditem.",
+ 28,
+ "É um Alcorão árabe, irrepreensível; quiçá assim temem a Deus.",
+ 29,
+ "Deus expõe, como exemplo, dois homens: um está a serviço de sócios antagônicos e o outro a serviço de uma só pessoa. Poderão ser equiparados? Louvado seja Deus! Porém, a maioria dos homens ignora.",
+ 30,
+ "É bem verdade que tu morrerás e eles morrerão.",
+ 31,
+ "E, no Dia da Ressurreição, ante vosso Senhor disputareis.",
+ 32,
+ "Haverá alguém mais iníquo do que quem mente acerca de Deus e desmente a Verdade, quando ela lhe chega? Acaso, nãohá lugar, no inferno, para os blasfemos?",
+ 33,
+ "Outrossim, aqueles que apresentarem a verdade e a confirmarem, esses serão os tementes.",
+ 34,
+ "Que obterão o que anelam, na presença do seu Senhor. Tal será a recompensa dos benfeitores,",
+ 35,
+ "Para que Deus lhes absolva o pior de tudo quanto tenham cometido e lhes pague a sua recompensa, de acordo com omelhor que tiverem feito.",
+ 36,
+ "Acaso, não é Deus suficiente Custódio para o Seus servo? Porém, eles tratarão de amedrontar-te com as outrasdivindades, além d'Ele! Mas quem Deus extraviar não terá orientador algum.",
+ 37,
+ "Em troca, a quem Deus encaminhar, ninguém poderá extraviar. Acaso, não é Deus, Justiceiro, Poderosíssimo?",
+ 38,
+ "E se lhes perguntares quem criou os céus e a terra, seguramente te responderão: Deus! Dize-lhes: Tereis reparado nosque invocais, em vez de Deus? Se Deus quisesse prejudicar-me, poderiam, acaso, impedi-Lo? Ou então, se Ele quisessefavorecer-me com alguma graça, poderiam eles privar-me dela? Dize-lhes (mais): Deus me basta! A Ele se encomendamaqueles que estão confiantes.",
+ 39,
+ "Dize-lhes (ainda): Ó povo meu, agi a vosso gosto! Eu também farei (o mesmo)! Logo sabereis,",
+ 40,
+ "A quem açoitará um castigo que o aviltará, fazendo com que tenha um tormento permanente.",
+ 41,
+ "Em verdade, temos-te revelado o Livro, para (instruíres) os humanos. Assim, pois, quem se encaminhar, será embenefício próprio; por outra, quem se desviar, será em seu próprio prejuízo. E tu não és guardião deles.",
+ 42,
+ "Deus recolhe as almas, no momento da morte e, dos que não morreram, ainda (recolhe) durante o sono. Ele retém aquelescujas mortes tem decretadas e deixa em liberdade outros, até um término prefixado. Em verdade, nisto há sinais para ossensatos.",
+ 43,
+ "Adotarão, acaso, intercessores, em vez de Deus? Dize-lhes: Quê! Ainda bem que eles não tenham poder algum, nemrazão alguma?",
+ 44,
+ "Dize-lhes (mais): Só a Deus incumbe toda a intercessão. Seu é o reino dos céus e da terra; logo, a Ele retornareis.",
+ 45,
+ "E quando é mencionado Deus, o Único, repugnam-se os corações daqueles que não crêem na outra vida; não obstante, quando são mencionadas outras divindades, em vez d'Ele, ei-los que se regozijam!",
+ 46,
+ "Dize: Ó Deus, Originador dos céus e da terra, Conhecedor do incognoscível e do cognoscível, Tu dirimirás, entre osTeus servos, as suas divergências!",
+ 47,
+ "Se os iníquos possuíssem tudo quanto existe na terra e outro tanto mais, dá-lo-iam, para se eximirem do horríveltormento no Dia da Ressurreição. (Nesse dia) aparecer-lhes-á, da parte de Deus, o que jamais esperavam.",
+ 48,
+ "E lhes aparecerão as maldades que tiverem cometido, e serão envolvidos por aquilo de que escarneciam.",
+ 49,
+ "Quando a adversidade açoita o homem, eis que Nos implora; então, quando o agraciamos com as Nossas mercês, diz: Certamente que as logrei por meus próprios méritos! Qual! É uma prova! Porém, a maioria dos humanos o ignora.",
+ 50,
+ "Assim falavam também os seus antepassados; porém, de nada lhes valeu tudo quanto haviam lucrado.",
+ 51,
+ "E as maldades que haviam cometido recaíram sobre eles. Assim recairão sobre os iníquos desta (geração) as maldadesque tiverem cometido, e não poderão desafiar (Deus).",
+ 52,
+ "Porventura, ignoram que Ele prodigaliza ou restringe a Sua graça a quem Lhe apraz? Por certo que nisto há sinais para oscrentes.",
+ 53,
+ "Dize: Ó servos meus, que se excederam contra si próprios, não desespereis da misericórdia de Deus; certamente, Eleperdoa todos os pecados, porque Ele é o Indulgente, o Misericordiosíssimo.",
+ 54,
+ "E voltai, contritos, porque, então, não sereis socorridos.",
+ 55,
+ "E observai o melhor do que, de vosso Senhor, vos foi revelado, antes que vos açoite o castigo, subitamente, sem operceberdes.",
+ 56,
+ "Antes que qualquer alma diga: Ai de mim por ter-me descuidado (das minhas obrigações) para com Deus, posto que fuium dos escarnecedores!",
+ 57,
+ "Ou diga: Se Deus me tivesse encaminhado, contar-me-ia entre os tementes!",
+ 58,
+ "Ou diga, quando vir o castigo: Se pudesse Ter outra chance, seria, então, um dos benfeitores!",
+ 59,
+ "(Deus lhe replicará): Qual! Já te haviam chegado os meus versículos. Porém, tu os desmentiste e te ensoberbeceste, efoste um dos incrédulos!",
+ 60,
+ "E, no Dia da Ressurreição, verás aqueles que mentiram acerca de Deus, com os seus rostos ensombreados. Não há, acaso, no inferno, lugar para os arrogantes?",
+ 61,
+ "E Deus salvará os tementes, por seu comportamento, não os açoitará o mal, nem se atribularão.",
+ 62,
+ "Deus é o Criador de tudo e é de tudo o Guardião.",
+ 63,
+ "Suas são as chaves dos céus e da terra; quanto àqueles que negam os versículos de Deus, serão os desventurados.",
+ 64,
+ "Dize: Tereis, porventura, coragem de me ordenar adorar outro, que não seja Deus, ó insipientes?",
+ 65,
+ "Já te foi revelado, assim como aos teus antepassados: Se idolatrares, certamente tornar-se-á sem efeito a tua obra, e tecontarás entre os desventurados.",
+ 66,
+ "Por outra, adora a Deus e sê um dos agradecidos.",
+ 67,
+ "E eles não aquilatam Deus como deveriam! No Dia da Ressurreição, a terra, integralmente, caberá na concavidade deSua Mão, e os céus estarão envolvidos pela Sua mão direita. Glorificado e exaltado seja de tudo quanto Lhe associam!",
+ 68,
+ "E a trombeta soará; e aqueles que estão nos céus e na terra expirarão, com exceção daqueles que Deus queira (conservar). Logo, soará pela segunda vez e, ei-los ressuscitados, pasmados!",
+ 69,
+ "E a terra resplandecerá com a luz do seu Senhor. E o livro (registro das obras) será exposto, e se fará comparecerem osprofetas e as testemunhas, e todos serão julgados com eqüidade, e não serão defraudados.",
+ 70,
+ "E cada alma será recompensada segundo o que tiver feito, porque Ele sabe melhor do que ninguém o que ela fez.",
+ 71,
+ "E os incrédulos serão conduzidos, em grupos, até o inferno, cujas portas, quando chegaram a ele, se abrirão, e os seusguardiães lhes dirão: Acaso, não vos foram apresentados mensageiros de vossa estirpe, que vos ditaram os versículos dovosso Senhor e vos admoestaram acerca do comparecimento deste dia? Dirão: Sim! Então, o decreto do castigo recairásobre os incrédulos.",
+ 72,
+ "Ser-lhes-á ordenado: Adentrai as portas do inferno, onde permanecereis eternamente. Que péssima é a morada dosarrogantes!",
+ 73,
+ "Em troca, os tementes serão conduzidos, em grupos, até ao Paraíso e, lá chegando, abrir-se-ão as suas portas e os seusguardiães lhes dirão: Que a paz esteja convosco! Quão excelente é o que fizestes! Adentrai, pois! Aqui permanecereiseternamente.",
+ 74,
+ "Dirão: Louvado seja Deus, Que cumpriu a Sua promessa, e nos fez herdar a terra. Alojar-nos-emos no Paraíso ondequisermos. Quão excelente é a recompensa dos caritativos!",
+ 75,
+ "E verás os anjos circundando o Trono Divino, celebrando os louvores do seu Senhor. E todos serão julgados comeqüidade, e será dito: Louvado seja Deus, Senhor do Universo!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/4.json b/share/quran-json/TheQuran/pt/4.json
new file mode 100644
index 0000000..8e5c466
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/4.json
@@ -0,0 +1,370 @@
+[
+ {
+ "id": "4",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "An-Nisa",
+ "translated_name": "The Women",
+ "verse_count": 176,
+ "slug": "an-nisa",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1587,
+ 1575,
+ 1569
+ ]
+ },
+ 1,
+ "Ó humanos, temei a vosso Senhor, que vos criou de um só ser, do qual criou a sua companheira e, de ambos, fezdescender inumeráveis homens e mulheres. Temei a Deus, em nome do Qual exigis os vossos direitos mútuos e reverenciaios laços de parentesco, porque Deus é vosso Observador.",
+ 2,
+ "Concedei aos órfãos os seus patrimônios; não lhes substituais o bom pelo mau, nem absorvais os seus bens com osvossos, porque isso é um grave delito.",
+ 3,
+ "Se temerdes ser injustos no trato com os órfãos, podereis desposar duas, três ou quatro das que vos aprouver, entre asmulheres. Mas, se temerdes não poder ser eqüitativos para com elas, casai, então, com uma só, ou conformai-vos com o quetender à mão. Isso é o mais adequado, para evitar que cometais injustiças.",
+ 4,
+ "Concedei os dotes que pertencem às mulheres e, se for da vontade delas conceder-vos algo, desfrutai-o com bomproveito.",
+ 5,
+ "Não entregueis aos néscios o vosso patrimônio, cujo manejo Deus vos confiou, mas mantende-os, vesti-os e tratai-oshumanamente, dirigindo-vos a eles com benevolência.",
+ 6,
+ "Custodiai os órfãos, até que cheguem a idades núbeis. Se porventura observardes amadurecimento neles, entregai-lhes, então, os patrimônios; porém, abstende-vos de consumi-los desperdiçada e apressadamente, (temendo) que alcancem amaioridade. Quem for rico, que se abstenha de usá-los; mas, quem for pobre, que disponha deles com moderação.",
+ 7,
+ "Aos filhos varões corresponde uma parte do que tenham deixado os seus pais e parentes. Às mulheres tambémcorresponde uma parte do que tenham deixado os pais e parentes, quer seja exígua ou vasta - uma quantia obrigatória.",
+ 8,
+ "Quando os parentes (que não herdeiros diretos), os órfãos e os necessitados estiverem presente, na partilha da herança, concedei-lhes algo dela e tratai-os humanamente, dirigindo-vos a eles com bondade.",
+ 9,
+ "Que (os que estão fazendo a partilha) tenham o mesmo temor em suas mentes, como se fossem deixar uma famíliadesamparada atrás de si. Que temam a Deus e digam palavras apropriadas.",
+ 10,
+ "Porque aqueles que malversarem o patrimônio dos órfãos, introduzirão fogo em suas entranhas e entrarão no Tártaro.",
+ 11,
+ "Deus vos prescreve acerca da herança de vossos filhos: Daí ao varão a parte de duas filhas; se apenas houver filhas, eestas forem mais de duas, corresponder-lhes-á dois terços do legado e, se houver apenas uma, esta receberá a metade. Quanto aos pais do falecido, a cada um caberá a sexta parte do legado, se ele deixar um filho; porém, se não deixar, prole ea seus pais corresponder a herança, à mãe caberá um terço; mas se o falecido tiver irmãos, corresponderá à mãe um sexto, depois de pagas as doações e dívidas. É certo que vós ignorais quais sejam os que estão mais próximos de vós, quanto aobenefício, quer sejam vossos pais ou vossos filhos. Isto é uma prescrição de Deus, porque Ele é Sapiente, Prudentíssimo.",
+ 12,
+ "De tudo quanto deixarem as vossas esposas, corresponder-vos-á a metade, desde que elas não tenham tido prole; porém, se a tiverem, só vos corresponderá a quarta parte de tudo quanto deixardes, se não tiverdes prole; porém, se a tiverdes, sólhes corresponderá a oitava parte de tudo quanto deixardes, depois de pagas as doações e dívidas. Se um falecido, homemou mulher, em estado de Kalala, deixar herança e tiver um irmão ou uma irmã, receberá cada um deles, a sexta parte; porém, se forem mais, co-herdarão a terça parte, depois de pagas as doações e dívidas, sem prejudicar ninguém. Isto é umaprescrição de Deus, porque Ele é Tolerante, Sapientíssimo.",
+ 13,
+ "Tais são os preceitos de Deus. Àqueles que obedecerem a Deus e ao Seu Mensageiro, Ele os introduzirá em jardins, abaixo dos quais correm os rios, onde morarão eternamente. Tal será o magnífico benefício.",
+ 14,
+ "Ao contrário, quem desobedecer a Deus e ao Seu Mensageiro, profanando os Seus preceitos, Ele o introduzirá no fogoinfernal, onde permanecerá eternamente, e sofrerá um castigo ignominioso.",
+ 15,
+ "Quanto àquelas, dentre vossas mulheres, que tenham incorrido em adultério, apelai para quatro testemunhas, dentre osvossos e, se estas o confirmarem, confinai-as em suas casas, até que lhes chegue a morte ou que Deus lhes trace um novodestino.",
+ 16,
+ "E àqueles, dentre vós, que o cometerem (homens e mulheres), puni-os; porém, caso se arrependam e se corrijam, deixai-os tranqüilos, porque Deus é Remissório, Misericordiosíssimo.",
+ 17,
+ "A absolvição de Deus recai tão-somente sobre aqueles que cometem um mal, por ignorância, e logo se arrependem. Aesses, Deus absolve, porque é Sapiente, Prudentíssimo.",
+ 18,
+ "A absolvição não alcançará aqueles que cometerem obscenidades até à hora da morte, mesmo que nessa hora alguém, dentre eles, diga: Agora me arrependo. E tampouco alcançará os que morrerem na incredulidade, pois para eles destinamosum doloroso castigo.",
+ 19,
+ "Ó fiéis, não vos é permitido herdar as mulheres, contra a vontade delas, nem as atormentar, com os fim de vosapoderardes de uma parte daquilo que as tenhais dotado, a menos que elas tenham cometido comprovada obscenidade. Eharmonizai-vos entre elas, pois se as menosprezardes, podereis estar depreciando seres que Deus dotou de muitas virtudes.",
+ 20,
+ "Se desejardes trocar da esposa, tendo-a dotado com um quintal, não lho diminuais em nada. Tomá-lo-íeis de volta, comuma falsa imputação e um delito flagrante?",
+ 21,
+ "E como podeis tomá-lo de volta depois de haverdes convivido com elas íntima e mutuamente, se elas tiveram, de vós, um compromisso solene?",
+ 22,
+ "Não vos caseis com as mulheres que desposaram os vosso pais - salvo fato consumado (anteriormente) - porque é umaobscenidade, uma abominação e um péssimo exemplo.",
+ 23,
+ "Está-vos vedado casar com: vossas mães, vossas filhas, vossas irmãs, vossas tias paternas e maternas, vossas sobrinhas, vossas nutrizes, vossas irmãs de leite, vossas sogras, vossas enteadas, as que estão sob vossa tutela - filhas das mulherescom quem tenhais coabitado; porém, se não houverdes tido relações com elas, não sereis recriminados por desposá-las. Também vos está vedado casar com as vossas noras, esposas dos vossos filhos carnais, bem como unir-vos, em matrimônio, com duas irmãs - salvo fato consumado (anteriormente) -; sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 24,
+ "Também vos está vedado desposar as mulheres casadas, salvo as que tendes à mão. Tal é a lei que Deus vos impõe. Porém, fora do mencionado, está-vos permitido procurar, munidos de vossos bens, esposas castas e não licenciosas. Dotaiconvenientemente aquelas com quem casardes, porque é um dever; contudo, não sereis recriminados, se fizerdes oureceberdes concessões, fora do que prescreve a lei, porque Deus é Sapiente, Prudentíssimo.",
+ 25,
+ "E quem, dentre vós, não possuir recursos suficientes para casar-se com as fiéis livres, poderá fazê-lo com uma crédula, dentre vossas cativas fiéis, porque Deus é Quem melhor conhece a vossa fé - procedeis uns dos outros; casai com elas, coma permissão dos seus amos, e dotai-as convenientemente, desde que sejam castas, não licenciosas e não tenham amantes. Contudo, uma vez casadas, e incorrerem em adultério, sofrerão só a metade do castigo que corresponder às livres; isso, paraquem de vós temer cair em pecado. Mas se esperardes, será melhor; sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 26,
+ "Deus tenciona elucidar-vos os Seus preceitos, iluminar-vos, segundo as tradições do vossos antepassados, eabsolver-vos, porque é Sapiente, Prudentíssimo.",
+ 27,
+ "Deus deseja absolver-vos; porém, os que seguem os desejos vãos anseiam vos desviar profundamente.",
+ 28,
+ "E Deus deseja aliviar-vos o fardo, porque o homem foi criado débil.",
+ 29,
+ "Ó fiéis,, não consumais reciprocamente os vossos bens, por vaidades, realizai comércio de mútuo consentimento e nãocometais suicídio, porque Deus é Misericordioso para convosco.",
+ 30,
+ "Àquele que tal fizer, perversa e iniquamente, introduzi-lo-emos no fogo infernal, porque isso é fácil a Deus.",
+ 31,
+ "Se evitardes os grandes pecados, que vos estão proibidos, absorver-vos-emos das vossas faltas e vos proporcionaremosdigna entrada (no Paraíso).",
+ 32,
+ "Não ambicioneis aquilo com que Deus agraciou uns, mais do que aquilo com que (agraciou) outros, porque aos homenslhes corresponderá aquilo que ganharem; assim, também as mulheres terão aquilo que ganharem. Rogai a Deus que vosconceda a Sua graça, porque Deus é Onisciente.",
+ 33,
+ "A cada qual instituímos a herança de uma parte do que tenham deixado seus pais e parentes. Concedei, a quem vossasmãos se comprometeram, o seu quinhão, porque Deus é testemunha de tudo.",
+ 34,
+ "Os homens são os protetores das mulheres, porque Deus dotou uns com mais (força) do que as outras, e pelo o seusustento do seu pecúlio. As boas esposas são as devotas, que guardam, na ausência (do marido), o segredo que Deusordenou que fosse guardado. Quanto àquelas, de quem suspeitais deslealdade, admoestai-as (na primeira vez), abandonai osseus leitos (na segunda vez) e castigai-as (na terceira vez); porém, se vos obedecerem, não procureis meios contra elas. Sabei que Deus é Excelso, Magnânimo.",
+ 35,
+ "E se temerdes desacordo entre ambos (esposo e esposa), apelai para um árbitro da família dele e outro da dela. Seambos desejarem reconciliar-se, Deus reconciliará, porque é Sapiente, Inteiradíssimo.",
+ 36,
+ "Adorai a Deus e não Lhe atribuais parceiros. Tratai com benevolência vossos pais e parentes, os órfãos, osnecessitados, o vizinho próximo, o vizinho estranho, o companheiro, o viajante e os vossos servos, porque Deus não estimaarrogante e jactancioso algum.",
+ 37,
+ "Quanto àqueles que são avarentos e recomendam aos demais a avareza, e ocultam o que Deus lhes concedeu da Suagraça, saibam que destinamos um castigo ignominioso para os incrédulos.",
+ 38,
+ "(Tampouco Deus aprecia) os que distribuem ostensivamente os seus bens e não crêem em Deus, nem no Dia do JuízoFinal, além de terem Satanás por companheiro. Que péssimo companheiro!",
+ 39,
+ "Que teriam eles a temer, se cressem em Deus e no Dia do Juízo Final, e fizessem caridade, com aquilo com que Deus osagraciou, uma vez que Deus bem os conhece?",
+ 40,
+ "Deus não frustará ninguém, nem mesmo no equivalente ao peso de um átomo; por outra, multiplicará toda a boa ação econcederá, de Sua parte, uma magnífica recompensa.",
+ 41,
+ "Que será deles, quando apresentarmos uma testemunha de cada nação e te designarmos (ó Mohammad) testemunha contraeles?",
+ 42,
+ "Nesse dia, os incrédulos, que desobedeceram ao Mensageiro, ansiarão para que sejam nivelados com a terra, massaibam que nada podem ocultar de Deus.",
+ 43,
+ "Ó fiéis, não vos deis à oração, quando vos achardes ébrios, até que saibais o que dizeis, nem quando estiverdes polutospelo dever conjugal - salvo se vos achardes em viagem -, até que vos tenhais higienizado. Se estiverdes enfermos ou emviagem, ou se algum de vós acabar de fazer a sua necessidade, ou se tiverdes contato com mulheres, sem terdes encontradoágua, recorrei à terra limpa e passai (as mão com a terra) em vossos rostos e mãos; sabei que Deus é Remissório, Indulgentíssimo.",
+ 44,
+ "Não tens reparado naqueles que foram agraciados com uma parte do Livro e trocam a retidão pelo erro, procurandodesviar-vos da senda reta?",
+ 45,
+ "Entretanto, Deus conhece, melhor do que ninguém, os vossos inimigos. Basta Deus por Protetor, e basta Deus porSocorredor.",
+ 46,
+ "Entre os judeus, há aqueles que deturpam as palavras, quanto ao seu significado. Dizem: Ouvimos e nos rebelamos. Dizem ainda: \"Issmah ghaira mussmaen, wa ráina, distorcendo-lhes, assim, os sentidos, difamando a religião. Porém, setivessem dito: Ouvimos e obedecemos. Escuta-nos e digna-nos com a Tua atenção (\"anzurna\" em vez de \"Ráina\"), teria sidomelhor e mais propício para eles. Porém, Deus os amaldiçoa por sua perfídia, porque não crêem, senão pouquíssimos deles.",
+ 47,
+ "Ó adeptos do Livro, crede no que vos revelamos, coisa que bem corrobora o que tendes, antes que desfiguremos os rostode alguns, ou que os amaldiçoemos, tal como amaldiçoamos os profanadores do sábado, para que a sentença de Deus sejaexecutada!",
+ 48,
+ "Deus jamais perdoará a quem Lhe atribuir parceiros; porém, fora disso, perdoa a quem Lhe apraz. Quem atribuirparceiros a Deus cometerá um pecado ignominioso.",
+ 49,
+ "Não reparaste naqueles que se jactam de puros? Qual! Deus purifica quem Lhe apraz e não os frustra, no mínimo queseja.",
+ 50,
+ "Olha como forjam mentiras acerca de Deus! Isso, só por si só, é um verdadeiro delito.",
+ 51,
+ "Não reparaste naqueles que foram agraciados com uma parte do Livro? Crêem em feitiçaria e no sedutor, e dizem dosincrédulos: Estes estão mais bem encaminhados do que os fiéis.",
+ 52,
+ "São aqueles a quem Deus amaldiçoou e, a quem Deus amaldiçoar, jamais encontrará socorredor.",
+ 53,
+ "Possuem, acaso, uma parte do domínio? Se a possuíssem, dela não dariam a seus semelhantes, nem a mais ínfimapartícula.",
+ 54,
+ "Ou invejam seus semelhantes por causa do que Deus lhes concedeu de Sua graça? Já tínhamos concedido à família deAbraão o Livro, a sabedoria, além de lhe proporcionarmos um poderoso reino.",
+ 55,
+ "Entre eles, há os que nele acreditaram, bem como os que repudiaram. E o inferno é suficiente como Tártaro.",
+ 56,
+ "Quanto àqueles que negam os Nossos versículos, introduzi-los-emos no fogo infernal. Cada vez que a sua pele se tiverqueimado, trocá-la-emos por outra, para que experimentem mais e mais o suplício. Sabei que Deus é Poderoso, Prudentíssimo.",
+ 57,
+ "Quanto aos fiéis, que praticam o bem, introduzi-lo-emos em jardins, abaixo dos quais correm rios, onde morarãoeternamente, onde terão esposas imaculadas, e os faremos desfrutar de uma densa sombra.",
+ 58,
+ "Deus manda restituir a seu dono o que vos está confiado; quando julgardes vossos semelhantes, fazei-o eqüidade. Quãoexcelente é isso a que Deus vos exorta! Ele é Oniouvinte, Onividente.",
+ 59,
+ "Ó fiéis, obedecei a Deus, ao Mensageiro e às autoridades, dentre vós! Se disputardes sobre qualquer questão, recorrei aDeus e ao Mensageiro, se crerdes em Deus e no Dia do Juízo Final, porque isso vos será preferível e de melhor alvitre.",
+ 60,
+ "Não reparaste naqueles que declaram que crêem no que te foi revelado e no que foi revelado antes de ti, recorrendo, emseus julgamentos, ao sedutor, sendo que lhes foi ordenado rejeitá-lo? Porém, Satanás quer desviá-los profundamente.",
+ 61,
+ "E quando lhes for dito: Aproximai-vos do que Deus revelou, e do Mensageiro! Verás os hipócritas afastarem-se de tidesdenhosamente.",
+ 62,
+ "Que será deles, quando os açoitar um infortúnio, por causa do que cometeram as suas mãos? Então, recorrerão a ti, julgando por Deus e clamando: Só temos ansiado o bem e a concórdia.",
+ 63,
+ "São aqueles, cujos segredos dos corações Deus bem conhece. Evita-os, porém exorta-os e fala-lhes com palavras queinvadam os seus ânimos.",
+ 64,
+ "Jamais enviaríamos um mensageiro que não devesse ser obedecido, com a anuência de Deus. Se, quando se condenaram, tivessem recorrido a ti e houvessem implorado o perdão de Deus, e o Mensageiro tivesse pedido perdão por eles, encontrariam Deus, Remissório, Misericordiosíssimo.",
+ 65,
+ "Qual! Por teu Senhor, não crerão até que te tomem por juiz de suas dissensões e não objetem ao que tu tenhassentenciado. Então, submeter-se-ão a ti espontaneamente.",
+ 66,
+ "Porém, se lhes tivéssemos prescrito: Sacrificai-vos e abandonai os vossos lares!, não o teriam feito, senão poucos deles. Porém, se tivessem feito o que lhes foi prescrito, quão melhor teria sido para eles e para o fortalecimento (da sua fé).",
+ 67,
+ "E, então, ter-lhes-íamos concedido a Nossa magnífica recompensa.",
+ 68,
+ "E tê-los-íamos encaminhado pela senda reta.",
+ 69,
+ "Aqueles que obedecem a Deus e ao Mensageiro, contar-se-ão entre os agraciados por Deus: profetas, verazes, mártires evirtuosos. Que excelentes companheiros serão!",
+ 70,
+ "Tal é a benignidade de Deus. E basta Deus, Que é Sapientíssimo.",
+ 71,
+ "Ó fiéis, ficai prevenidos contra o adversário, e avançai por destacamentos, ou avançai em massa.",
+ 72,
+ "Entre vós, há alguns retardatários que, ao tomarem conhecimento de que sofrestes um revés, dizem: Deus nos agraciou, por não estarmos presentes, com eles.",
+ 73,
+ "Porém, se vos chegasse uma graça de Deus, diriam, como se não existisse vínculo algum entre vós e eles: Oxalátivéssemos estado com eles, assim teríamos logrado um magnífico benefício!",
+ 74,
+ "Que combatam pela causa de Deus aqueles dispostos a sacrificar a vida terrena pela futura, porque a quem combaterpela causa de Deus, quer sucumba, quer vença, concederemos magnífica recompensa.",
+ 75,
+ "E o que vos impede de combater pela causa de Deus e dos indefesos, homens, mulheres e crianças? que dizem: Ó Senhornosso, tira-nos desta cidade (Makka), cujos habitantes são opressores. Designa-nos, de Tua parte, um protetor e umsocorredor!",
+ 76,
+ "OS fiéis combatem pela causa de Deus; os incrédulos, ao contrário, combatem pela do sedutor. Combatei, pois, osaliados de Satanás, porque a angústia de Satanás é débil.",
+ 77,
+ "Não reparaste naqueles, aos quais foi dito: Contende as vossas mãos, observai a oração e pagai o zakat? Mas quandolhes foi prescrita a luta, eis que grande parte deles temeu as pessoas, tanto ou mais que a Deus, dizendo: Ó Senhor nosso, porque nos prescreves a luta? Por que não nos concedes um pouco mais de trégua? Dize-lhes: O gozo terreno é transitório; emverdade, o da outra vida é preferível para o temente; sabei que não sereis frustrados, no mínimo que seja.",
+ 78,
+ "Onde quer que vos encontrardes, a morte vos alcançará, ainda que vos guardeis em fortalezas inexpugnáveis. (Quantoaos hipócritas), se os alcança uma ventura, dizem: Isto provém de ti. Dize-lhes: Tudo emana de Deus! Que sucede a estagente, que não compreende o que lhe é dito?",
+ 79,
+ "Toda a ventura que te ocorra (ó homem) emana de Deus; mas toda a desventura que te açoita provém de ti. Enviamos-te (ó Mohammad) como Mensageiro da humanidade, e Deus é suficiente testemunha disto.",
+ 80,
+ "Quem obedecer ao Mensageiro obedecerá a Deus; mas quem se rebelar, saiba que não te enviamos para lhes seresguardião.",
+ 81,
+ "Eles juram-te obediência! Porém, quando se retiram da tua presença, uma parte deles planeja, durante a noite, fazer ocontrário do que disseste. Mas (a verdade é que) Deus registra tudo quanto, durante a noite, confabulam. Opõe-te, pois, a elee encomenda-te a Deus, porque Ele é para ti suficiente Guardião.",
+ 82,
+ "Não meditam, acaso, no Alcorão? Se fosse de outra origem, que não de Deus, haveria nele muitas discrepâncias.",
+ 83,
+ "Ao tomarem (os hipócritas) conhecimento de qualquer rumor, quer seja de tranqüilidade ou de temor, divulgam-noespalhafatosamente. Porém, se o transmitissem ao Mensageiro ou às suas autoridades, os discernidores, entre eles, saberiamanalisá-lo. Não fosse pela graça de Deus e pela Sua misericórdia para convosco, salvo poucos, teríeis todos seguidoSatanás.",
+ 84,
+ "Luta, pois, pela causa de Deus, porque tu és somente responsável por ti mesmo; e esforça-te em estimular os fiéis; quisesse Deus, conteria a fúria dos incrédulos, porque Deus é mais poderoso, ainda, e mais punidor.",
+ 85,
+ "Quem interceder em favor de uma causa nobre participará dela; por outra, quem interceder em favor de um ignóbilprincípio, igualmente participará dele; e Deus tem poder sobre tudo.",
+ 86,
+ "Quando fordes saudados cortesmente, respondei com cortesia maior ou, pelo menos, igual, porque Deus leva em contatodas as circunstâncias.",
+ 87,
+ "Deus! Não há mais divindade além d'Ele! Ele vos congregará para o indubitável Dia da Ressurreição. Quem é mais lealdo que Deus, quanto ao que diz?",
+ 88,
+ "Por que vos dividistes em dois grupos a respeito dos hipócritas, uma vez que Deus os reprovou pelo que perpetraram? Pretendeis orientar quem Deus Desvia? Jamais encontrarás senda alguma para aquele a quem Deus desvia.",
+ 89,
+ "Anseiam (os hipócritas) que renegueis, como renegaram eles, para que sejais todos iguais. Não tomeis a nenhum delespor confidente, até que tenham migrado pela causa de Deus. Porém, se se rebelarem, capturai-os então, matai-os, onde querque os acheis, e não tomeis a nenhum deles por confidente nem por socorredor.",
+ 90,
+ "Exceto àqueles que se refugiarem em um povo, entre o qual e vós exista uma aliança, ou os que, apresentando-se a vós, estejam em dúvida quanto ao combater-vos ou combater a sua própria gente. Se Deus tivesse querido, tê-los-ia feitoprevalecer sobre vós e, seguramente, ter-vos-iam combatido; porém, se eles se retirarem, não vos combaterem e vospropuserem a paz, sabei que Deus não vos faculta combatê-los.",
+ 91,
+ "Encontrareis outros que intentarão ganhar a vossa confiança, bem como a de seu povo. Toda a vez que forem chamados àintriga, nela sucumbirão. Se não ficarem neutros, em relação a vós, nem vos propuserem a paz, nem tampouco contiverem assuas mãos, capturai-os e matai-os, onde quer que os acheis, porque sobre isto vos concedemos autoridade absoluta.",
+ 92,
+ "Não é dado, a um fiel, matar outro fiel, salvo involuntariamente; e quem, por engano, matar um fiel, deverá libertar umescravo fiel e pagar compensação à família do morto, a não ser que esta se disponha a perdoá-lo. Se (a vítima) for fiel, deum povo adversário do vosso, impõe-se a libertação de um escravo fiel; porém, se pertence a um povo aliado, impõe-se opagamento de uma indenização à família e a manumissão de um escravo fiel. Contudo, quem não estiver em condições defazê-lo, deverá jejuar dois meses consecutivos, como penitência imposta por Deus, porque Ele é Sapiente, Prudentíssimo.",
+ 93,
+ "Quem matar, intencionalmente, um fiel, seu castigo será o inferno, onde permanecerá eternamente. Deus o abominará, amaldiçoá-lo-á e lhe preparará um severo castigo.",
+ 94,
+ "Ó fiéis, quando viajardes pela causa de Deus, sede ponderados; não digais, a quem vos propõe a paz: Tu não é fiel - como intento de auferirdes (matando-o e despojando-o) a transitória fortuna da vida terrena. Sabei que Deus vos tem reservadonumerosas fortunas. Vós éreis como eles, em outros tempos; porém Deus voa agraciou (com o Islam). Meditai, pois, porqueDeus está bem inteirado de tudo quanto fazeis.",
+ 95,
+ "Os fiéis, que, sem razão fundada, permanecem em suas casas, jamais se equiparam àqueles que sacrificam os seus bens esuas vidas pela causa de Deus; Ele concede maior dignidade àqueles que sacrificam os seus bens e suas vidas do que aosque permanecem (em suas casas). Embora Deus prometa a todos (os fiéis) o bem, sempre confere aos combatentes umarecompensa superior à dos que permanecem (em suas casas).",
+ 96,
+ "Graduação, indulgência e misericórdia são concedidas por Ele, porque Deus é Indulgente, Misericordiosíssimo.",
+ 97,
+ "Aqueles a quem os anjos arrancarem a vida, em estado de iniqüidade, dizendo: Em que condições estáveis? Dirão: Estávamos subjulgados, na terra (de Makka). Dir-lhes-ão os anjos: Acaso, a terra de Deus não era bastante ampla para quemigrásseis? Tais pessoas terão o inferno por morada. Que péssimo destino!",
+ 98,
+ "Excetuam-se os inválidos, quer sejam homens, mulheres ou crianças. Que carecem de recursos ou não podemencaminhar-se por senda alguma.",
+ 99,
+ "A estes, quiçá Deus os indulte, porque é Remissório, Indulgentíssimo.",
+ 100,
+ "Mas quem migrar pela causa de Deus, achará, na terra, amplos e espaçosos refúgios. E quem abandonar seu lar, migrando pela causa de Deus e de Seu Mensageiro, e for surpreendido pela morte, sua recompensa caberá à Deus, porque éIndulgente, Misericordiosíssimo.",
+ 101,
+ "Quanto viajantes pela terra não sereis recriminados por abreviardes as orações, temendo que vos ataquem osincrédulos; em verdade, eles são vossos inimigos declarados.",
+ 102,
+ "Quando estiveres entre eles e os convocares a observarem a oração (ó Mensageiro), que uma parte deles tome de suasarmas e a pratique contigo; e, quando se prostrarem, que a outra se poste na retaguarda; ao concluírem, que se retire e seponha de guarda e suceda-lhe a parte que não tiver orado, ainda, e que reze contigo. Que não precavenham e levem suasarmas, porque os incrédulos ansiarão para que negligencieis as vossas armas e provisões, a fim de vos atacarem desurpresa. Tampouco sereis recriminados se depuserdes as armas quando a chuva a isso vos obriga, ou estiverdes enfermos; mas tomai vossas precauções. Sem dúvida, Deus destina aos incrédulos um castigo ignominioso.",
+ 103,
+ "E quando tiverdes concluído a oração, mencionai Deus, quer estejais de pé, sentados, ou deitados. Porém, quandoestiverdes fora de perigo, observai a devida oração, porque ela é uma obrigação, prescrita aos fiéis para ser cumprida emseu devido tempo.",
+ 104,
+ "E não desfaleçais na perseguição ao inimigo; porque, se sofrerdes, eles sofrerão tanto quanto vós; porém, vós podeisesperar de Deus o que eles não esperam; sabei que Deus é Sapiente, Prudentíssimo.",
+ 105,
+ "Realmente, revelamos-te o Livro, a fim de que julgues entre os humanos, segundo o que Deus te ensinou. Não sejasdefensor dos pérfidos.",
+ 106,
+ "Implora o perdão de Deus, porque Ele é Indulgente, Misericordiosíssimo.",
+ 107,
+ "Não advogues por aqueles que enganaram a si mesmos, porque Deus não aprecia o pérfido, pecador.",
+ 108,
+ "Eles se ocultam das pessoas, não podendo, contudo, ocultar-se de Deus, porque Deus está pressente, com eles, quando, à noite, discorrem sobre o que Ele desagrada. Deus está inteirado de tudo quanto fazem.",
+ 109,
+ "Eis que vós, na vida terrena, advogastes por eles. Quem advogará por eles, ante Deus, no Dia da Ressurreição ou quemserá seu defensor?",
+ 110,
+ "E quem cometer uma má ação ou se condenar e, em seguida (arrependido), implorar o perdão de Deus, sem dúvidaachá-Lo-á Indulgente, Misericordiosíssimo.",
+ 111,
+ "Quem cometer um pecado, fá-lo-á em prejuízo próprio, porque Deus é Sapiente, Prudentíssimo.",
+ 112,
+ "Quem cometer uma fala ou um pecado, e os imputar a um inocente, sobrecarregar-se-á com uma falsa imputação e umdelito fragrante.",
+ 113,
+ "Não fosse pela graça de Deus e por Sua misericórdia para contigo, uma parte deles teria conseguido desviar-te, quandocom isso não fariam mais do que desviarem-se a si mesmos, sendo que em nada poderiam prejudicar-te. Deus revelou-te oLivro e a prudência e ensinou-te o que ignoravas, porque a Sua graça para contigo é infinita.",
+ 114,
+ "Não há utilidade alguma na maioria dos seus colóquios, salvo nos que recomendam a caridade, a benevolência e aconcórdia entre os homens. A quem assim proceder, com a intenção de comprazer a Deus, agraciá-lo-emos com umamagnífica recompensa.",
+ 115,
+ "A quem combater o Mensageiro, depois de haver sido evidenciada a Orientação, seguindo outro caminho que não o dosfiéis, abandoná-lo-emos em seu erro e introduziremos no inferno. Que péssimo destino!",
+ 116,
+ "Deus jamais perdoará quem Lhe atribuir parceiros, conquanto perdoe os outros pecados, a quem Lhe apraz. Quematribuir parceiros a Deus desviar-se-á profundamente.",
+ 117,
+ "Não invocam, em vez d'Ele, a não ser deidades femininas, e, com isso invocam o rebelde Satanás,",
+ 118,
+ "Que Deus amaldiçoou. Ele (Satanás) disse: Juro que me apoderarei de uma parte determinada dos Teus servos,",
+ 119,
+ "A qual desviarei, fazendo-lhes falsas promessas. Ordenar-lhes-ei cercear as orelhas do gado e os incitarei a desfigurara criação de Deus! Porém, quem tomar Satanás por protetor, em vez de Deus, Ter-se-á perdido manifestamente,",
+ 120,
+ "Porquanto (ele) lhes promete e os ilude; entretanto, as promessas de Satanás só causam decepções.",
+ 121,
+ "A morada deles será o inferno, do qual não acharão escapatória.",
+ 122,
+ "Quanto aos fiéis, que praticam o bem, introduzi-los-emos em jardins, abaixo dos quais correm rios, onde morarãoeternamente. A promessa de Deus é inexorável. E quem é mais leal do que Deus no que assevera?",
+ 123,
+ "(Isso) não é segundo os vossos desejos, nem segundo os desejos dos adeptos do Livro. Quem cometer algum malreceberá o que tiver merecido e, afora Deus, não achará protetor, nem defensor.",
+ 124,
+ "Aqueles que praticarem o bem, sejam homens ou mulheres, e forem fiéis, entrarão no Paraíso e não serão defraudados, no mínimo que seja.",
+ 125,
+ "E quem melhor professa a religião do que quem se submete a Deus, é praticante do bem e segue a crença de Abraão, omonoteísta? (O Próprio) Deus elegeu Abraão por fiel amigo.",
+ 126,
+ "A Deus pertence tudo quanto há nos céus e na terra; e Deus abrange todas as coisas.",
+ 127,
+ "Consultar-te-ão acerca das mulheres; dize-lhes: Deus vos instruiu a respeito delas, assim como acerca do que vos éditado no Livro, referente às mulheres órfãos, às quais não entregais o que lhes é destinado, embora tencioneis desposá-las; o mesmo (diga-se), com relação às crianças que são oprimidas. Sede justos para com os órfãos. Sabei que de tudo o bemque fizerdes, Deus estará inteirado.",
+ 128,
+ "Se uma mulher notar indiferença ou menosprezo por parte de seu marido, não há mal em se reconciliaremamigavelmente, porque a concórdia é o melhor, apesar de o ser humano, por natureza, ser propenso à avareza. Se praticardeso bem e temerdes a Deus, sabei que Deus está bem inteirado de tudo quanto fazeis.",
+ 129,
+ "Não podereis, jamais, ser eqüitativos com vossas esposas, ainda que nisso vos empenheis. Por essa razão, nãodeclineis demasiadamente uma delas, deixando-a como se estivesse abandonada; porém, se vos reconciliardes e temerdes, sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 130,
+ "Todavia, se eles se separarem, Deus enriquecerá cada qual da Sua abundância, porque é Munificente, Prudentíssimo.",
+ 131,
+ "A Deus pertence tudo quanto há nos céus e na terra. Tínhamos recomendado àqueles a quem foi concedido o Livro, antes de vós, assim como também a vós, que temêsseis a Deus; porém, se o renegardes, sabei que a Deus pertence tudoquanto há nos céus e na terra. Deus é sempre Absoluto, Laudabilíssimo.",
+ 132,
+ "A Deus pertence tudo quanto há nos céus e na terra; e Ele é suficiente Guardião.",
+ 133,
+ "Ó humanos, se Ele quisesse, far-vos-ia desaparecer e vos substituiria por outros seres, porque Deus tem bastante poderpara isso.",
+ 134,
+ "Quem ansiar pela recompensa deste mundo saiba que Deus possui tanto a recompensa deste mundo, como do outro, poisé Oniouvinte, Onividente.",
+ 135,
+ "Ó fiéis, sede firmes em observardes a justiça, atuando de testemunhas, por amor a Deus, ainda que o testemunho sejacontra vós mesmos, contra os vossos pais ou contra os vossos parentes, seja contra vós mesmos, contra os vossos pais oucontra os vossos parentes, seja o acusado rico ou pobre, porque a Deus incumbe protegê-los. Portanto, não sigais os vossoscaprichos, para não serdes injustos; e se falseardes o vosso testemunho ou vos recusardes a prestá-lo, sabei que Deus estábem inteirado de tudo quanto fazeis.",
+ 136,
+ "Ó fiéis, crede em Deus, em Seu Mensageiro, no Livro que Ele lhe revelou e no Livro que havia sido reveladoanteriormente. Em verdade, quem renegar Deus, Seus anjos, Seus Livros, Seus mensageiros e o Dia do Juízo Final, desviar-se-á profundamente.",
+ 137,
+ "Quanto àqueles que crêem e, em seguida, negam, voltam a crer e depois renegam, aumentando assim a sua descrença, éinadmissível que Deus os perdoe ou os guie por senda alguma.",
+ 138,
+ "Adverte os hipócritas de que sofrerão um doloroso castigo.",
+ 139,
+ "Aqueles que tomam por confidentes os incrédulos em vez dos fiéis, pretendem, porventura, obter deles a glória? Sabeique a glória pertence integralmente a Deus.",
+ 140,
+ "Por certo que Ele vos instruiu, no Livro, e de quando notardes que blasfemam, que escarnecem os versículos de Deus, não vos senteis com eles, até que mudem de conversa; porque, se assim não fizerdes, sereis seus cúmplices. Deus reunirá, noinferno, todos os hipócritas e incrédulos,",
+ 141,
+ "Que vos espreitam e dizem, quando Deus vos concede uma vitória: Acaso não estávamos convosco? Por outra, se avitória tivesse cabido aos incrédulos, dir-lhes-iam: Acaso não estávamos em vantagem sobre vós, protegendo-vos dos fiéis? Deus os julgará, no Dia da Ressurreição, e jamais concederá supremacia aos incrédulos em relação aos fiéis.",
+ 142,
+ "Os hipócritas pretendem enganar Deus, porém, Ele os enganará, por isso. Quando se dispões a orar, fazem-no comindolência, sem serem vistos pelas pessoas, e pouco mencionam Deus.",
+ 143,
+ "(Eles estão) vacilantes, entre os dois grupos; nem estão com este, nem com aquele. Porém, jamais encontrarás sendaalguma, para aquele que Deus desviar (por tal merecerem).",
+ 144,
+ "Ó fiéis, não tomeis aos incrédulos por confidentes, em vez dos que crêem. Desejais proporcionar a Deus provasevidentes contra vós?",
+ 145,
+ "Os hipócritas ocuparão o ínfimo piso do inferno e jamais lhes encontrarás socorredor algum.",
+ 146,
+ "Salvo aqueles que se arrependerem, se emendarem, se apegarem a Deus e consagrarem a sua religião a Ele; estescontar-se-ão, assim, entre os fiéis, e Deus lhes concederá uma magnífica recompensa.",
+ 147,
+ "Que interesse terá Deus em castigar-vos, se sois agradecidos e fiéis? Ele é Retribuidor, Sapientíssimo.",
+ 148,
+ "Deus não aprecia que sejam proferidas palavras maldosas publicamente, salvo por alguém que tenha sido injustiçado; sabei que Deus é Oniouvinte, Onisciente.",
+ 149,
+ "Quer pratiqueis o bem, oculta ou manifestamente, quer perdoeis o mal, sabei que Deus é Onipotente, Indulgentíssimo.",
+ 150,
+ "Aqueles que não crêem em deus e em Seus mensageiros, pretendendo cortar os vínculos entre Deus e Seus mensageiros, e dizem: Cremos em alguns e negamos outros, intentando com isso achar uma saída,",
+ 151,
+ "São os verdadeiros incrédulos; porém, preparamos para eles um castigo ignominioso.",
+ 152,
+ "Quanto àqueles que crêem em Deus e em Seus mensageiros, e não fazem distinção entre nenhum deles, Deus lhesconcederás as suas devidas recompensas, porque Deus é Indulgente, Misericordiosíssimo.",
+ 153,
+ "Os adeptos do Livro pedem-te que lhes faças descer um Livro do céu. Já haviam pedido a Moisés algo superior a isso, quando lhe disseram: Mostra-nos claramente Deus. Por isso, a centelha os fulminou, por sua iniqüidade. E (mesmo) depoisde receberem as evidências, adoraram o bezerro; e Nós os perdoamos, e concedemos a Moisés uma autoridade evidente.",
+ 154,
+ "E elevamos o Monte por cima deles, pelo ato de seu pacto, e lhes dissemos: Entrai pelo pórtico da cidade, prostrando-vos; e também lhes dissemos: Não profaneis o Sábado! E obtivemos deles um compromisso solene.",
+ 155,
+ "(Porém, fizemo-los sofrer as conseqüências) por terem quebrado o pacto, por negaremos versículos de Deus, pormatarem iniquamente os profetas, e por dizerem: Nossos corações estão insensíveis! Todavia, Deus lhes obliterou oscorações, por causa perfídias. Em quão pouco acreditam!",
+ 156,
+ "E por blasfemarem e dizerem graves calúnias acerca de Maria.",
+ 157,
+ "E por dizerem: Matamos o Messias, Jesus, filho de Maria, o Mensageiro de Deus, embora não sendo, na realidade, certo que o mataram, nem o crucificaram, senão que isso lhes foi simulado. E aqueles que discordam, quanto a isso, estão nadúvida, porque não possuem conhecimento algum, abstraindo-se tão-somente em conjecturas; porém, o fato é que não omataram.",
+ 158,
+ "Outrossim, Deus fê-lo ascender até Ele, porque é Poderoso, Prudentíssimo.",
+ 159,
+ "Nenhum dos adeptos do Livro deixará de acreditar nele (Jesus), antes da sua morte, que, no Dia da Ressurreição, testemunhará contra eles.",
+ 160,
+ "E pela iniqüidade dos judeus, ao tentarem desviar os demais da senda de Deus, vedamos-lhes algumas coisas, boas, que lhes eram lícitas.",
+ 161,
+ "E por praticarem a usura, sendo que isso lhes estava proibido, e por usurparem os bens alheios com falsas pretensões. E preparamos para os incrédulos, dentre eles, um doloroso castigo.",
+ 162,
+ "Quanto aos sábios, dentre eles, bem como aos fiéis, que crêem tanto no que te foi revelado como no que foi reveladoantes de ti, que são observantes da oração, pagadores do zakat, crentes em Deus e no Dia do Juízo Final, premiá-los-emoscom magnífica recompensa.",
+ 163,
+ "Inspiramos-te, assim como inspiramos Noé e os profetas que o sucederam; assim, também, inspiramos Abraão, Ismael, Isaac, Jacó e as tribos, Jesus, Jó, Jonas, Aarão, Salomão, e concedemos os Salmos a Davi.",
+ 164,
+ "E enviamos alguns mensageiros, que te mencionamos, e outros, que não te mencionamos; e Deus falou a Moisésdiretamente.",
+ 165,
+ "Foram mensageiros alvissareiros e admoestadores, para que os humanos não tivessem argumento algum ante Deus, depois do envio deles, pois Deus é Poderoso, Prudentíssimo.",
+ 166,
+ "Deus atesta que o que te revelou, revelou-to de Sua sapiência, assim como os anjos também o atestam. E basta Deus portestemunha (disso).",
+ 167,
+ "Aqueles que rejeitaram a fé e desviaram os demais da senda de Deus, desviaram-se profundamente.",
+ 168,
+ "(Quanto) àqueles que rejeitaram a fé e cometeram injustiças, Deus nunca os perdoará, nem os orientará qualquercaminho,",
+ 169,
+ "A não ser o do inferno, onde morarão eternamente, porque isso é fácil para Deus.",
+ 170,
+ "Ó humanos, por certo que vos chegou o Mensageiro com a Verdade de vosso Senhor. Crede, pois, nele, que será melhorpara vós. Porém, se descrerdes, sabei que a Deus pertence tudo quanto existe nos céus e na terra e que Ele é Sapiente, Prudentíssimo.",
+ 171,
+ "Ó adeptos do Livro, não exagereis em vossa religião e não digais de Deus senão a verdade. O Messias, Jesus, filho deMaria, foi tão-somente um mensageiro de Deus e Seu Verbo, com o qual Ele agraciou Maria por intermédio do Seu Espírito. Crede, pois, em Deus e em Seus mensageiros e digais: Trindade! Abstende-vos disso, que será melhor para vós; sabei queDeus é Uno. Glorificado seja! Longe está a hipótese de ter tido um filho. A Ele pertence tudo quanto há nos céus e na terra, eDeus é mais do que suficiente Guardião.",
+ 172,
+ "O Messias não desdenha ser um servo de Deus, assim como tampouco o fizeram os anjos próximos (de Deus). Mas (quanto) àqueles que desdenharam a Sua adoração e se ensoberbeceram, Ele os congregará a todos ante Si.",
+ 173,
+ "Quanto aos fiéis que praticarem o bem, Deus lhes retribuirá com recompensas e os acrescentará de Sua graça; quantoàqueles que desdenharem a Sua adoração e se ensoberbecerem, Ele os castigará dolorosamente e não acharão, além deDeus, protetor, nem defensor algum.",
+ 174,
+ "Ó humanos, já vos chegou uma prova convincente, do vosso Senhor, e vos enviamos uma translúcida Luz.",
+ 175,
+ "Àqueles que crêem em Deus, e a Ele se apegam, introduzi-los-á em Sua misericórdia e Sua graça, e os encaminhará atéEle, por meio da senda reta.",
+ 176,
+ "Consultar-te-ão a respeito da herança de um falecido, em estado de \"kalala\"; dir-lhes-ás: Deus já vos instruiu a esterespeito: se uma pessoa morrer, sem Ter deixado prole e tiver uma irmã, corresponderá a metade de tudo quanto deixe; e seela morrer, ele herdará dela, uma vez que esta não deixe filhos. Porém, se ele tiver duas irmãs, estas herdarão dois terços doque ele deixar; e se houver irmãos e irmãs, corresponderá ao varão a parte de duas mulheres. Deus vo-lo esclarece, para quenão vos desvieis, porque é Onisciente."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/40.json b/share/quran-json/TheQuran/pt/40.json
new file mode 100644
index 0000000..24719a0
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/40.json
@@ -0,0 +1,186 @@
+[
+ {
+ "id": "40",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ghafir",
+ "translated_name": "The Forgiver",
+ "verse_count": 85,
+ "slug": "ghafir",
+ "codepoints": [
+ 1594,
+ 1575,
+ 1601,
+ 1585
+ ]
+ },
+ 1,
+ "Há, Mim",
+ 2,
+ "A revelação do Livro é de Deus, o Poderoso, o Sapientíssimo.",
+ 3,
+ "Remissório do pecado, Condescendente, Severíssimo no castigo, tem longo alcance. Não há mais divindade além d'Ele! AEle será o retorno.",
+ 4,
+ "Ninguém refuta os versículos de Deus, senão os incrédulos. Que o seu pavoneamento, na terra, não te alucine!",
+ 5,
+ "Já antes deles, o povo de Noé desmentira os seus mensageiros e, depois deste, os partidos; e cada povo atentou contra oseu mensageiro, para eliminá-lo; e disputavam com banalidades, para refutar, assim, a verdade; por isso os aniquilei. E queterrível foi a Minha punição!",
+ 6,
+ "E assim o decreto do castigo de teu Senhor recaiu sobre os incrédulos; estes são os condenados ao inferno.",
+ 7,
+ "Os (anjos) que carregam o Trono de Deus, e aqueles que o circundam, celebram os louvores do seu Senhor; crêem n'Ele eimploram-Lhe o perdão para os fiéis, (dizendo): Ó Senhor nosso, Tu, Que envolves tudo com a tua misericórdia e a Tuaciência, perdoa os arrependidos que seguem Tua senda, e preserva-os do suplício da fogueira!",
+ 8,
+ "Ó Senhor nosso, introduze-os nos Jardins do Éden que lhes prometeste, assim como os virtuosos dentre os seus pais, assuas esposas e a sua prole, porque és o Poderoso, o Prudentíssimo!",
+ 9,
+ "E preserva-os das maldades, porque àquele que preservares das maldades, nesse dia terás mostrado, certamente, misericórdia; isso será o magnífico benefício.",
+ 10,
+ "Em verdade, aos incrédulos será conclamado: Sabei que a aversão de Deus (em relação a vós) é maior que a vossaaversão em relação a vós mesmos, porque, quando fostes convocados à fé, vós a negastes.",
+ 11,
+ "Dirão: Ó Senhor nosso, fizeste-nos morrer duas vezes e duas vezes nos deste a vida. Reconhecemos, pois, os nossospecados! Haverá algum meio de nos livramos disso?",
+ 12,
+ "Tal vos acontecerá, porque ao ser invocado Deus, o Único, simplesmente O negáveis; em troca, quando Lhe eraassociado algo, acreditáveis. Assim, pois, sabei que o juízo é de Deus, o Grandioso, o Altíssimo!",
+ 13,
+ "Ele é Quem vos evidencia os Seus sinais e vos envia o sustento do céu. Mas, só se recorda d'Ele quem se volta para Ele, contrito.",
+ 14,
+ "Suplicai, pois, a Deus, com devoção, ainda que isso desgoste os incrédulos.",
+ 15,
+ "(Ele é) Exaltador, (Senhor) do Trono; envia o espírito (da inspiração), por Seu mandato, a quem Lhe apraz dentre osSeus servos, para advertir (os homens) sobre o Dia do Encontro.",
+ 16,
+ "Dia em que sairão (dos seus sepulcros) e nada deles se ocultará a Deus. A quem pertencerá, nesse dia, o reino? A Deus, Único, Irresistibilíssimo.",
+ 17,
+ "Nesse dia, toda a alma será retribuída segundo o seu mérito; nesse dia, não haverá injustiça, porque Deus é Destro emajustar contas.",
+ 18,
+ "Admoesta-os com o dia iminente quando, angustiados, os corações lhes subirão às gargantas. Os iníquos não terãoamigos íntimos, nem intercessores que possam obedecer.",
+ 19,
+ "Ele conhece os olhares furtivos e tudo quanto ocultam os corações.",
+ 20,
+ "E Deus julga com eqüidade; por outra, os que os humanos invocam, em vez d'Ele, nada poderão julgar. Sabei que sóDeus é o Oniouvinte, o Onividente.",
+ 21,
+ "Acaso, não percorreram a terra para verem qual foi a sorte dos seus antepassados? Eram superiores a eles em força etraços (que eles deixaram) na terra; porém, Deus os exterminou, por seus pecados, e não tiveram ninguém que os salvassedos desígnios de Deus.",
+ 22,
+ "Sucedeu-lhes isto, porque os seus mensageiros lhes apresentaram as evidências e eles as negaram. Então Deus osexterminou, porque é Poderoso, Severíssimo no castigo.",
+ 23,
+ "Havíamos enviado Moisés com os Nossos sinais e uma autoridade evidente.",
+ 24,
+ "Ao Faraó, a Haman e a Carun; porém, disseram: É um mago mentiroso.",
+ 25,
+ "E quando lhes apresentou a Nossa verdade, disseram: Matai os filhos varões daqueles que, com ele, crêem, e deixai comvida as suas mulheres! Porém, a conspiração dos incrédulos do improfícua.",
+ 26,
+ "E o Faraó disse: Deixai-me matar Moisés, e que invoque o seu Senhor. Temo que mude a vossa religião ou que semeie acorrupção na terra!",
+ 27,
+ "Moisés disse: Em verdade, eu me amparo em meu Senhor e vosso, acerca de todo arrogante, que não crê no Dia daRendição de Contas.",
+ 28,
+ "E um homem fiel, da família do Faraó, que ocultava a sua fé, disse: Mataríeis um homem tão-somente porque diz: MeuSenhor é Deus, não obstante Ter-vos apresentado as evidências do vosso Senhor? Além do mais se for um impostor, a suamentira recairá sobre ele; por outra, se for veraz, açoitar-vos-á algo daquilo com que ele vos ameaça. Em verdade, Deus nãoencaminha ninguém é transgressor, mentiroso.",
+ 29,
+ "Ó povo meu, hoje o poder é vosso; sois dominadores, na terra. Porém, quem nos defenderá do castigo de Deus, quandoele nos açoitar? O Faraó disse: Eu não vos aconselho senão o que conheço, e não vos indico senão a senda da retidão!",
+ 30,
+ "E o fiel disse: Ó povo meu, em verdade temo que vos suceda e desdita do dia (do desastre) dos irmanados (no pecado).",
+ 31,
+ "A angústia do povo de Noé, de Ad e de Samud, e daqueles que os sucederam. Sabei que Deus deseja a justiça para osSeus servos.",
+ 32,
+ "Ó povo meu, em verdade, temo, por vós, o dia do clamor mútuo.",
+ 33,
+ "No dia em que tentardes fugir, ninguém poderá defender-vos de Deus. E aquele que Deus extraviar não terá orientadoralgum.",
+ 34,
+ "Em verdade, José vos apresentou as evidências; porém não cessastes de duvidar do que vos apresentou, até que quandomorreu, dissestes: Deus jamais extravia os transgressores, extravagantes,",
+ 35,
+ "Que refutam os versículos de Deus, sem a autoridade concedida. Tal é grave e odioso, ante Deus e ante os fiéis. Assimsendo, Deus sigila o coração de todo o arrogante, déspota.",
+ 36,
+ "O Faraó disse: Ó Haman, constrói-me uma torre, para eu poder alcançar as sendas,",
+ 37,
+ "As sendas do céu, de maneira que possa ver o Deus de Moisés, conquanto eu creia que é mentiroso! Assim, foiabrilhantada ao Faraó a sua má ação, e ele foi desencaminhado da senda reta; e as conspiração do Faraó foram reduzidas anada.",
+ 38,
+ "E o fiel olhes disse: Ó povo meu, segui-me! Conduzir-vos-ei pela senda da retidão.",
+ 39,
+ "Ó povo meu, sabei que a vida terrena é um gozo efêmero, e que a outra vida é a morada eterna!",
+ 40,
+ "Quem cometer uma iniqüidade, será pago na mesma moeda; por outra, aqueles que praticarem o bem, sendo fiéis, homens ou mulheres, entrarão no Paraíso, onde serão agraciados imensuravelmente.",
+ 41,
+ "Ó povo meu, por que eu vos convoco à salvação e vós me convocais ao fogo infernal?",
+ 42,
+ "Incitais-me, acaso, a renegar Deus e associar-Lhe o que ignoro, enquanto eu vos convoco até o Poderoso, oIndulgentíssimo.",
+ 43,
+ "É indubitável que aquilo a que me incitais não pode ser exorável neste mundo, nem no outro, e que o nosso retorno será aDeus, e que os transgressores serão os condenados ao inferno.",
+ 44,
+ "Logo vos recordareis do que vos digo! Quanto a mim, encomendo-me a Deus, porque é Observador dos Seus servos.",
+ 45,
+ "E eis que Deus o preservou das conspirações que lhe haviam urdido, e o povo do Faraó sofreu o mais severo doscastigos!",
+ 46,
+ "É o fogo infernal, ao qual serão apresentados, de manhã e à tarde; e no dia em que chegar a Hora, (Deus dirá): Fazeientrar o povo do Faraó, para o mais severo dos castigos.",
+ 47,
+ "E quando disputarem entre si, no inferno, os fracos dirão aos que se ensoberbeceram: Em verdade, fomos vossosseguidores; podeis, pois, livrar-nos, ainda que seja de uma só parte do fogo?",
+ 48,
+ "E os que se ensoberbeceram lhes responderão: Em verdade, estamos todos aqui, porque Deus julgou entre os servos!",
+ 49,
+ "E os réprobos pedirão aos guardiãos do inferno: Invocai vosso Senhor para que nos alivie, em um só dia, do suplício!",
+ 50,
+ "Retrucar-lhes-ão: Acaso, não vos apresentaram, os vossos mensageiros, as evidências? Dirão: Sim! Dir-lhes-ão: Rogai, pois, embora o rogo dos incrédulos seja improfícuo!",
+ 51,
+ "Sabei que secundaremos Nossos mensageiros e os fiéis, na vida terrena e no dia em que se declararem as testemunhas.",
+ 52,
+ "(Será) o dia em que aos iníquos de nada valerão as suas escusas, senão que receberão a maldição, e terão a pior morada.",
+ 53,
+ "Havíamos concedido a Moisés a orientação, e fizemos os israelitas herdarem o livro.",
+ 54,
+ "(Livro esse) que é orientação e mensagem para os sensatos.",
+ 55,
+ "Persevera, pois, porque a promessa de Deus é infalível; implora o perdão das tuas faltas e celebra os louvores do teuSenhor, ao anoitecer e ao amanhecer.",
+ 56,
+ "Aqueles que disputam acerca dos versículos de Deus, sem autoridade concedida, não abrigam em seus peitos senão asoberbia, com a qual jamais lograrão o que quer que seja: ampara-te, pois, em Deus, porque é o Oniouvinte, o Onividente.",
+ 57,
+ "Seguramente, a criação dos céus e da terra é mais importante do que a criação do homem; porém, a maioria dos humanoso ignora.",
+ 58,
+ "Jamais poderão equiparar-se o cego e o vidente, tampouco os fiéis, que praticam o bem, e os iníquos. Quão poucomeditais!",
+ 59,
+ "Sabei que a Hora chegará, indubitavelmente; porém a maioria dos humanos não crê nisso.",
+ 60,
+ "E o vosso Senhor disse: Invocai-Me, que vos atenderei! Em verdade, aqueles que se ensoberbecerem, ao Me invocarem, entrarão, humilhados, no inferno.",
+ 61,
+ "Deus foi Quem fez a noite, para que repousásseis, e o dia, para (vos) ajudar a ver. Certamente Deus é Agraciante paracom os humanos. Porém, a maioria deles não Lhe agradece.",
+ 62,
+ "Tal é Deus, vosso Senhor, Criador de tudo. Não há mais divindade, além d'Ele. Como, pois, vos desviais?",
+ 63,
+ "Assim se desviam aqueles que negam os versículos de Deus.",
+ 64,
+ "Deus foi Quem fez a terra como berço, o céu como teto, modelou e aperfeiçoou as vossas configurações, e vos agracioucom todo o bem. Tal é Deus, vosso Senhor. Bendito seja Deus, Senhor do Universo!",
+ 65,
+ "Ele é o vivente! Não há mais divindade, além d'Ele! Invocai-O, pois, sinceramente! Louvado seja Deus, Senhor doUniverso!",
+ 66,
+ "Dize-lhes: Quando me chegaram as evidências do meu Senhor, foi-me proibido adorar aos que invocáveis em vez d'Ele, e foi-me ordenado submeter-me ao Senhor do Universo!",
+ 67,
+ "Ele foi Quem vos criou do pó, depois do sêmen, depois de algo que se agarra, então vos extraiu, crianças, das estranhasmaternas, para algo alcançardes a vossa maturidade, para então chegardes à senilidade; e há aqueles, dentre vós, quemorrem antes; Ele assim procede, para que alcanceis o término prefixado, a fim de que raciocineis.",
+ 68,
+ "Ele é Quem dá a vida e a morte e, quando decide algo, diz somente: Seja!, e é.",
+ 69,
+ "Porventura, não reparaste naqueles que disputam a respeito dos versículos de Deus, como se afastam d'Ele?",
+ 70,
+ "São aqueles que desmentem o Livro e tudo quanto enviamos com os Nossos mensageiros. Logo o saberão!",
+ 71,
+ "(Ah, se tu pudesses vê-los) quando lhes forem postas as argolas nos pescoços, e forem arrastados com as cadeias,",
+ 72,
+ "Até à água fervente! Logo serão combustível para o fogo.",
+ 73,
+ "Então lhes será dito: Onde estão os que idolatráveis,",
+ 74,
+ "Em lugar de Deus? Responderão: Desvaneceram-se. E agora reconhecemos que aquilo que antes invocávamos nada era! Assim, Deus extravia os incrédulos.",
+ 75,
+ "Isso acontecerá por causa do vosso regozijo injusto na terra, e por causa da vossa insolência.",
+ 76,
+ "Adentrai, pois, as portas do inferno, onde permanecereis eternamente! E que péssima é a morada dos arrogantes!",
+ 77,
+ "Persevera, pois, porque a promessa de Deus é inexorável; quer que mostremos algo do que lhes temos prometido, querque acolhamos, certamente retornarão a Nós.",
+ 78,
+ "Antes de ti, havíamos enviado mensageiros; as histórias de alguns deles te temos relatado, e há aqueles dos quais nadate relatamos. E a nenhum mensageiro é dado apresentar sinal algum, senão com o beneplácito de Deus. Porém, quando aordem de Deus chegar, será executada com eqüidade, e então os difamadores estarão perdidos.",
+ 79,
+ "Deus foi Quem vos criou o gado; alguns para cavalgardes, e outros para servir-vos de alimento.",
+ 80,
+ "E, ademais, tendes nele (outras) espécies de benefícios e, para conseguirdes, com a sua ajuda, a satisfação de qualquernecessidade (que possa haver) nos vossos corações, e sobre eles sois transportados, como o sois pelos navios.",
+ 81,
+ "E Ele vos mostra o Seus sinais. Qual dos sinais de Deus negareis, pois?",
+ 82,
+ "Acaso, não percorreram eles a terra, para ver qual foi a sorte dos meus antepassados? Eram mais numerosos, maisvigorosos, e deixaram traços mais marcantes do que os deles, na terra; mas de nada lhes valeu tudo quanto haviam feito.",
+ 83,
+ "Porém, quando lhes apresentaram os seus mensageiros as evidências, permaneceram exultantes com os seus própriosconhecimentos; mas foram envolvidos por aquilo de que escarneciam.",
+ 84,
+ "E quando presenciaram o Nosso castigo, disseram: Cremos em Deus, o Único, e renegamos os parceiros que Lheatribuíamos.",
+ 85,
+ "Porém, de nada lhes valerá a sua profissão de fé quando presenciarem o Nosso castigo. Tal é a Lei de Deus para comSeus servos. Assim, então perecerão os incrédulos."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/41.json b/share/quran-json/TheQuran/pt/41.json
new file mode 100644
index 0000000..97454fc
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/41.json
@@ -0,0 +1,124 @@
+[
+ {
+ "id": "41",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Fussilat",
+ "translated_name": "Explained in Detail",
+ "verse_count": 54,
+ "slug": "fussilat",
+ "codepoints": [
+ 1601,
+ 1589,
+ 1604,
+ 1578
+ ]
+ },
+ 1,
+ "Ha, Mim.",
+ 2,
+ "(Eis aqui) uma revelação do Clemente, Misericordiosíssimo.",
+ 3,
+ "É um Livro cujos versículos foram detalhados. É um Alcorão árabe destinado a um povo sensato.",
+ 4,
+ "É alvissareiro e admoestador; porém, a maioria dos humanos o desdenha, sem ao menos escutá-lo.",
+ 5,
+ "E afirmaram: Os nossos corações estão insensíveis a isso a que nos incitas; os nosso ouvidos estão ensurdecidos e entretu e nós, há uma barreira. Faze, pois, (por tua religião), que nós faremos (pela nossa)!",
+ 6,
+ "Dize-lhes: Sou tão-somente um mortal como vós, a quem tem sido revelado que vosso Deus é um Deus Único. Consagrai-vos, pois, a Ele, e implorai-Lhe perdão! E ai dos idólatras,",
+ 7,
+ "Que não pagam o zakat e renegam a outra vida!",
+ 8,
+ "Sabei que os fiéis, que praticam o bem, obterão uma recompensa infalível.",
+ 9,
+ "Dize-lhes (mais): Renegaríeis, acaso, Quem criou a terra em dois dias, e Lhe atribuireis rivais? Ele é o Senhor doUniverso!",
+ 10,
+ "E sobre ela (a terra) fixou firmes montanhas, e abençoou-a e distribuiu, proporcionalmente, o sustento aos necessitados, em quatro dias.",
+ 11,
+ "Então, abrangeu, em Seus desígnios, os céus quando estes ainda eram gases, e lhes disse, e também à terra: Juntai-vos, de bom ou de mau grado! Responderam: Juntamo-nos voluntariamente.",
+ 12,
+ "Assim, completou-os, como este céus, em dois dias, e a cada céu assinalou a sua ordem. E adornamos o firmamentoterreno com luzes, para que servissem de sentinelas. Tal é o decreto do Poderoso, Sapientíssimo.",
+ 13,
+ "Porém, se desdenharem, dize-lhes: Advirto-vos da vinda de uma centelha, semelhante àquela enviado dos povos de Ad eSamud.",
+ 14,
+ "Pois quando os mensageiros, de todas as partes, se apresentaram a eles, (dizendo-lhes): Não adoreis senão a Deus!, responderam-lhes: Se Deus quisesse isso, teria enviado anjos (para predicá-lo). Certamente negaremos a vossa missão.",
+ 15,
+ "O povo de Ad, ainda, ensoberbeceu-se iniquamente na terra; e disse: Quem é mais poderoso do que nós? Porventura, nãorepararam em que Deus, Que os criou, é mais poderoso do que eles? Sem dúvida, negaram os nossos versículos.",
+ 16,
+ "Pelo que desencadeamos sobre eles um vento glacial, em dias nefastos, para fazê-los sofrer o castigo aviltoso da vidaterrena; porém, o da outra vida será ainda mais aviltante, e não serão socorridos.",
+ 17,
+ "E orientamos o povo de Samud; porém, preferiram a cegueira à orientação. E fulminou-os a centelha do castigoignominioso, pelo que lucraram.",
+ 18,
+ "E salvamos os fiéis tementes.",
+ 19,
+ "E no dia em que os adversários de Deus forem congregados, desfilarão em direção ao fogo infernal.",
+ 20,
+ "Até que, quando chegarem a ele, seus ouvidos, seus olhos e suas peles, testemunharão contra eles a respeito de tudoquanto tiverem cometido.",
+ 21,
+ "E perguntarão às suas peles; Por que testemunhastes contra nós? Responderão: Deus foi Quem nos fez falar; Ele faz falartodas as coisas! Ele vos criou anteriormente e a Ele retornareis.",
+ 22,
+ "E jamais podereis subtrair-vos a que vossos ouvidos, vossos olhos e vossas peles testemunhem contra vós. Nãoobstante, pensastes que Deus não saberia muito do quanto fazíeis!",
+ 23,
+ "E o que vos fez duvidar de vosso Senhor foi o pensamento, o qual vos aniquilou, e fez com que fizésseis parte dosdesventurados!",
+ 24,
+ "E mesmo se perseverarem, terão o fogo por morada; e mesmo se implorarem complacência, não serão dos que foremcompadecidos!",
+ 25,
+ "E lhes destinamos companheiros (da mesma espécie), os quais os alucinam no presente, e o farão no futuro, e merecem asentença do castigo das gerações de gênios humanos precedentes, porque (estes) eram desventurados.",
+ 26,
+ "E os incrédulos dizem: Não deis ouvidos a este Alcorão: outrossim, fazei bulha durante a sua leitura. Quiçá, assimvencereis!",
+ 27,
+ "Infligiremos um severo castigo aos incrédulos e os puniremos pelo pior que tiverem feito.",
+ 28,
+ "Tal será o castigo dos adversários de Deus: o fogo, que terão por morada eterna, em punição por terem negado osNossos versículos.",
+ 29,
+ "Os incrédulos dirão: Ó Senhor nosso, mostra-nos os gênios e humanos que vos extraviaram; colocá-los-emos sob osnossos pés, para que se contem entre os mais vis!",
+ 30,
+ "Em verdade, quanto àqueles que dizem: Nosso Senhor é Deus, e se firmam, os anjos descerão sobre eles, os quais lhesdirão: Não temais, nem vos atribuleis; outrossim, regozijai-vos com o Paraíso que vos está prometido!",
+ 31,
+ "Temos sido os vossos protetores na vida terrena e (o seremos) na outra vida, onde tereis tudo quanto anelam as vossasalmas e onde tereis tudo quanto pretendeis.",
+ 32,
+ "Tal é a hospedagem do Indulgente, Misericordiosíssimo!",
+ 33,
+ "E quem é mais eloqüente do que quem convoca (os demais) a Deus, pratica o bem e diz: Certamente sou um dosmuçulmanos?",
+ 34,
+ "Jamais poderão equiparar-se a bondade e a maldade! Retribui (ó Mohammad) o mal da melhor forma possível, e eis queaquele que nutria inimizade por ti converter-se-á em íntimo amigo!",
+ 35,
+ "Porém a ninguém se concederá isso, senão aos tolerantes, e a ninguém se concederá isso, senão aos bem-aventurados.",
+ 36,
+ "Quando Satanás te incitar à discórdia, ampara-te em Deus, porque Ele é o Oniouvinte, o Sapientíssimo.",
+ 37,
+ "E, entre os Seus sinais, contam-se a noite e o dia, o sol e a lua. Não vos prostreis ante o sol nem ante a lua, masprostrai-vos ante Deus, que os criou, se realmente é a Ele que quereis adorar.",
+ 38,
+ "Porém, se se ensoberbecerem, saibam que aqueles que estão na presença do teu Senhor glorificam-No noite e dia, semcontudo se enfadarem.",
+ 39,
+ "E entre os Seus sinais está a terra árida; mas quando fazemos descer a água sobre ela, eis que se reanima e se fertiliza. Certamente, quem az faz reviver é o Mesmo Vivificador dos mortos, porque é Onipotente.",
+ 40,
+ "Em verdade, aqueles que negarem os Nossos versículos não se ocultarão de Nós. Quem será mais venturoso: o que forprecipitado no fogo ou o que comparecer, a salvo, no Dia da Ressurreição? Agi como queirais, mas sabei que Ele bem vêtudo quanto fazeis!",
+ 41,
+ "Aqueles que degenerarem a Mensagem, ao recebê-la, (não se ocultarão d'Ele). Este é um Livro veraz por excelência.",
+ 42,
+ "A falsidade não se aproxima dele (o Livro), nem pela frente, nem por trás; é a revelação do Prudente, Laudabilíssimo.",
+ 43,
+ "Tudo quanto te dizem já foi dito aos mensageiros que te precederam. Saibam eles que o teu Senhor é Indulgente, maistambém possui um doloroso castigo.",
+ 44,
+ "E se houvéssemos revelado um Alcorão em língua persa, teriam dito: Por que não nos foram detalhados os versículos? Como! Um (livro) persa e um (Mensageiro) árabe? Diz-lhes: Para os fiéis, é orientação e bálsamo; porém, para aqueles quenão crêem e estão surdos, é incompreensível, como se fossem chamados (para algo) de um lugar longínquo.",
+ 45,
+ "Havíamos concedido o Livro a Moisés, acerca do qual houve discrepâncias. Porém, se não tivesse sido por uma palavrapredita por teu Senhor, já os teria julgado; mas eles se mantiveram em uma dúvida inquietante, acerca disso.",
+ 46,
+ "Quem pratica o bem, o faz em benefício próprio; por outra, quem faz o mal, é em prejuízo seu, porque o teu Senhor não éinjusto para com os Seus servos.",
+ 47,
+ "Só a Ele concerne o conhecimento da Hora. E nenhum fruto sai do seu invólucro e nenhuma fêmea fica prenhe ou gera, sem o Seu conhecimento. No dia em que Ele os convoca, (perguntará): Onde estão os parceiros que Me atribuístes? Dirão: Asseguramos-Te que nenhum de nós pode testemunhar!",
+ 48,
+ "E desvanecer-se-á tudo quanto haviam invocado antes, e se convencerão de que não terão escapatória.",
+ 49,
+ "O homem não se farta de implorar o bem; mas, quando o mal o açoita, ei-lo desesperado, desalentado.",
+ 50,
+ "Todavia, se depois de tê-lo açoitado a adversidade, o agraciamos com a Nossa misericórdia, dirá: Isto é (mérito) meu enão creio que a Hora chegue; e se retornar ao a meu Senhor, certamente obterei a Sua bem-aventurança. Porém, inteiraremosos incrédulos de tudo quanto tiverem cometido e lhes infligiremos um severo castigo.",
+ 51,
+ "Mas quando agraciamos o homem, ele desdenha e se envaidece; em troca, quando o mal o açoita, eis que não cessa deNos suplicar!",
+ 52,
+ "Dize-lhes: Uma vez que (o Alcorão) emana de Deus e o rechaçais... haverá alguém mais extraviado do que aquele queestá em um profundo cisma?",
+ 53,
+ "De pronto lhes mostraremos os Nossos sinais em todas as regiões (da terra), assim como em suas próprias pessoas, atéque lhes seja esclarecido que ele (o Alcorão) é a verdade. Acaso não basta teu Senhor, Que é Testemunha de tudo?",
+ 54,
+ "Não é certo que estão em dúvida quanto ao comparecimento ante o seu Senhor? Acaso não é verdade que Deus éOnímodo?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/42.json b/share/quran-json/TheQuran/pt/42.json
new file mode 100644
index 0000000..c84f9a6
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/42.json
@@ -0,0 +1,124 @@
+[
+ {
+ "id": "42",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ash-Shuraa",
+ "translated_name": "The Consultation",
+ "verse_count": 53,
+ "slug": "ash-shuraa",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1588,
+ 1608,
+ 1585,
+ 1609
+ ]
+ },
+ 1,
+ "Ha, Mim.",
+ 2,
+ "Ain, Sin, Caf.",
+ 3,
+ "Assim te revela, como (o fez) àqueles que te precederam, Deus, o Poderoso, o Prudentíssimo.",
+ 4,
+ "Seu é tudo quanto existe nos céus e na terra, porque é o Ingente, o Altíssimo.",
+ 5,
+ "É possível que os céus se fendam para a Sua glória; e os anjos celebram os louvores do seu Senhor e imploram perdãopara aqueles, que estão na terra.",
+ 6,
+ "Quanto àqueles que adotam guardiães, em vez de Deus, saibam que ele é o seu Protetor e tu não és, de maneira alguma, seu guardião",
+ 7,
+ "E assim te revelamos um Alcorão árabe para que admoestes a Mãe das Metrópoles e tudo ao seu redor, admoesta-os, portanto, quanto ao dia indubitável do comparecimento, em que uma parte (da humanidade) estará no Paraíso e outra notártaro.",
+ 8,
+ "Se Deus quisesse, tê-los-ia (os humanos) constituído em uma só nação, porque acolhe em Sua misericórdia quem Lhesapraz. Quando aos iníquos, não terão protetor, nem socorredor.",
+ 9,
+ "Como! Adotem protetores, em vez d'Ele? Pois, saibam que Deus é o Protetor e é Quem ressuscita os mortos, porque éOnipotente.",
+ 10,
+ "E seja qual for a causa da vossa divergência, a decisão só a Deus compete. Tal é Deus, meu Senhor! A Ele meencomendo e a Ele retornarei contrito.",
+ 11,
+ "É o Originador dos céus e da terra, (foi) Quem vos criou esposas, de vossas espécies, assim como pares de todos osanimais. Por esse meio vos multiplica. Nada se assemelha a Ele, e é o Oniouvinte, o Onividente.",
+ 12,
+ "Suas são as chaves dos céus e da terra; prodigaliza e restringe a Sua graça a quem Lhe apraz, porque é Onisciente.",
+ 13,
+ "Prescreveu-vos a mesma religião que havia instituído para Noé, a qual te revelamos, a qual havíamos recomendado aAbraão, a Moisés e a Jesus, (dizendo-lhes): Observai a religião e não discrepeis acerca disso; em verdade, os idólatras seressentiram daquilo a que os convocaste, Deus elege quem Lhe apraz e encaminha para Si o contrito.",
+ 14,
+ "Mas não se dividiram senão por inveja, depois de lhes ter chegada a ciência. E se não tivesse sido por uma palavraproferida por teu Senhor, para tolerá-los até um término prefixado, já os teria julgado. Em verdade, aqueles que, depoisdeles, herdaram o Livro, estão em uma inquietante dúvida, acerca do mesmo.",
+ 15,
+ "Por isso, convoca-os e persevera, tal como te tem sido ordenado, e não te entregues à sua concupiscência, e dize-lhes: Creio em todos os Livros que Deus revelou! E tem-me sido ordenado julgar-vos eqüitativamente. Deus é nosso Senhor evosso. Nós somos responsáveis por nossas ações e vós pelas vossas! Que não haja dissenções entre vós e nós. Deus noscongregará, e a Ele será o retorno.",
+ 16,
+ "Quanto àqueles que argumentam acerca de Deus, depois de Ele Ter sido aceito, seus argumentos serão refutados ante oseu Senhor, Cuja abominação pesará sobre eles, e sofrerão um severo castigo.",
+ 17,
+ "Deus foi Quem, em verdade, revelou o Livro e a balança. E quem te fará compreender, se a hora estiver próxima?",
+ 18,
+ "Os que não crêem nela querem apressá-la; por outra, os fiéis são reverentes, por temor a ela, e sabem que é a verdade. Não é, acaso, certo, que aqueles que disputam sobre a Hora estão em um profundo erro?",
+ 19,
+ "Deus é Amabilíssimo para com os Seus servos. Agracia quem Lhe apraz, porque é o Poderoso, o Fortíssimo.",
+ 20,
+ "Quem anelar a recompensa de outra vida tê-la-á aumentada; em troca, a quem preferir a recompensa da vida terrena, também lhe concederemos algo dela; porém, não participara (da bem-aventurança) da outra vida.",
+ 21,
+ "Quê! Há, acaso, (seres) parceiros (de Deus) que lhes tenham instituído algo a respeito da religião, sem a autorização deDeus? Porém, se não houvesse sido pelo decreto do juízo, já os teria julgado. Certamente, os iníquos sofrerão um dolorosocastigo.",
+ 22,
+ "Verás os iníquos, atemorizados pelo que tiverem cometido, quando (o castigo) lhes estiver iminente. Por outra, os fiéis, que praticarem o bem, morarão nos viçosos prados; terão tudo quanto lhes aprouver junto ao seu Senhor. Tal será amagnífica graça!",
+ 23,
+ "Isto é o que Deus anuncia ao Seus servos fiéis, que praticam o bem. Dize-lhes: Não vos exijo recompensa alguma poristo, senão o amor aos vossos parentes. E a quem quer que seja que conseguir uma boa ação, multiplicar-lhe-emos; sabei queDeus é Compensador, Indulgentíssimo.",
+ 24,
+ "Ou dizem: Ele forjou uma mentira acerca de Deus! Porém, se Deus quisesse, sigilaria o teu coração. Deus anula afalsidade e confirma a verdade, mediante as Suas palavras, porque é Conhecedor do que há nos corações.",
+ 25,
+ "E é Ele Que aceita o arrependimento dos Seus servos, absolve-lhes as faltas, bem como está sempre ciente de tudoquanto fazem.",
+ 26,
+ "E atende (às súplicas) dos fiéis, que praticam o bem, e os aumenta de Sua graça; porém, os incrédulos sofrerão umsevero castigo.",
+ 27,
+ "E se Deus prodigalizasse a Sua graça a todos os Seus servos, eles se excederiam na terra; porém, agraciaproporcionalmente, porque está bem inteirado, e é Observador dos Seus servos.",
+ 28,
+ "Ele é Que lhes faz descer a chuva, após o desespero (da seca), e dispensa a Sua misericórdia (a quem Lhe apraz), porque é o Protetor, o Laudabilíssimo.",
+ 29,
+ "E entre os Seus sinais está o da criação dos céus e da terra, e de todos os seres que aí disseminou, e poderá congregá-losquando Lhe aprouver.",
+ 30,
+ "E todo o infortúnio que vos aflige é por causa do que cometeram vossas mãos, muito embora ele perdoe muitas coisas.",
+ 31,
+ "E não podereis frustrar (a Ele) na terra; e além de Deus, não tereis outro protetor, nem socorredor.",
+ 32,
+ "E entre os Seus sinais está o dos navios que se elevam como montanhas nos oceanos.",
+ 33,
+ "E quando Lhe apraz, acalma o vento, fazendo com que permaneçam imóveis na superfície. Sabei que nisto há sinais paratodo o perseverante, agradecido.",
+ 34,
+ "Contudo, aniquila alguns, por tudo quanto tiverem cometido, e perdoa muitos.",
+ 35,
+ "E saibam aqueles, que disputam acerca dos nossos versículos, que não terão escapatória.",
+ 36,
+ "Tudo quanto vos foi concedido (até agora) é o efêmero gozo da vida terrena; no entanto, o que está junto a Deus épreferível e mais perdurável, para os fiéis que se encomendam a seu Senhor.",
+ 37,
+ "São aqueles que as abstêm dos pecados graves e das obscenidades e que, embora zangados, sabem perdoar,",
+ 38,
+ "Que atendem ao seu Senhor, observam a oração, resolvem os seus assuntos em consulta e fazem caridade daquilo comque os agraciamos;",
+ 39,
+ "E que, quando são afligidos por um erro opressivo, sabem defender-se.",
+ 40,
+ "E o delito será expiado com o talião; mas, quanto àquele que indultar (possíveis ofensas dos inimigos) e se emendar, saiba que a sua recompensa pertencerá a Deus, porque Ele não estima os agressores.",
+ 41,
+ "Contudo, aqueles que se vingarem, quando houverem sido vituperados, não serão incriminados.",
+ 42,
+ "Só serão incriminados aqueles que injustamente vituperarem e oprimirem os humanos, na terra; esses sofrerão umdoloroso castigo.",
+ 43,
+ "Ao contrário, quem perseverar e perdoar, saberá que isso é um fator determinante em todos os assuntos.",
+ 44,
+ "E aquele que Deus desviar não achará protetor, além d'Ele. E então observarás que os iníquos, quando virem o castigo, dirão: Haverá algum meio de retornarmos (ao mundo terreno)?",
+ 45,
+ "E quando forem colocados perante o fogo, haverás de vê-los humildes, devido à ignomínia, olhando furtivamente. Masos fiéis dirão: Em verdade, os desventurados serão aqueles que se perderem, juntamente com os seus, no Dia daRessurreição. Não é, acaso, certo, que os iníquos sofrerão um castigo eterno?",
+ 46,
+ "E não terão protetores que os socorram, a não ser Deus. Mas a quem Deus desviar, não será encaminhado.",
+ 47,
+ "Atendei ao vosso Senhor, antes que chegue o dia irremissível de Deus! Nesse dia não tereis escapatória, nem podereisnegar (os vossos pecados)!",
+ 48,
+ "Porém, se desdenharem, fica sabendo que não te enviamos para seu guardião, uma vez que tão-somente te incumbe aproclamação (da mensagem). Certamente, se fizemos o homem provar a Nossa misericórdia, regozijar-se-á com ela; poroutra, se o açoitar o infortúnio, por causa do que suas mãos cometeram, eis que se tornará ingrato!",
+ 49,
+ "A Deus pertence o reino dos céus e da terra. Ele cria a que Lhe apraz; concede filhas a quem quer e concede varões aquem Lhe apraz.",
+ 50,
+ "Ainda propicia igualmente mulheres varões, e faz estéril quem Lhe apraz, porque é Poderoso, Sapientíssimo.",
+ 51,
+ "É inconcebível que Deus fale diretamente ao homem, a não ser por revelações, ou veladamente, ou por meio de ummensageiro, mediante o qual revela, com o Seu beneplácito, o que Lhe apraz; sabei que Ele é Prudente, Altíssimo.",
+ 52,
+ "E também te inspiramos com um Espírito, por ordem nossa, antes do que não conhecias o que era o Livro, nem a fé; porém, fizemos dele uma Luz, mediante a qual guiamos quem Nos apraz dentre os Nossos servos. E tu certamente te orientaspara uma senda reta.",
+ 53,
+ "A senda de Deus, a Quem pertence tudo quanto existe nos céus e na terra. Acaso, não retornarão a Deus todas as coisas?"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/43.json b/share/quran-json/TheQuran/pt/43.json
new file mode 100644
index 0000000..874bf1e
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/43.json
@@ -0,0 +1,196 @@
+[
+ {
+ "id": "43",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Az-Zukhruf",
+ "translated_name": "The Ornaments of Gold",
+ "verse_count": 89,
+ "slug": "az-zukhruf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1586,
+ 1582,
+ 1585,
+ 1601
+ ]
+ },
+ 1,
+ "Ha, Mim.",
+ 2,
+ "Pelo Livro lúcido.",
+ 3,
+ "Nós o fizemos um Alcorão árabe, a fim de que o compreendêsseis.",
+ 4,
+ "E, em verdade, encontra-se na mãe dos Livros, em Nossa Presença, e é altíssimo, prudente.",
+ 5,
+ "Privar-vos-íamos Nós da Mensagem, só porque sois um povo de transgressores?",
+ 6,
+ "Quantos profetas enviamos aos povos antigos!",
+ 7,
+ "Porém, não lhes chegou profeta algum, sem que o escarnecessem.",
+ 8,
+ "Mas, aniquilamos aqueles que eram mais poderosos do que eles, e o exemplo das primeiras gerações já passou.",
+ 9,
+ "E se lhes perguntardes: Quem criou os céus e a terra? Dirão: Criou-os o Poderoso, o Sapientíssimo!",
+ 10,
+ "Que vos fez a terra como leito, e vos traçou nela sendas, para que vos encaminhásseis.",
+ 11,
+ "E Ele é Que envia, proporcionalmente, água dos céus, e com ela faz reviver uma comarca árida; assim sereisressuscitados.",
+ 12,
+ "E Ele é Que criou todos os canais e vos submeteu os navios e os animais para vos transportardes,",
+ 13,
+ "Bem como para que vos acomodásseis sobre eles, para assim recordar-vos das mercês do vosso Senhor, quando issoacontecesse, Dizei: Glorificado seja Quem no-los submeteu, o que jamais teríamos logrado fazer.",
+ 14,
+ "E nós todos retornaremos ao nosso Senhor!",
+ 15,
+ "Não obstante, atribuem-Lhe parceria, dentre os Seus servos. Em verdade, o homem é um blasfemo evidente.",
+ 16,
+ "Qual! Insinuais que Ele tomou para Si as filhas, dentre o que criou, e vos legou os varões?",
+ 17,
+ "E quando é anunciado a algum deles o (nascimento) do que estabelecem como semelhança a Deus, seu rosto seensombrece, e ei-lo angustiado.",
+ 18,
+ "Ousam, acaso, comprá-Lo com os que se criam no luxo e são incapazes na disputa?",
+ 19,
+ "E pretendem designar como femininos os anjos, os quais não passam de servos do Clemente! Acaso, testemunharam elesa sua criação? Porém, o testemunho que prestarem será registrado, e hão de ser interrogados.",
+ 20,
+ "E dizem: Se o Clemente quisesse, não os teríamos adorado (parceiros)! Não têm conhecimento algum disso e não fazemmais do que inventar mentiras.",
+ 21,
+ "Quê! Acaso lhes concedemos algum Livro, anterior a este, ao qual se pudessem apegar?",
+ 22,
+ "Não! Porém, dizem: Em verdade, deparamo-nos com os nossos pais a praticarem um culto, por cujos rastros nosguiamos.",
+ 23,
+ "Do mesmo modo, não enviamos, antes de ti, qualquer admoestador a uma cidade, sem que os abastados, dentre eles, dissessem: Em verdade, deparamo-nos com os nossos pais a praticarem um culto, cujos rastros seguimos.",
+ 24,
+ "Disse-lhes: Quê! Ainda que eu vos trouxesse melhor orientação do que aquela que seguiam os vossos pais? Responderam: Fica sabendo que renegamos a tua missão.",
+ 25,
+ "Porém, punimo-los. Repara, pois, qual foi a sorte dos desmentidores!",
+ 26,
+ "Recorda-te de quando Abraão disse ao seu pai e ao seu povo: Em verdade, estou isento de tudo quanto adorais.",
+ 27,
+ "(Adoro) somente Quem me criou, porque Ele me encaminhará.",
+ 28,
+ "E fez com que esta frase permanecesse indelével na memória da sua posteridade, para que se convertessem (a Deus).",
+ 29,
+ "Por certo que os agraciei, bem como seus pais, até que lhes chegou a verdade e um elucidativo mensageiro.",
+ 30,
+ "Mas, quando a verdade lhes chegou, disseram: Isto é magia; e por certo que o negamos!",
+ 31,
+ "E disseram mais: Na verdade, por que não foi revelado este Alcorão a um homem célebre, de uma das duas cidades (Makka e Taif)?",
+ 32,
+ "Serão eles, acaso, os distribuidores das misericórdias do teu Senhor? Nós distribuímos entre eles o seu sustento, na vidaterrena, e exaltamos uns sobre outros, em graus, para que uns submetam os outros; porém, a misericórdia do teu Senhor serápreferível a tudo quanto entesourarem.",
+ 33,
+ "E, se não fosse pelo fato de que os homens pudessem formar um só povo de incrédulos, teríamos feito, para aqueles quenegam o Clemente, telhados de prata para os seus lares, com escadas (também de prata), para os alcançarem.",
+ 34,
+ "E portas (de prata) para as suas casas, e os leitos (de prata).",
+ 35,
+ "E (lhes teríamos dado) ornamentos. Mas tudo isto não é senão o gozo efêmero da vida terrena; em troca, a outra vida, junto ao teu Senhor, está reservada para os tementes.",
+ 36,
+ "Mas a quem menoscabar a Mensagem do Clemente destinaremos um demônio, que será seu companheiro inseparável.",
+ 37,
+ "E embora o demônio o desencaminhe da verdadeira senda, crerá que está encaminhado.",
+ 38,
+ "E, por fim, quando comparecer ante Nós, dirá (àquele): Oxalá existisse, entre mim e ti, a distância entre o Oriente e oOcidente! Ah, que péssimo companheiro!",
+ 39,
+ "Porém, nesse dia, de nada valerá o vosso despotismo, porque sereis companheiros no castigo.",
+ 40,
+ "Porventura, podes fazer ouvir surdos, ou iluminar os cegos e aqueles que se acham em um evidente erro?",
+ 41,
+ "Mesmo que te façamos perecer, fica certo de que os puniremos.",
+ 42,
+ "Ou, se quisermos, mostrar-te-emos o castigo que lhes prometemos, porque sobre todos temos domínio absoluto.",
+ 43,
+ "Apega-te, pois, ao que te tem sido revelado, porque estás na senda reta.",
+ 44,
+ "Ele (Alcorão) é uma Mensagem para ti e para o teu povo, e sereis interrogados.",
+ 45,
+ "E pergunta aos mensageiros que enviamos antes de ti: Porventura, foi-vos prescrito, em lugar do Clemente, deidades, para que fossem adoradas?",
+ 46,
+ "Havíamos enviado Moisés, com os Nossos sinais, ao Faraó e seus chefes, o qual lhes disse: Em verdade, sou omensageiro do Senhor do Universo!",
+ 47,
+ "Mas, quando lhes apresentou Nossos sinais, eis que os escarneceram.",
+ 48,
+ "E nunca lhes mostramos prodígio algum que não fosse mais surpreendente do que o anterior. Mas surpreendemo-los como castigo, para que se voltassem contritos.",
+ 49,
+ "E disseram: Ó mago, invoca teu Senhor (e pede) o que te prometeu; por certo que assim nos encaminharemos!",
+ 50,
+ "E quando os libertamos do castigo, eis que perjuraram.",
+ 51,
+ "E o Faraó discursou para o seu povo, dizendo: Ó povo meu, porventura, não é meu domínio do Egito, assim como odestes rios, que correm sob (o meu palácio)? Não o vedes, pois?",
+ 52,
+ "Acaso, não sou preferível a este desprezível (indivíduo), que mal se pode expressar?",
+ 53,
+ "Por que, então, não se apresentou com galardões de ouro, ou não veio escoltado por uma teoria de anjos?",
+ 54,
+ "E ludibriou o seu povo, que o acatou, porque era um povo depravado.",
+ 55,
+ "Mas, quando nos provocaram, punimo-los e os afogamos a todos.",
+ 56,
+ "E fizemos deles um escarmento e um exemplo para posteridade.",
+ 57,
+ "E quando é dado como exemplo o filho de Maria, eis que o teu povo o escarnece!",
+ 58,
+ "E dizem: Porventura, nossas divindades não são melhores do que ele? Porém, tal não aventaram, senão com o intuito dedisputa. Esses são os litigiosos!",
+ 59,
+ "Ele (Jesus) não é mais do que um servo que agraciamos, e do qual fizemos um exemplo para os israelitas.",
+ 60,
+ "E, se quiséssemos, teríamos feito a vossa prole de anjos, para que vos sucedessem na terra.",
+ 61,
+ "E (Jesus) será um sinal (do advento) da Hora. Não duvideis, pois, dela, e segui-me, porque esta é a senda reta.",
+ 62,
+ "E que Satanás não vos desencaminhe; sabei que é vosso inimigo declarado.",
+ 63,
+ "E quando Jesus lhes apresentou as evidências, disse: Trago-vos a sabedoria, para elucidar-vos sobre algo que é objetodas vossas divergências. Temei, pois, a Deus, e obedecei-me!",
+ 64,
+ "Deus é meu Senhor e vosso. Adorai-O, pois! Eis aqui a senda reta!",
+ 65,
+ "Porém, os partidos discreparam entre si. Ai dos iníquos, quanto ao castigo do dia doloroso!",
+ 66,
+ "Aguardam, acaso, que a Hora os surpreenda subitamente, sem estarem precavidos?",
+ 67,
+ "Nesse dia os amigos tornar-se-ão inimigos recíprocos, exceto os tementes.",
+ 68,
+ "Ó servos Meus, hoje não serei presas do temor, nem vos atribulareis!",
+ 69,
+ "São aqueles que creram em Nossos versículos e foram muçulmanos.",
+ 70,
+ "Entrai, jubilosos, no Paraíso, juntamente com as vossas esposas!",
+ 71,
+ "Serão servidos com bandejas e copos de ouro; aí, as almas lograrão tudo quanto lhes apetecer, bem como tudo quedeleitar os olhos; aí morareis eternamente.",
+ 72,
+ "Eis aí o Paraíso, que herdastes por vossas boas ações,",
+ 73,
+ "Onde tereis frutos em abundância, dos quais vos nutrireis!",
+ 74,
+ "Por certo que os pecadores permanecerão eternamente no castigo do inferno,",
+ 75,
+ "O qual não lhes será atenuado e no qual estarão desesperados.",
+ 76,
+ "Jamais os condenamos, senão que foram eles iníquos consigo mesmos.",
+ 77,
+ "E gritarão: Ó Málik, que teu Senhor nos aniquile! E ele dirá: Sabei que permanecereis aqui (eternamente)!",
+ 78,
+ "Temos-vos apresentado a Verdade; porém, a maioria de vós a aborrece.",
+ 79,
+ "Quê! Porventura, tramaram alguma artimanha? Sabei que a desbarataremos!",
+ 80,
+ "Pensam, acaso, que não ouvimos os seus colóquios, nem a suas confidências? Sim! Porque os Nossos mensageiros, entreeles, os registram.",
+ 81,
+ "Dize-lhes: Se o Clemente houvesse tido um filho, seria eu o primeiro entre os seus adoradores.",
+ 82,
+ "Glorificado seja o Senhor dos céus e da terra, Senhor do Trono, de tudo quanto Lhe atribuem!",
+ 83,
+ "Deixa-os, pois, que tagarelem e se regozijem, até se depararem com o dia que lhes tem sido prometido.",
+ 84,
+ "Ele é Deus, nos céus e na terra, e Ele é o Prudente, o Sapientíssimo.",
+ 85,
+ "E bendito seja Aquele de Quem é o reino dos céus e da terra e tudo quanto existe entre ambos, em Cujo poder está oconhecimento da Hora; a Ele retornareis.",
+ 86,
+ "Quanto àqueles que invocam, em vez d'Ele, não possuem o poder da intercessão; só o possuem aqueles que testemunhama verdade e a reconhecem.",
+ 87,
+ "E se lhes perguntas quem os criou, certamente dirão: Deus! Como, então, se desencaminham?",
+ 88,
+ "(O Mensageiro) disse: Ó Senhor meu, em verdade, este é um povo que não crê!",
+ 89,
+ "Sê condescendente para com eles (ó Mohammad) e dize: Paz! Porém, logo haverão de saber."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/44.json b/share/quran-json/TheQuran/pt/44.json
new file mode 100644
index 0000000..beadbe2
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/44.json
@@ -0,0 +1,136 @@
+[
+ {
+ "id": "44",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Ad-Dukhan",
+ "translated_name": "The Smoke",
+ "verse_count": 59,
+ "slug": "ad-dukhan",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1583,
+ 1582,
+ 1575,
+ 1606
+ ]
+ },
+ 1,
+ "Ha, Mim.",
+ 2,
+ "Pelo Livro lúcido.",
+ 3,
+ "Nós o revelamos durante uma noite bendita, pois somos Admoestador,",
+ 4,
+ "Na qual se decreta todo o assunto prudente.",
+ 5,
+ "Por ordem Nossa, porque enviamos (a revelação).",
+ 6,
+ "Como misericórdia do teu Senhor, sabe que Ele é o Oniouvinte, o Sapientíssimo.",
+ 7,
+ "Senhor dos céus e da terra e de tudo quanto existe entre ambos, se estais persuadidos.",
+ 8,
+ "Não há mais divindade além d'Ele! Dá a vida e a morte, é o vosso Senhor e o de vossos antepassados.",
+ 9,
+ "Porém, estão na dúvida, absortos.",
+ 10,
+ "Aguarda, pois, o dia em que do céu descerá uma fumaça visível.",
+ 11,
+ "Que envolverá o povo: Será um doloroso castigo!",
+ 12,
+ "(Então dirão): Ó Senhor nosso, livra-nos do castigo, porque somos fiéis!",
+ 13,
+ "Como se não se recordassem de quando lhes chegou um elucidativo Mensageiro,",
+ 14,
+ "E o rechaçaram, dizendo: Ele foi ensinado (por outros), e é um energúmeno.",
+ 15,
+ "Em verdade, ainda que vos atenuássemos transitoriamente o castigo, seguramente reincidiríeis.",
+ 16,
+ "Recorda-lhes o dia em que desfecharemos o golpe decisivo; então, os puniremos.",
+ 17,
+ "Antes deles, provamos o povo do Faraó, ao ser-lhes apresentado um honorável mensageiro.",
+ 18,
+ "(Que lhes disse): Entregai-me os servos de Deus, porque sou um fidedigno mensageiro, para vós.",
+ 19,
+ "E não vos rebeleis contra Deus, porque vos trago uma autoridade evidente.",
+ 20,
+ "E me amparo em meu Senhor e vosso, se quereis apedrejar-me.",
+ 21,
+ "E se não credes em mim, afastei-vos, então, de mim.",
+ 22,
+ "(Moisés) exclamou, então, para o seu Senhor: Este é um povo pecador!",
+ 23,
+ "(Ordenou, então, o Senhor): Marcha, pois, com os Meus servos, durante a noite, porque sereis perseguidos.",
+ 24,
+ "E deixa o mar como um sulco, para que o exército dos incrédulos nele se afogue!",
+ 25,
+ "Quantos jardins e mananciais abandonaram;",
+ 26,
+ "Semeaduras e suntuosas residências.",
+ 27,
+ "E riquezas com as quais se regozijavam!",
+ 28,
+ "E foi assim que demos aquilo tudo em herança a outro povo!",
+ 29,
+ "Nem o céu, nem a terra verterão lágrimas por eles, nem tampouco lhes foi dada tolerância.",
+ 30,
+ "Sem dúvida que livramos os israelitas do castigo afrontoso,",
+ 31,
+ "Infligido pelo Faraó; em verdade, ele foi um déspota, e se contava entre os transgressores.",
+ 32,
+ "E os escolhemos propositadamente, entre os seus contemporâneos.",
+ 33,
+ "E os agraciamos com certas sinais que continham uma verdadeira prova.",
+ 34,
+ "Em verdade, estes (os coraixitas) dizem:",
+ 35,
+ "Não há mais morte do que a nossa primeira, e jamais seremos ressuscitados!",
+ 36,
+ "Fazei, então, voltar os nossos pais, se estiverdes certos!",
+ 37,
+ "Quê! Acaso, são eles preferíveis ao povo de Tubba e seus antepassados? Nós os aniquilamos, por haverem sidopecadores.",
+ 38,
+ "E não criamos os céus e a terra e tudo quanto existe entre ambos para Nos distrairmos.",
+ 39,
+ "Não os criamos senão com prudência; porém, a maioria o ignora.",
+ 40,
+ "Sabei que o dia fixado para todos será o dia da Discriminação,",
+ 41,
+ "Dia esse em que nenhum protetor poderá advogar, em nada, por outro, nem serão socorridos (os incrédulos).",
+ 42,
+ "Salvo aquele de quem Deus se apiedar, porque Ele é o Poderoso, o Misericordiosíssimo.",
+ 43,
+ "Sabei que a árvore de zacum",
+ 44,
+ "Será o alimento do pecador.",
+ 45,
+ "Com metal fundido que lhe ferverá nas entranhas.",
+ 46,
+ "Como a borbulhante água fervente.",
+ 47,
+ "(E será dito aos guardiãos): Agarrai o pecador e arrastai-o até ao centro da fogueira!",
+ 48,
+ "Então, atormentai-o, derramado sobre a sua cabeça água fervente.",
+ 49,
+ "Prova o sofrimento, já que tu és o poderoso, o honorável!",
+ 50,
+ "Certamente, há aqui aquilo de que vós duvidáveis.",
+ 51,
+ "Todavia, os tementes estarão em lugar seguro,",
+ 52,
+ "Entre jardins e mananciais.",
+ 53,
+ "Vestir-se-ão de tafetá e brocado, recostados frente a frente.",
+ 54,
+ "Assim será! E os casaremos com huris de maravilhosos olhos.",
+ 55,
+ "Aí pedirão toda a espécie de frutos, em segurança.",
+ 56,
+ "Lá não experimentarão a morte, além da primeira, e Ele os preservará do tormento da fogueira,",
+ 57,
+ "Como uma graça do teu Senhor. Tal é o magnífico benefício!",
+ 58,
+ "Em verdade, temos-te facilitado (o Alcorão) em tua língua, para que meditem.",
+ 59,
+ "Aguarda, pois, porque eles também aguardarão, igualmente."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/45.json b/share/quran-json/TheQuran/pt/45.json
new file mode 100644
index 0000000..dea03da
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/45.json
@@ -0,0 +1,93 @@
+[
+ {
+ "id": "45",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Jathiyah",
+ "translated_name": "The Crouching",
+ "verse_count": 37,
+ "slug": "al-jathiyah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1580,
+ 1575,
+ 1579,
+ 1610,
+ 1577
+ ]
+ },
+ 1,
+ "Ha, Mim.",
+ 2,
+ "A revelação do Livro é de Deus, o Poderoso, o Prudentíssimo.",
+ 3,
+ "Sabei que nos céus e na terra há sinais para os fiéis.",
+ 4,
+ "E em vossa criação e de tudo quanto disseminou, de animais, há sinais para os persuadidos.",
+ 5,
+ "E na alternação do dia e da noite, no sustento que Deus envia do céu, mediante o que vivifica a terra depois de haver sidoárida, é na variação dos ventos, há sinais para os que raciocinam.",
+ 6,
+ "Tais são os versículos de Deus que, em verdade, te revelamos. Assim, pois, em que exposição crerão, depois de (rechaçarem) Deus e os Seus versículos?",
+ 7,
+ "Ai de todo mendaz, pecador.",
+ 8,
+ "Que escuta os versículos de Deus, quando lhe são recitados, e se obstina, ensoberbecido, como se não os tivesse ouvido! Anuncia-lhe um doloroso castigo.",
+ 9,
+ "E quando chega a conhecer algo dos Nossos versículos, escarnece-o. Estes sofrerão um humilhante castigo.",
+ 10,
+ "Frente a eles estará o inferno, e de nada lhes valerá tudo quanto tiverem acumulado, nem tampouco os que adotarem porprotetores, em vez de Deus. E sofrerão um severo castigo.",
+ 11,
+ "Este (Alcorão) é uma orientação. Quanto àqueles que negam os versículos do seu Senhor, sofrerão a pena de umadolorosa punição.",
+ 12,
+ "Deus foi Quem vos submeteu o mar para que, com o Seu beneplácito, o singrassem os navios e para que procurásseisalgo de Sua bondade, a fim de que Lhe agradecêsseis.",
+ 13,
+ "E vos submeteu tudo quanto existe nos céus e na terra, pois tudo d'Ele emana. Em verdade, nisto há sinais para os quemeditam.",
+ 14,
+ "Dize aos fiéis que perdoam aqueles que não esperam o dia de Deus, quando Ele retribuirá a cada povo segundo o seumerecimento.",
+ 15,
+ "Quem praticar o bem, será em benefício próprio; por outra, quem praticar o mal, o fará em seu detrimento. Logoretornareis a vosso Senhor.",
+ 16,
+ "Havíamos concedido aos israelitas o Livro, o comando, a profecia e o agraciamos com todo o bem, e os preferimos aosseus contemporâneos.",
+ 17,
+ "E lhes prescrevemos as evidências (com respeito aos dogmas); porém, não discreparam, senão por inveja recíproca, após lhes ter chegado o conhecimento. Em verdade, teu Senhor julgará entre eles, devido às suas divergências, no Dia daRessurreição.",
+ 18,
+ "Então, te ensejamos (ó Mensageiro) o caminho reto da religião. Observa-o, pois, e não te entregues à concupiscência dosinsipientes.",
+ 19,
+ "Porque em nada poderão defender-te do castigo de Deus, por os iníquos são protetores uns dos outros. Porém, Deus é oProtetor dos tementes.",
+ 20,
+ "Este (Alcorão) encerra evidências para o homem, e é orientação e misericórdia para os persuadidos.",
+ 21,
+ "Pretendem, porventura, os delinqüentes, que os equiparemos aos fiéis, que praticam o bem? Pensam, acaso, que suasvidas e suas mortes serão iguais? Que péssimo é o que julgam!",
+ 22,
+ "Deus criou os céus e a terra com prudência, para que toda a alma seja compensada segundo o que tiver feito, e ninguémserá defraudado.",
+ 23,
+ "Não tens reparado, naquele que idolatrou a sua concupiscência! Deus extraviou-o com conhecimento, sigilando os seusouvidos e o seu coração, e cobriu a sua visão. Quem o iluminará, depois de Deus (tê-lo desencaminhado)? Não meditais, pois?",
+ 24,
+ "E dizem: Não há vida, além da terrena. Vivemos e morremos, e não nos aniquilará senão o tempo! Porém, com respeito aisso, carecem de conhecimento e não fazem mais do que conjecturar.",
+ 25,
+ "E quando lhes são recitados os Nossos lúcidos versículos, seu único argumento é dizer: Trazei nosso pais, e estaiscertos!",
+ 26,
+ "Dize-lhes: Deus vos dá a vida, então vos fará morrer, depois vos congregará para o Dia indubitável da Ressurreição. Porém, a maioria dos humanos o ignora",
+ 27,
+ "A Deus pertence o reino dos céus e da terra, e no dia em que chegar a Hora, perecerão os difamadores!",
+ 28,
+ "E verás cada nação genuflexa; cada uma será convocada ante o seu registro. Hoje sereis retribuídos, segundo o quetendes feito!",
+ 29,
+ "Este é o Nosso registro, o qual depõe contra vós, porque anotávamos tudo quanto fazíeis.",
+ 30,
+ "Quanto aos fiéis que praticam o bem, seu Senhor os acolherá em sua misericórdia. Tal é o evidente benefício!",
+ 31,
+ "Não obstante, aos incrédulos (será dito): Porventura, não vos foram recitados os Meus versículos? Porém, ensoberbeceste-vos e vos tornastes pecadores.",
+ 32,
+ "E quando vos foi dito que a promessa de Deus é verdadeira e a Hora é indubitável, dissestes: Não sabemos o que é aHora e pensamos não passar de uma opinião quimérica, e não estamos convencidos!",
+ 33,
+ "Então, aparecer-lhe-ão as maldades que tiverem cometido, e os envolverá aquilo de que escarneciam!",
+ 34,
+ "E ser-lhes-á dito: Hoje vos esquecemos tal como vos esquecestes do comparecimento a este vosso dia! E a vossamorada será o fogo infernal, e jamais tereis socorredores.",
+ 35,
+ "Isso, porque escarnecestes dos versículos de Deus e vos iludiu a vida terrena! Assim, nesse dia não lhes será permitidosair dele (o fogo), nem lhes será permitida apelação.",
+ 36,
+ "Louvado seja Deus, Senhor dos céus e da terra, Senhor do Universo!",
+ 37,
+ "De cuja glória, nos céus e na terra, é possuidor, porque é o Poderoso, o Prudentíssimo."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/46.json b/share/quran-json/TheQuran/pt/46.json
new file mode 100644
index 0000000..10db783
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/46.json
@@ -0,0 +1,89 @@
+[
+ {
+ "id": "46",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Ahqaf",
+ "translated_name": "The Wind-Curved Sandhills",
+ "verse_count": 35,
+ "slug": "al-ahqaf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1581,
+ 1602,
+ 1575,
+ 1601
+ ]
+ },
+ 1,
+ "Ha, Mim.",
+ 2,
+ "A revelação do Livro é de Deus, o Poderoso, o Prudentíssimo.",
+ 3,
+ "Não criamos os céus e a terra e tudo quanto existe entre ambos, senão com prudência, para um término prefixado. Mas osincrédulos desdenham as admoestações que lhes são feitas.",
+ 4,
+ "Dize-lhes: Porventura, tendes reparado nos que invocais, em lugar de Deus? Mostrai-me o que têm criado na terra! Têmparticipado, acaso, (da criação) dos céus? Apresentai-me um livro, revelado antes destes, ou um vestígio de ciência, seestiverdes certos.",
+ 5,
+ "Porém, haverá alguém mais extraviado do que quem invoca, em vez de Deus, os que jamais o atenderão, nem mesmo noDia da Ressurreição, uma vez que estão desatentos à sua própria invocação?",
+ 6,
+ "E quando os humanos forem congregados, serão (os invocados) seus inimigos e negarão a sua adoração.",
+ 7,
+ "E, quando lhes são recitados os Nossos lúcidos versículos, os incrédulos dizem, da verdade que lhes chega: Isto é puramagia!",
+ 8,
+ "Ou dizem: Ele o forjou! Dize-lhes: Se o forjei, nada podereis obter de Deus para mim. Ele conhece, melhor do queninguém, o que tentais difamar. Basta Ele por Testemunha, entre vós e mim. E Ele é o Indulgente, o Misericordiosíssimo.",
+ 9,
+ "Dize-lhes (mais): Não sou um inovador entre os mensageiros, nem sei o que será de mim ou de vós. Não sigo mais do queaquilo que me tem sido revelado, e não sou mais do que um elucidativo admoestador.",
+ 10,
+ "Dize: Vede! Se (o Alcorão) emana de Deus e vós o negais, e mesmo um israelita confirma a sua autenticidade e nele crê, vós vos ensoberbeceis! Sabei que Deus não ilumina os iníquos!",
+ 11,
+ "E os incrédulos dizem aos fiéis: Se esta mensagem fosse uma boa coisa, (tais humanos) não se teriam antecipado a nós. Ecomo não se guiam por ela, dizem: Isto é uma antigo falsidade!",
+ 12,
+ "Porém, antes deste, já existia o Livro de Moisés, o qual era guia e misericórdia. E este (Alcorão) é um livro que ocorrobora, em língua árabe, para admoestar os iníquos, e é alvíssaras para os benfeitores.",
+ 13,
+ "Aqueles que dizem: Nosso Senhos é Deus, e permanecem firmes, não pensa por quanto houverem feito.",
+ 14,
+ "Estes serão os diletos, do Paraíso, onde morarão eternamente, em recompensa por quanto houverem feito.",
+ 15,
+ "E recomendamos ao homem benevolência para com os seus pais. Com dores, sua mãe o carrega durante a sua gestação e, posteriormente, sofre as dores do seu parto. E de sua concepção até à sua ablactação há um espaço de trinta meses, quandoalcança a puberdade e, depois, ao atingir quarenta anos, diz: Ó Senhor meu, inspira-me, para praticar o bem que Tecompraz, e faze com que minha prole seja virtuosa. Em verdade, converto-me a Ti, e me conto entre os muçulmanos.",
+ 16,
+ "Tais são aqueles dos quais aceitamos o melhor do que têm feito, e lhes absolvemos as faltas, (contando-os) entre osdiletos do Paraíso, porque é uma promessa verídica, que lhes foi anunciada.",
+ 17,
+ "E há quem diga aos seus pais: Que vergonha para ambos! Pretendeis, porventura, prometer-me que serei ressuscitado, sendo que gerações anteriores a mim têm passado (sem renascer outra vez)? E ambos interpelarão Deus, (e reprovarão ofilho): Ai de ti! Crê, porque a promessa de Deus é infalível! Porém, ele lhes diz: Estas não são senão fábulas dos primitivos!",
+ 18,
+ "Tais são aqueles que mereceram a sentença, juntamente com os seus antepassados, gerações de gênios e humanos, porqueforam desventurados.",
+ 19,
+ "E para todos haverá graus, segundo o que fizeram, para que Ele lhes pague pelas suas recompensas, e para que não sejamdefraudados.",
+ 20,
+ "E no dia em que os incrédulos forem colocados perante o fogo, (ser-lhes-á dito): Aproveitastes e gozastes os vossosdeleites na vida terrena! Hoje, porém, sereis retribuídos com o afrontoso castigo por vosso ensoberbecimento e depravaçãona terra.",
+ 21,
+ "Menciona-lhes o irmão de Ad (Hud), que admoestou o seu povo nas dunas, embora já tivesse havido admoestadoresantes e depois dele (que lhes disseram): Nada adoreis além de Deus, porque temo por vós o castigo do dia aziago.",
+ 22,
+ "Disseram-lhe: Vieste, acaso, para desviar-nos das nossas divindades? Se és um dos verazes, envia-nos a calamidadecom que nos ameaças!",
+ 23,
+ "Respondeu-lhes: O conhecimento (disso) só está nas mãos de Deus! Eu vos proclamo a missão que me tem sidoencomendada; porém, vejo que sois um povo insipiente!",
+ 24,
+ "Mas quando viram aquilo (o castigo), como nuvens, avançando sobre os seus vales, disseram: Esta é uma nuvem dechuva! Retrucou-lhes: Qual! É a (calamidade) que desejastes fosse apressada; um vento que encerra um doloroso castigo!",
+ 25,
+ "Arrasará tudo, segundo os desígnios do seu Senhor! E, ao amanhecer, nada se via, além (das ruínas) dos seus lares. Assim castigamos os pecadores!",
+ 26,
+ "Em verdade, estabelecemo-los naquilo que não vos estabelecemos (ó coraixitas). E os dotamos de audição, de visão ede intelecto; porém, de nada lhes valeram os seus ouvidos, as suas vistas e as suas mentes, porque negaram os versículos deDeus e os envolveu aquilo de que escarneciam.",
+ 27,
+ "(Ó maquenses) Destruímos as cidades que vos rodeavam, e lhes diversificamos os sinais, para que se convertessem.",
+ 28,
+ "Por que, então, não os socorreram as divindades que haviam adotado, além de Deus, para aproximá-los d'Ele? Qual! Eles se extraviaram, mas tamanha foi a sua falsidade e a sua invenção.",
+ 29,
+ "Recorda-te de quando te enviamos um grupo de gênios, para escutar o Alcorão. E quando assistiam à recitação disseram: Escutai em silêncio! E quando terminaste a recitação, volveram ao seu povo, para admoestá-lo.",
+ 30,
+ "Disseram: Ó povo nosso, em verdade escutamos a leitura de um Livro, que foi revelado depois do de Moisés, corroborante dos anteriores, que conduz o homem à verdade e ao caminho reto.",
+ 31,
+ "Ó povo nosso, obedecei ao predicador de Deus e crede nele, pois (Deus) vos absolverá as faltas e vos livrará de umdoloroso castigo.",
+ 32,
+ "Quanto àqueles que não atenderem ao predicador de Deus, saibam que na terra não poderão frustar (os desígnios deDeus), nem encontrarão protetores, em vez d'Ele. Estes estão em um evidente erro.",
+ 33,
+ "Não reparam, acaso, em que Deus, que criou os céus e a terra sem Se esforçar, é capaz de ressuscitar os mortos? Sim! Porque é Onipotente.",
+ 34,
+ "E no dia em que os incrédulos forem colocados perante o fogo (ser-lhes-á dito): Acaso, não é isto Verdade? Responderão: Sim, por nosso Senhor!",
+ 35,
+ "Persevera, pois, como o fizeram os inflexíveis, entre os mensageiros, e que foram ameaçados, pensarão não haverpermanecido (no mundo terreno) mais do que uma hora de um só dia. Eis aqui a Mensagem! Porventura, serão aniquiladosoutros, além dos depravados!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/47.json b/share/quran-json/TheQuran/pt/47.json
new file mode 100644
index 0000000..966e79b
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/47.json
@@ -0,0 +1,92 @@
+[
+ {
+ "id": "47",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Muhammad",
+ "translated_name": "Muhammad",
+ "verse_count": 38,
+ "slug": "muhammad",
+ "codepoints": [
+ 1605,
+ 1581,
+ 1605,
+ 1583
+ ]
+ },
+ 1,
+ "Quanto aos incrédulos, que desencaminham os demais da senda de Deus, Ele desvanecerá as suas ações.",
+ 2,
+ "Outrossim, quanto aos fiéis, que praticam o bem e crêem no que foi revelado a Mohammad - esta é a verdade do seuSenhor - Deus absolverá as suas faltas e lhes melhorará as condições.",
+ 3,
+ "(Isso não ocorrerá com os incrédulos) porque os incrédulos seguem a falsidade, enquanto os fiéis seguem a verdade doseu Senhor. Assim Deus evidencia os Seus exemplos aos humanos.",
+ 4,
+ "E quando vos enfrentardes com os incrédulos, (em batalha), golpeai-lhes os pescoços, até que os tenhais dominado, etomai (os sobreviventes) como prisioneiros. Libertai-os, então, por generosidade ou mediante resgate, quando a guerra tiverterminado. Tal é a ordem. E se Deus quisesse, Ele mesmo ter-Se-ia livrado deles; porém, (facultou-vos a guerra) para quevos provásseis mutuamente. Quanto àqueles que foram mortos pela causa de Deus, Ele jamais desmerecerá as suas obras.",
+ 5,
+ "Iluminá-los-á e melhorará as suas condições,",
+ 6,
+ "E os introduzirá no Paraíso, que lhes tem sido anunciado.",
+ 7,
+ "Ó fiéis, se socorrerdes á Deus, Ele vos socorrerá e firmará os vosso passos.",
+ 8,
+ "Enquanto que os incrédulos... ai dele! Ele desvanecerá as sua ações.",
+ 9,
+ "Isso, por terem recusado o que Deus revelou; então, Ele tornará as suas obras sem efeito.",
+ 10,
+ "Porventura, não percorreram a terra, para ver qual foi a sorte dos seus antecessores? Deus os exterminou! Semelhantesorte haverá para os incrédulos.",
+ 11,
+ "(Tal não ocorrerá aos fiéis) porque Deus é o protetor dos fiéis, e os incrédulos jamais terão protetor algum.",
+ 12,
+ "Em verdade, Deus introduzirá os fiéis, que praticam o bem, em jardins, abaixo dos quais correm os rios; quanto aosincrédulos, que comem como come o gado, o fogolhes servirá de morada.",
+ 13,
+ "E quantas cidades, mais poderosas do que a tua, que te expulsou, destruímos, sem que ninguém tivesse pedidosocorrê-las!",
+ 14,
+ "Porventura, aqueles que observam a evidência do seu Senhor poderão ser equiparados àqueles cujas ações foramabrilhantadas e que se entregaram às suas luxúrias?",
+ 15,
+ "Eis aqui uma descrição do Paraíso, que foi prometido aos tementes: Lá há rios de água impoluível; rios de leite de saborinalterável; rios de vinho deleitante para os que o bebem; e rios de mel purificado; ali terão toda a classe de frutos, com aindulgência do seu Senhor. Poderá isto equipar-se ao castigo daqueles que permanecerão eternamente no fogo, a quem serádada a beber água fervente, a qual lhes dilacerará as entranhas?",
+ 16,
+ "E entre eles, há os que te escutam e, ao se retirarem da tua assembléia, dizem, àqueles, que foram agraciados com a sabedoria: Que é que foi dito agora? Tais são osque têm os seus corações sigilados por Deus, porque se entregam às suas luxúrias!",
+ 17,
+ "Por outra, quanto àqueles que os orientam, Ele lhes aumenta a orientação e lhes concede piedade.",
+ 18,
+ "Porventura, aguardam algo, a não ser a Hora, que os açoutará subitamente? Já lhes chegaram os indícios. De que lhesservirá lhes ser recordado aquilo que os surpreenderá?",
+ 19,
+ "Sabe, portanto, que não há mais divindade, além de Deus e implora o perdão das tuas faltas, assim como das dos fiéis edas fiéis, porque Deus conhece as vossas atividades e os vossos destinos.",
+ 20,
+ "Os fiéis dizem: Por que não nos foi revelada uma surata? Porém, quando é revelada uma surata peremptória, em que semenciona o combate, tu vês os que abrigam a morbidez em seus corações, que te olham com olhares de quem está na agoniada morte. É melhor para eles.",
+ 21,
+ "Obedecer e falar o que é justo. Porém, no momento decisivo, quão melhor seria, para eles, se fossem sinceros para comDeus!",
+ 22,
+ "É possível que causeis corrupção na terra e que rompais os vínculos consangüíneos, quando assumirdes o comando.",
+ 23,
+ "Tais são aqueles que Deus amaldiçoou, ensurdecendo-os e cegando-lhes as vistas.",
+ 24,
+ "Não meditam, acaso, no Alcorão, ou que seus corações são insensíveis?",
+ 25,
+ "Certamente, aqueles que renunciaram à fé, depois de lhes haver sido evidenciada a orientação, foram seduzidos e lhesfoi dada esperança pelo demônio.",
+ 26,
+ "Isso, porque disseram àqueles que recusaram o que Deus revelou: Obedecer-vos-emos em certas coisas! Porém, Deusconhece os seus segredos.",
+ 27,
+ "Assim, o que farão, quando os anjos se apossarem das suas almas e lhes golpearem os rostos e os dorsos?",
+ 28,
+ "Isso, porque se entregaram ao que indigna Deus, e recusaram ao que Lhe agradava; por isso, Ele tornou sem efeito assuas obras.",
+ 29,
+ "Pensam, acaso, aqueles que abrigam a morbidez em seus corações, que Deus não descobrirá os seus rancores?",
+ 30,
+ "E, se quiséssemos, tê-los-íamos mostrado, mas tu os conhecerás por suas fisionomias. Sem dúvida que os reconhecerás, pelo modo de falar! E Deus conhece as vossas ações.",
+ 31,
+ "Sabei que vos provaremos, para certificar-Nos de quem são os combatentes e perseverantes, dentre vós, e paraprovarmos a vossa reputação.",
+ 32,
+ "Em verdade, os incrédulos, que desencaminham os demais da senda de Deus e contrariam o Mensageiro, depois de lhesser evidenciada a orientação, em nada prejudicarão Deus, que tomará as suas obras sem efeito.",
+ 33,
+ "Ó fiéis, obedecei a Deus e ao Mensageiro, e não desmereçais as vossas ações.",
+ 34,
+ "Em verdade, quanto aos incrédulos, que desencaminham os demais da senda de Deus e morrem na incredulidade, Deusjamais os perdoará.",
+ 35,
+ "Não fraquejeis (ó fiéis), pedindo a paz, quando sois superiores; sabei que Deus está convosco e jamais defraudará asvossas ações.",
+ 36,
+ "A vida terrena é tão-somente jogo e diversão. Porém, se crerdes e fordes tementes, Deus vos concederá as vossasrecompensas, sem vos exigir nada dos vossos bens.",
+ 37,
+ "Porque, se vo-lo pedisse ou vo-lo exigisse, escatimá-los-íeis então, revelando assim os vossos rancores.",
+ 38,
+ "Eis, então, que sois convidados a contribuir na causa de Deus. Porém, entre vós, há aqueles que mesquinham; mas quemmesquinha certamente o faz em detrimento próprio; sabei que Deus é, por Si, Opulento, enquanto que vós sois pobres. E serecusardes (contribuir), suplantar-vos-á por outro povo, que não será como vós."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/48.json b/share/quran-json/TheQuran/pt/48.json
new file mode 100644
index 0000000..75de03b
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/48.json
@@ -0,0 +1,75 @@
+[
+ {
+ "id": "48",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Fath",
+ "translated_name": "The Victory",
+ "verse_count": 29,
+ "slug": "al-fath",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1601,
+ 1578,
+ 1581
+ ]
+ },
+ 1,
+ "Em verdade, temos te predestinado um evidente triunfo,",
+ 2,
+ "Para que Deus perdoe as tuas faltas, passadas e futuras, agraciando-te e guiando-te pela senda reta.",
+ 3,
+ "E para que Deus te secunde poderosamente.",
+ 4,
+ "Ele foi Quem infundiu o sossego nos corações dos fiéis para acrescentar fé à sua fé. A Deus pertencem os exércitos doscéus e da terra, porque Deus é Prudente, Sapientíssimo.",
+ 5,
+ "Para introduzir os fiéis e as fiéis em jardins, abaixo dos quais correm os rios, onde morarão eternamente, bem comoabsolver-lhes as faltas, porque é uma magnífica conquista (para o homem) ante Deus.",
+ 6,
+ "É castigar os hipócritas e as hipócritas, os idólatras e as idólatras que pensam mal a respeito de Deus. Que os açoite avicissitude! Deus os abominará, amaldiçoá-los-á e lhes destinará o inferno. Que péssimo destino!",
+ 7,
+ "A Deus pertencem os exércitos dos céus e da terra, porque Deus é Poderoso, Prudentíssimo.",
+ 8,
+ "Em verdade, enviamos-te por testemunha, alvissareiro e admoestador,",
+ 9,
+ "Para que creiais (ó humanos) em Deus e no Seu Mensageiro, socorrendo-O, honrando-O e glorificando-O, pela manhã e àtarde.",
+ 10,
+ "Em verdade, aqueles que te juram fidelidade, juram fidelidade a Deus. A Mão de Deus está sobre as suas mão; porém, quem perjurar, perjurará em prejuízo próprio. Quanto àquele que cumprir o pacto com Deus, Ele lhe concederá umamagnífica recompensa.",
+ 11,
+ "Os que ficaram para trás, dentre os beduínos, dir-te-ão: Estávamos empenhados em (proteger) os nossos bens e as nossasfamílias; implora a Deus que nos perdoe! Dizem, com seus lábios, o que os seus corações não sentem. Dize-lhes: Quempoderia defender-vos de Deus, se Ele quisesse prejudicar-vos ou beneficiar-vos? Porém, Deus está inteirado de tudo quantofazeis.",
+ 12,
+ "Qual! Imagináveis que o Mensageiro e os fiéis jamais voltariam às suas famílias; tal pensamento desenvolvia-se nosvossos corações! E pensáveis maldosamente, porque sois um povo desventurado.",
+ 13,
+ "E há aqueles que não crêem em Deus e em Seu Mensageiro! Certamente temos destinado, para os incrédulos, o tártaro.",
+ 14,
+ "A Deus pertence o reino dos céus e da terra. Ele perdoa quem quer e castiga quem Lhe apraz; sabei que Deus éIndulgente, Misericordiosíssimo.",
+ 15,
+ "Quando marchardes para vos apoderardes dos despojos, os que ficarem para trás vos dirão: Permiti que vos sigamos! Pretendem trocar as palavras de Deus. Dize-lhes: Jamais nos seguireis, porque Deus já havia declarado (isso) antes. Entãovos dirão: Não! É porque nos invejais. Qual! É que não compreendem, senão poucos.",
+ 16,
+ "Dize aos que ficaram para trás, dentre os beduínos: Sereis convocados para enfrentar-vos com um povo dado à guerra; então, ou vós os combatereis ou eles se submeterão. E se obedecerdes, Deus vos concederá uma magnífica recompensa; poroutra, se vos recusardes, como fizestes anteriormente, Ele vos castigará dolorosamente.",
+ 17,
+ "Não terão culpa o cego, o coxo, o enfermo. Quanto àquele que obedecer a Deus e ao Seu Mensageiro, Ele o introduziráem jardins, abaixo dos quais correm os rios; por outra, quem desdenhar, será castigado dolorosamente.",
+ 18,
+ "Deus Se congratulou com os fiéis, que te juraram fidelidade, debaixo da árvore. Bem sabia quanto encerravam os seuscorações e, por isso infundiu-lhes o sossego e os recompensou com um triunfo imediato,",
+ 19,
+ "Bem como com muitos ganhos que obtiveram, porque Deus é Poderoso, Prudentíssimo.",
+ 20,
+ "Deus vos prometeu muitos ganhos, que obtereis, ainda mais, adiantou-vos estes e conteve as mãos dos homens, para quesejam um sinal para os fiéis e para guiar-vos para uma senda reta.",
+ 21,
+ "E outros ganhos que não pudestes conseguir, Deus os conseguiu, e Deus é Onipotente.",
+ 22,
+ "E ainda que o incrédulos vos combatessem, certamente debandariam, pois não achariam protetor nem defensor.",
+ 23,
+ "Tal foi a lei de Deus no passado; jamais acharás mudanças na lei de Deus.",
+ 24,
+ "Ele foi Quem conteve as mãos deles, do mesmo modo como conteve as vossas mãos no centro de Makka, depois de voster feito prevalecer sobre eles; sabei que Deus bem vê tudo quanto fazeis.",
+ 25,
+ "Foram eles, os incrédulos, os que vos impediram de entrar na Mesquita Sagrada e impediram que a oferenda chegasse aoseu destino. E se não houvesse sido por uns homens e mulheres fiéis, que não podíeis, distinguir, e que poderíeis ter mortosem o saber, incorrendo, assim, inconscientemente, num crime hediondo, Ter-vos-íamos facultado combatê-lo; foi assimestabelecido, para que Deus pudesse agraciar com a Sua misericórdia quem Lhe aprouvesse. Se vos tivesse sido possívelsepará-los, teríamos afrontado os incrédulos com um doloroso castigo.",
+ 26,
+ "Quando os incrédulos fomentaram o fanatismo - fanatismo da idolatria - em seus corações Deus infundiu o sossego emSeu Mensageiro e nos fiéis, e lhes impôs a norma da moderação, pois eram merecedores e dignos dela; sabei que Deus éOnisciente.",
+ 27,
+ "Em verdade, Deus confirmou a visão do Seu Mensageiro: Se Deus quisesse, entraríeis tranqüilos, sem temor, na SagradaMesquita; uns com os cabelos raspados, outros com os cabelos cortados, sem medo. Ele sabe o que vós ignorais, e vosconcedeu, não obstante isso, um triunfo imediato.",
+ 28,
+ "Ele foi Quem enviou o Seu Mensageiro com a orientação e com a verdadeira religião, para fazê-las prevalecer sobretodas as outras religiões; e Deus é suficiente Testemunha disso.",
+ 29,
+ "Mohammad é o Mensageiro de Deus, e aqueles que estão com ele são severos para com os incrédulos, porémcompassivos entre si. Vê-los-ás genuflexos, prostrados, anelando a graça de eus e a Sua complacência. Seus rostos estarãomarcados com os traços da prostração. Tal é o seu exemplo na tora e no Evangelho, como a semente que brota, sedesenvolve e se robustece, e se firma em seus talos, compraz aos semeadores, para irritar os incrédulos. Deus prometeu aosfiéis, que praticam o bem, indulgência e uma magnifica recompensa."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/49.json b/share/quran-json/TheQuran/pt/49.json
new file mode 100644
index 0000000..8ee3e39
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/49.json
@@ -0,0 +1,55 @@
+[
+ {
+ "id": "49",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Hujurat",
+ "translated_name": "The Rooms",
+ "verse_count": 18,
+ "slug": "al-hujurat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1581,
+ 1580,
+ 1585,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "Ó fiéis, não vos antecipeis a Deus e ao Seu Mensageiro, e temei a Deus, porque Deus é Oniouvinte, Sapientíssimo.",
+ 2,
+ "Ó fiéis, não altereis as vossas vozes acima da voz do Profeta, nem lhe faleis em voz alta, como fazeis entre vós, para nãotornardes sem efeito as vossas obras, involuntariamente.",
+ 3,
+ "Sabei que os que baixam as suas vozes na presença do Mensageiro de Deus, são aqueles cujos corações Deus testou paraa piedade; obterão o perdão e uma magnífica recompensa.",
+ 4,
+ "Em verdade, a maioria daqueles que gritam (o teu nome), do lado de fora dos (teus) aposentos, é insensata.",
+ 5,
+ "Mas, se aguardassem pacientemente, até que tu saísses ao seu encontro, seria muito melhor para eles. Deus é Ingulgente, Misericordiosíssimo.",
+ 6,
+ "Ó fiéis, quando um ímpio vos trouxer uma notícia, examinai-a prudentemente, para não prejudicardes ninguém, porignorância, e não vos arrependerdes depois.",
+ 7,
+ "E sabei que o Mensageiro de Deus está entre vós e que se ele vos obedecesse em muitos assuntos, cairíeis em desgraça. Porém, Deus vos inspirou o amor pela fé e adornou com ela vossos corações e vos fez repudiar a incredulidade, aimpiedade e a rebeldia. Tais são os sensatos.",
+ 8,
+ "Isso, pela graça e favor de Deus; e Deus é Prudente, Sapientíssimo.",
+ 9,
+ "E quando dois grupos de fiéis combaterem entre si, reconciliai-os, então. E se um grupo provocar outro, combatei oprovocador, até que se cumpram os desígnios de Deus. Se porém, se cumprirem (os desígnios), então reconciliai-oseqüitativamente e sede equânimes, porque Deus aprecia os equânimes.",
+ 10,
+ "Sabe que os fiéis são irmãos uns dos outros; reconciliai, pois, os vossos irmãos, e temei a Deus, para vos mostrarmisericórdia.",
+ 11,
+ "Ó fiéis, que nenhum povo zombe do outro; é possível que (os escarnecidos) sejam melhores do que eles (osescarnecedores). Que tampouco nenhuma mulher zombe de outra, porque é possível que esta seja melhor do que aquela. Nãovos difameis, nem vos motejeis com apelidos mutuamente. Muito vil é o nome que detona maldade (para ser usado poralguém), depois de Ter recebido a fé! E aqueles que não se arrependem serão os iníquos.",
+ 12,
+ "Ó fiéis, evitai tanto quanto possível a suspeita, porque algumas suspeitas implicam em pecado. Não vos espreiteis, nemvos calunieis mutuamente. Quem de vós seria capaz de comer a carne do seu irmão morto? Tal atitude vos causa repulsa! Temei a Deus, porque Ele é Remissório, Misericordiosíssimo.",
+ 13,
+ "Ó humanos, em verdade, Nós vos criamos de macho e fêmea e vos dividimos em povos e tribos, para reconhecerdes unsaos outros. Sabei que o mais honrado, dentre vós, ante Deus, é o mais temente. Sabei que Deus é Sapientíssimo e está beminteirado.",
+ 14,
+ "Os beduínos dizem: Cremos! Dize-lhes: Qual! Ainda não credes; deveis dizer: Tornamo-nos muçulmanos, pois que a féainda não penetrou vossos corações. Porém, se obedecerdes a Deus e ao Seu Mensageiro, em nada serão diminuídas asvossas obras, porque Deus é Indulgente, Misericordiosíssimo.",
+ 15,
+ "Somente são fiéis aqueles que crêem em Deus e em Seu Mensageiro e não duvidam, mas sacrificam os seus bens e assuas pessoas pela causa de Deus. Estes são os verazes!",
+ 16,
+ "Dize-lhes: Pretendeis, acaso, ensinar a Deus a vossa religião, quando Deus bem conhece tudo quanto existe nos céus e naterra? Sabei que Deus é Onisciente.",
+ 17,
+ "Dizem que te fizeram um favor por se terem tornado muçulmanos. Dize-lhes: não considereis a vossa conversão um favorpara mim; outrossim, é a Deus que deveis o mérito de vos Ter encaminhado à fé, se sois verazes.",
+ 18,
+ "Sabei que Deus conhece o mistério dos céus e da terra, e Deus bem vê tudo o quanto fazeis!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/5.json b/share/quran-json/TheQuran/pt/5.json
new file mode 100644
index 0000000..255026b
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/5.json
@@ -0,0 +1,259 @@
+[
+ {
+ "id": "5",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Ma'idah",
+ "translated_name": "The Table Spread",
+ "verse_count": 120,
+ "slug": "al-maidah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1605,
+ 1575,
+ 1574,
+ 1583,
+ 1577
+ ]
+ },
+ 1,
+ "Ó fiéis, cumpri com as vossas obrigações. Foi-vos permitido alimentar-vos de reses, exceto o que vos é anunciado agora; está-vos vedada a caça, sempre que estiverdes consagrados à peregrinação. Sabei que Deus ordena o que Lhe apraz.",
+ 2,
+ "Ó fiéis, não profaneis os relicários de Deus, o mês sagrado, as oferendas, os animais marcados, nem provoqueis aquelesque se encaminham à Casa Sagrada, à procura da graça e da complacência do seu Senhor. E quando estiverdes deixado osrecintos sagrados, caçai, então, se quiserdes. Que o ressentimento contra aqueles que trataram de impedir-vos de irdes àMesquita Sagrada não vos impulsione a provocá-los, outrossim, auxiliai-vos na virtude e na piedade. Não vos auxilieismutuamente no pecado e na hostilidade, mas temei a Deus, porque Deus é severíssimo no castigo.",
+ 3,
+ "Estão-vos vedados: a carniça, o sangue, a carne de suíno e tudo o que tenha sido sacrificado com a invocação de outronome que não seja o de Deus; os animais estrangulados, os vitimados a golpes, os mortos por causa de uma queda, ouchifrados, os abatidos por feras, salvo se conseguirdes sacrificá-los ritualmente; o (animal) que tenha sido sacrificado nosaltares (). Também vos está vedado fazer adivinhações com setas, porque isso é uma profanação. Hoje, os incrédulosdesesperam por fazer-vos renunciar à vossa religião. Não os temais, pois, e temei a Mim! Hoje, completei a religião paravós; tenho-vos agraciado generosamente sem intenção de pecar, se vir compelido a (alimentar-se do vedado), saiba queDeus é Indulgente, Misericordiosíssimo.",
+ 4,
+ "Consultar-te-ão sobre o que lhes foi permitido; dize-lhes: Foram-vos permitidas todas as coisas sadias, bem como tudo oque as aves de rapina, os cães por vós adestrados, conforme Deus ensinou, caçarem para vós. Comei do que eles tivessemapanhado para vós e sobre isso invocai Deus, e temei-O, porque Deus é destro em ajustar contas.",
+ 5,
+ "Hoje, estão-vos permitidas todas as coisas sadias, assim como vos é lícito o alimento dos que receberam o Livro, damesma forma que o vosso é lícito para eles. Está-vos permitido casardes com as castas, dentre as fiéis, e com as castas, dentre aquelas que receberam o Livro antes de vós, contanto que as doteis e passeis a viver com elas licitamente, nãodesatinadamente, nem as envolvendo em intrigas secretas. Quanto àqueles que renegar a fé, sua obra tornar-se-á sem efeito eele se contará, no outro mundo, entre os desventurados.",
+ 6,
+ "Ó fiéis, sempre que vos dispuserdes a observar a oração, lavai o rosto, as mãos e os antebraços até aos cotovelos; esfregai a cabeça, com as mãos molhadas e lavai os pés, até os tornozelos. E, quando estiverdes polutos, higienizai-vos; porém, se estiverdes enfermos ou em viagem, ou se vierdes de lugar escuso ou tiverdes tocado as mulheres, semencontrardes água, servi-los do tayamum com terra limpa, e esfregai com ela os vossos rostos e mãos. Deus não desejaimpor-vos carga alguma; porém, se quer purificar-vos e agraciar-vos, é para que Lhe agradeçais.",
+ 7,
+ "E recordai-vos das mercês de Deus para convosco e da promessa que recebeu de vós, quando dissestes: Escutamos eobedecemos! Temei, pois, a Deus, porque Ele bem conhece as intimidades dos corações.",
+ 8,
+ "Ó fiéis, sede perseverantes na causa de Deus e prestai testemunho, a bem da justiça; que o ódio aos demais não vosimpulsione a serdes injustos para com eles. Sede justos, porque isso está mais próximo da piedade, e temei a Deus, porqueEle está bem inteirado de tudo quanto fazeis.",
+ 9,
+ "Deus prometeu aos fiéis que praticam o bem uma indulgência e uma magnífica recompensa.",
+ 10,
+ "Porém, os incrédulos, que desmentem os nossos versículos, serão os companheiros do fogo.",
+ 11,
+ "Ó fiéis, recordai-vos das mercês de Deus para convosco, pois quando um povo intentou agredir-vos, Ele o conteve. Temei a Deus, porquanto a Deus se encomendam os fiéis.",
+ 12,
+ "Deus cumpriu uma antiga promessa feita aos israelitas, e designou-lhes doze chefes, dentre eles, dizendo: Estareiconvosco se observardes a oração, pagardes o zakat, credes nos Meus mensageiros, socorrerde-los e emprestardesespontaneamente a Deus; absolverei as vossas faltas e vos introduzirei em jardins, abaixo dos quais correm os rios. Masquem de vós pecar, depois disto, desviar-se-á da verdadeira senda.",
+ 13,
+ "Porém, pela violação de sua promessa, amaldiçoamo-los e endurecemos os seus corações. Eles deturparam as palavras (do Livro) e se esqueceram de grande parte que lhes foi revelado; não cessas de descobrir a perfídia de todos eles, salvo deuma pequena parte; porém, indulta-os e perdoa-lhes os erros, porque Deus aprecia os benfeitores.",
+ 14,
+ "E também aceitamos a promessa daqueles que disseram: Somos cristãos! Porém, esqueceram-se de grande parte do quelhes foi recomendado, pelo que disseminamos a inimizade e o ódio entre eles, até ao Dia da Ressurreição. Deus os inteirará, então, do que cometeram.",
+ 15,
+ "Ó adeptos do Livro, foi-vos apresentado o Nosso Mensageiro para mostrar-vos muito do que ocultáveis do Livro eperdoar-vos em muito. Já vos chegou de Deus uma Luz e um Livro lúcido,",
+ 16,
+ "Pelo qual Deus conduzirá aos caminhos da salvação aqueles que procurarem a Sua complacência e, por Sua vontade, tirá-los-á das trevas e os levará para a luz, encaminhando-os para a senda reta.",
+ 17,
+ "São blasfemos aqueles que dizem: Deus é o Messias, filho de Maria. Dize-lhes: Quem possuiria o mínimo poder paraimpedir que Deus, assim querendo, aniquilasse o Messias, filho de Maria, sua mãe e todos os que estão na terra? Só a Deuspertence o reino dos céus e da terra, e tudo quanto há entre ambos. Ele cria o que Lhe apraz, porque é Onipotente.",
+ 18,
+ "Os judeus e os cristãos dizem: Somos os filhos de Deus e os Seus prediletos. Dize-lhes: Por que, então, Ele vos castigapor vossos pecados? Qual! Sois tão-somente seres humanos como os outros! Ele perdoa a quem Lhe apraz e castiga quemquer. Só a Deus pertence o reino dos céus e da terra e tudo quanto há entre ambos, e para Ele será o retorno.",
+ 19,
+ "Ó adeptos do Livro, foi-vos apresentado o Nosso Mensageiro, para preencher a lacuna (na série) dos mensageiros, a fimde que não digais. Não nos chegou alvissareiro nem admoestador algum! Sim, já vos chegou um alvissareiro e admoestador, porque Deus é Onipotente.",
+ 20,
+ "Recorda-lhes de quando Moisés disse ao seu povo: Ó povo meu, lembrai-vos das mercês e Deus para convosco, quandofez surgir, dentre vós, profetas, e vos fez reis e vos concedeu o que não havia concedido a nenhum dos vossocontemporâneos.",
+ 21,
+ "Ó povo meu, entrai na terra Sagrada que Deus vos assinalou, e não retrocedais, porque se retrocederdes, sereisdesventurados.",
+ 22,
+ "Disseram-lhe: Ó Moisés, dominam-na homens poderosos e nela não poderemos entrar, a menos que a abandonem. Se aabandonarem, então entraremos.",
+ 23,
+ "E dois tementes, aos quais Deus havia agraciado, disseram: Entrai, de assalto, pelo pórtico; porque quando logrardestranspô-lo, sereis, sem dúvida, vencedores; encomendai-vos a Deus, se sois fiéis.",
+ 24,
+ "Disseram-lhe: Ó Moisés, jamais nela (cidade) entraremos, enquanto lá permanecerem. Vai tu, com o teu Senhor, ecombatei-os, enquanto nós permaneceremos aqui sentados.",
+ 25,
+ "(Moisés) disse: Ó Senhor meu, somente posso ter controle sobre mim e sobre o meu irmão. Separa-nos, pois, dosdepravados.",
+ 26,
+ "Então (Deus) lhe disse: Está-lhes-á proibida a entrada (na terra Sagrada). Durante quarenta anos andarão errantes, pelaterra. Não te mortifiques pela gente depravada.",
+ 27,
+ "E conta-lhes (ó Mensageiro) a história dos dois filhos de Adão, quando apresentaram duas oferendas; foi aceita a de ume recusada a do outro. Disse aqueles cuja oferenda foi recusada: Juro que te matarei. Disse-lhe (o outro): Deus só aceita (aoferenda) dos justos.",
+ 28,
+ "Ainda que levantasses a mão para assassinar-me, jamais levantaria a minha para matar-te, porque temo a Deus, Senhordo Universo.",
+ 29,
+ "Quero que arques com a minha e com a tua culpa, para que sejas um dos condenados ao inferno, que é o castigo dosiníquos.",
+ 30,
+ "E o egoísmo (do outro) induziu-o a assassinar o irmão; assassinou-o e contou-se entre os desventurados.",
+ 31,
+ "E Deus enviou um corvo, que se pôs a escavar a terra para ensinar-lhe a ocultar o cadáver do irmão. Disse: Ai de mim! Não é verdade que não fui capaz de ocultar o cadáver do meu irmão, se até este corvo é capaz de fazê-lo? Contou-se, depois, entre os arrependidos.",
+ 32,
+ "Por isso, prescrevemos aos israelitas que quem matar uma pessoa, sem que esta tenha cometido homicídio ou semeado acorrupção na terra, será considerado como se tivesse assassinado toda a humanidade. Apesar dos Nossos mensageiros lhesapresentarem as evidências, a maioria deles comete transgressões na terra.",
+ 33,
+ "O castigo, para aqueles que lutam contra Deus e contra o Seu Mensageiro e semeiam a corrupção na terra, é que sejammortos, ou crucificados, ou lhes seja decepada a mão e o pé opostos, ou banidos. Tal será, para eles, um aviltamento nessemundo e, no outro, sofrerão um severo castigo.",
+ 34,
+ "Exceto aqueles que se arrependem, antes de caírem em vosso poder; sabei que Deus é Indulgente, Misericordiosíssimo.",
+ 35,
+ "Ó fiéis, temei a Deus, tratai de acercar-vos d'Ele e lutai pela Sua causa, quiçá assim prosperareis.",
+ 36,
+ "Ainda que os incrédulos possuíssem tudo quanto existisse na terra e outro tanto de igual valor, e o oferecessem pararedimir-se do suplício do Dia da Ressurreição, não lhos seria aceito; sofrerão, isso sim, um severo castigo.",
+ 37,
+ "Quererão sair do fogo; porém, nunca dele sairão, pois sofrerão um suplício eterno.",
+ 38,
+ "Quanto ao ladrão e à ladra, decepai-lhes a mão, como castigo de tudo quanto tenham cometido; é um exemplo, que emanade Deus, porque Deus é Poderoso, Prudentíssimo.",
+ 39,
+ "Aquele que, depois da sua iniqüidade, se arrepender e se emendar, saiba que Deus o absolverá, porque é Indulgente, Misericordiosíssimo.",
+ 40,
+ "Ignoras, acaso, que a Deus pertence a soberania dos céus e da terra? Ele castiga a quem deseja e perdoa a quem Lheapraz, porque é Onipotente.",
+ 41,
+ "Ó mensageiro, que não te atribulem aqueles que se degladiam na prática da incredulidade, aqueles que dizem com suasbocas: Cremos!, conquanto seus corações ainda não tenham abraçado a fé. Entre os judeus, há os que escutarão a mentira eescutarão mesmos outros, que não tenham vindo a ti. Deturpam as palavras, de acordo com a conveniência, e dizem (a seusseguidores): Se vos julgarem, segundo isto (as palavras deturpadas), aceitai-o; se não vos julgarem quanto a isso, precavei-vos! Porém, a quem Deus quiser pôr à prova, nada poderás fazer para livrá-lo de Deus. São aqueles cujoscorações Deus não purificará, os quais terão um aviltamento neste mundo, e no outro sofrerão um severo castigo.",
+ 42,
+ "São os que escutam a mentira, ávidos em devorar o que é ilícito. Se se apresentarem a ti, julga-os ou aparta-te deles, porque se te separares deles em nada poderão prejudicar-te; porém, se os julgares, faze-o eqüitativamente, porque Deusaprecia os justiceiros.",
+ 43,
+ "Por que recorrem a ti por juiz, quando têm a Tora que encerra o Juízo de Deus? E mesmo depois disso, eles logo viramas costas. Estes em nada são fiéis.",
+ 44,
+ "Revelamos a Tora, que encerra Orientação e Luz, com a qual os profetas, submetidos a Deus, julgam os judeus, bemcomo os rabinos e os doutos, aos quais estavam recomendadas a observância e a custódia do Livro de Deus. Não temais, pois, os homens, e temei a Mim, e não negocieis as Minhas leis a vil preço. Aqueles que ao julgarem, conforme o que Deustem revelado, serão incrédulos.",
+ 45,
+ "Nem (a Tora) temo-lhes prescrito: vida por vida, olho por olho, nariz por nariz, orelha por orelha, dente por dente e asretaliações tais e quais; mas quem indultar um culpado, isto lhe servirá de expiação. Aqueles que não julgarem conforme oque Deus tem revelado serão iníquos.",
+ 46,
+ "E depois deles (profetas), enviamos Jesus, filho de Maria, corroborando a Tora que o precedeu; e lhe concedemos oEvangelho, que encerra orientação e luz, corroborante do que foi revelado na Tora e exortação para os tementes.",
+ 47,
+ "Que os adeptos do Evangelho julguem segundo o que Deus nele revelou, porque aqueles que não julgarem conforme oque Deus revelou serão depravados.",
+ 48,
+ "Em verdade, revelamos-te o Livro corroborante e preservador dos anteriores. Julga-os, pois, conforme o que Deusrevelou e não sigas os seus caprichos, desviando-te da verdade que te chegou. A cada um de vós temos ditado uma lei e umanorma; e se Deus quisesse, teria feito de vós uma só nação; porém, fez-vos como sois, para testar-vos quanto àquilo que vosconcedeu. Emulai-vos, pois, na benevolência, porque todos vós retornareis a Deus, o Qual vos inteirará das vossasdivergências.",
+ 49,
+ "Incitamos-te a que julgues entre eles, conforme o que Deus revelou; e não sigas os seus caprichos e guarda-te de quem tedesviem de algo concernente ao que Deus te revelou. Se tu refutarem fica sabendo que Deus os castigará por seus pecados, porque muitos homens são depravados.",
+ 50,
+ "Anseiam, acaso, o juízo do tempo da insipiência? Quem melhor juiz do que Deus, para os persuadidos?",
+ 51,
+ "Ó fiéis, não tomeis por confidentes os judeus nem os cristãos; que sejam confidentes entre si. Porém, quem dentre vós ostomar por confidentes, certamente será um deles; e Deus não encaminha os iníquos.",
+ 52,
+ "Verás aqueles que abrigam a morbidez em seus corações apressarem-se em Ter intimidades com eles, dizendo: Tememos que nos açoite uma vicissitude! Oxalá Deus te apresente a vitória ou algum outro desígnio Seu e, então, arrepender-se-ão de tudo quanto haviam maquinado.",
+ 53,
+ "Os fiéis, então, dirão: São, acaso, aqueles que juravam solenemente por Deus, que estavam conosco? Suas obrastornar-se-ão sem efeito e será desventurados.",
+ 54,
+ "Ó fiéis, aqueles dentre vós que renegarem a sua religião, saibam que Deus os suplantará por outras pessoas, às quaisamará, as quais O amarão, serão compassivas para com os fiéis e severas para com os incrédulos; combaterão pela causa deDeus e não temerão censura de ninguém. Tal é a graça de Deus, que a concede a quem Lhe apraz, porque Deus éMunificente, Sapientíssimo.",
+ 55,
+ "Vossos reais confidentes são: Deus, Seu Mensageiro e os fiéis que observam a oração e pagam o zakat, genuflectindo-seante Deus.",
+ 56,
+ "Quanto àqueles que se voltam (em companheirismo) para Deus, Seu Mensageiro e os fiéis, saibam que os partidos deDeus serão os vencedores.",
+ 57,
+ "Ó fiéis, não tomeis por confidentes aqueles que receberam o Livro antes de vós, nem os incrédulos, que fizeram de vossareligião objeto de escárnio e passatempo. Temei, pois, a Deus, se sois verdadeiramente fiéis.",
+ 58,
+ "E quando fazeis a convocação para a oração, tomam-na como objeto de escárnio e passatempo. Isso, por sereminsensatos.",
+ 59,
+ "Dize-lhes: Ó adeptos do Livro, pretendeis vingar-vos de nós, somente porque cremos em Deus, em tudo quanto nos érevelado e em tudo quanto foi revelado antes? A maioria de vós é depravada.",
+ 60,
+ "Dize ainda: Poderia anunciar-vos um caso pior do que este, ante os olhos de Deus? São aqueles a quem Deusamaldiçoou, abominou e converteu em símios, suínos e adoradores do sedutor; estes, encontram-se em pior situação, e maisdesencaminhados da verdadeira senda.",
+ 61,
+ "Quando se apresentam a vós, dizem: Cremos!, embora cheguem disfarçados com a incredulidade, e com ela saiam. MasDeus sabe melhor do que ninguém o que ocultam.",
+ 62,
+ "Verás que muitos deles se precipitam no pecado, na hostilidade e na saciação do que é ilícito. Quão detestável é o quefazem!",
+ 63,
+ "Por que os rabinos e os doutos não lhes proibiram blasfemarem e se fartarem do que é ilícito? Quão detestáveis são assuas obras!",
+ 64,
+ "O judeus disseram: A mão de Deus está cerrada! Que suas mãos sejam cerradas e sejam amaldiçoados por tudo quantodisseram! Qual! Suas mão estão abertas! Ele prodigaliza as Suas graças como Lhe apraz. E, sem dúvida, o que te foirevelado por teu Senhor exacerbará a transgressão e a incredulidade de muitos deles. Porém, infundimo-lhes a inimizade e orancor, até ao Dia da Ressurreição. Toda vez que acenderem o fogo da guerra, Deus os extinguirá. Percorrem a terra, corrompendo-a; porém, Deus não aprecia os corruptores.",
+ 65,
+ "Mas se os adeptos do Livro tivessem acreditado (em Nós) e temido, tê-los-íamos absolvido dos pecados, tê-los-íamosintroduzido nos jardins do prazer.",
+ 66,
+ "E se tivessem sido observantes da Tora, do Evangelho e de tudo quanto lhes foi revelado por seu Senhor, alimentar-se-iam com o que está acima deles e do que se encontra sob seus pés. Entre eles, há alguns moderados; porém, quão péssimo é o que faz a maioria deles!",
+ 67,
+ "Ó Mensageiro, proclama o que te foi revelado por teu Senhor, porque se não o fizeres, não terás cumprido a Sua Missão. Deus te protegerá dos homens, porque Deus não ilumina os incrédulos.",
+ 68,
+ "Dize: Ó adeptos do Livro, em nada vos fundamentareis, enquanto não observardes os ensinamentos da Tora, doEvangelho e do que foi revelado por vosso Senhor! Porém, o que te foi revelado por teu Senhor, exacerbará a transgressão ea incredulidade de muitos deles. Que não te penalizem os incrédulos.",
+ 69,
+ "Os fiéis, os judeus, os sabeus e os cristãos, que crêem em Deus, no Dia do Juízo Final e praticam o bem, não serãopresas do temor, nem se atribularão.",
+ 70,
+ "Havíamos aceito o compromisso dos israelitas, e lhes enviamos os mensageiros. Mas, cada vez que um mensageiro lhesanunciava algo que não satisfazia os seus interesses, desmentiam uns e assassinavam outros.",
+ 71,
+ "Pressupunham que nenhuma sedição recairia sobre eles; e, então, tornaram-se deliberadamente cegos e surdos. Nãoobstante Deus tê-los absolvido, muitos deles voltaram à cegueira e à surdez; mas Deus bem vê tudo quanto fazem.",
+ 72,
+ "São blasfemos aqueles que dizem: Deus é o Messias, filho de Maria, ainda quando o mesmo Messias disse: Ó israelitas, adorai a Deus, Que é meu Senhor e vosso. A quem atribuir parceiros a Deus, ser-lhe-á vedada a entrada no Paraíso e suamorada será o fogo infernal! Os iníquos jamais terão socorredores.",
+ 73,
+ "São blasfemos aqueles que dizem: Deus é um da Trindade!, portanto não existe divindade alguma além do Deus Único. Se não desistirem de tudo quanto afirmam, um doloroso castigo açoitará os incrédulos entre eles.",
+ 74,
+ "Por que não se voltam para Deus e imploram o Seu perdão, uma vez que Ele é Indulgente, Misericordiosíssimo?",
+ 75,
+ "O Messias, filho de Maria, não é mais do que um mensageiro, do nível dos mensageiro que o precederam; e sua mãe erasinceríssima. Ambos se sustentavam de alimentos terrenos, como todos. Observa como lhes elucidamos os versículos eobserva como se desviam.",
+ 76,
+ "Pergunta-lhes: Adorareis, em vez de Deus, ao que não pode prejudicar-vos nem beneficiar-vos, sabendo (vós) que Deusé o Oniouvinte, o Sapientíssimo?",
+ 77,
+ "Dize-lhes: Ó adeptos do Livro, não exagereis em vossa religião, profanado a verdade, nem sigais o capricho daquelesque se extraviaram anteriormente, desviaram muitos outros e se desviaram da verdadeira senda!",
+ 78,
+ "Os incrédulos, dentre os israelitas, foram amaldiçoados pela boca de Davi e por Jesus, filho de Maria, por causa de suarebeldia e profanação.",
+ 79,
+ "Não se reprovavam mutuamente pelo ilícito que cometiam. E que detestável é o que cometiam!",
+ 80,
+ "Vês muitos deles (judeus) em intimidade com idólatras. Que detestável é isso a que os induzem as suas almas! Por isso, suscitaram a indignação de Deus, e sofrerão um castigo eterno.",
+ 81,
+ "Se tivessem acreditado em Deus, no Profeta e no que lhe foi revelado, não os teriam tomado por confidentes. Porém, muitos deles são depravados.",
+ 82,
+ "Constatarás que os piores inimigos dos fiéis, entre os humanos, são os judeus e os idólatras. Constatarás que aqueles queestão mais próximos do afeto dos fiéis são os que dizem: Somos cristãos!, porque possuem sacerdotes e não ensoberbecemde coisa alguma.",
+ 83,
+ "E, ao escutarem o que foi revelado ao Mensageiro, tu vês lágrimas a lhes brotarem nos olhos; reconhecem naquilo averdade, dizendo: Ó Senhor nosso, cremos! Inscreve-nos entre os testemunhadores!",
+ 84,
+ "E por que não haveríamos de crer em Deus e em tudo quanto nos chegou, da verdade, e como não haveríamos de aspirara que nosso Senhor nos contasse entre os virtuosos?",
+ 85,
+ "Pelo que disseram, Deus os recompensará com jardins, abaixo dos quais correm os rios, onde morarão eternamente. Issoserá a recompensa dos benfeitores.",
+ 86,
+ "Aqueles que negarem e desmentirem os Nossos versículos serão os réprobos.",
+ 87,
+ "Ó fiéis, não malverseis o bem que Deus permitiu e não transgridais, porque Ele não estima os perdulários.",
+ 88,
+ "Comei de todas as coisas lícitas com que Deus vos agraciou e temei-O, se fordes fiéis.",
+ 89,
+ "Deus não vos reprova por vossos inintencionais juramentos fúteis; porém, recrimina-vos por vossos deliberadosjuramentos, cuja expiação consistirá em alimentardes dez necessitados da maneira como alimentais a vossa família, ou emos vestir, ou em libertardes um escravo; contudo, quem carecer de recursos jejuará três dias. Tal será a expiação do vossoperjúrio. Mantende, pois, os vossos juramentos. Assim Deus vos elucida os Seus versículos, a fim de que Lhe agradeçais.",
+ 90,
+ "Ó fiéis, as bebidas inebriantes, os jogos de azar, a dedicação às pedras e as adivinhações com setas, são manobrasabomináveis de Satanás. Evitai-os, pois, para que prospereis.",
+ 91,
+ "Satanás só ambiciona infundir-vos a inimizade e o rancor, mediante as bebidas inebriantes e os jogos de azar, bem comoafastar-vos da recordação de Deus e da oração. Não desistireis, diante disso?",
+ 92,
+ "Obedecei a Deus, obedecei ao Mensageiro e precavei-vos; mas se vos desviardes, sabei que ao Nosso Mensageiro sócabe a proclamação da mensagem lúcida.",
+ 93,
+ "Os fiéis que praticam o bem não serão reprovados pelo que comeram (anteriormente, mas coisas ilícitas), uma vez quedelas passem a se abster, continuando a crer e a praticar o bem, a ser tementes a Deus e, crer novamente e praticar acaridade. Deus aprecia os benfeitores.",
+ 94,
+ "Ó fiéis, Deus vos testará com a proibição de certa espécie de caça que está ao alcance das vossas mão e das vossaslanças, para assegurar-Se de quem O teme intimamente. Quem, depois disso, transgredir a norma sofrerá um dolorosocastigo.",
+ 95,
+ "Ó fiéis, não mateis animais de caça quando estiverdes com as vestes da peregrinação. Quem, dentre vós, os matarintencionalmente, terá de pagar a transgressão, o equivalente àquilo que tenha morto, em animais domésticos, com adeterminação de duas pessoas idôneas, dentre vós. Que tais animais sejam levados como oferenda à Caaba. Ou, ainda, faráuma expiação, alimentando alguns necessitados ou o equivalente a isto em jejum, para que sofra a conseqüência da sua falta. Deus perdoa o passado; porém, a quem reincidir Deus castigará, porque é Punidor, Poderosíssimo.",
+ 96,
+ "Está-vos permitida a caça aquática; e seu produto pode servir de visão, tanto para vós como para os viajantes. Porém, está-vos proibida a caça terrestre, enquanto estiverdes consagrado à peregrinação. Temei a Deus, ante O Qual sereiconsagrados.",
+ 97,
+ "Deus designou a Caaba como Casa Sagrada, como local seguro para os humanos. Também estabeleceu o mês sagrado, aoferenda e os animais marcados, para que saibais que Deus conhece tudo quanto há nos céus e na terra, e que é Onisciente.",
+ 98,
+ "Sabei que Deus é severíssimo no castigo, assim como também é Indulgente, Misericordiosíssimo.",
+ 99,
+ "Ao Mensageiro só cabe a proclamação (da mensagem). Deus conhece o que manifestais e o que ocultais.",
+ 100,
+ "Dize: O mal e o bem jamais poderão equiparar-se, ainda que vos encante a abundância do mal. Ó sensatos, temei aDeus, quiçá assim prosperais.",
+ 101,
+ "Ó fiéis, não interrogueis acerca de coisas que, se vos fossem reveladas, atribular-vos-iam. Mas se perguntardes porelas, quando o Alcorão tiver sido revelado, ser-vos-ão explicadas. Deus perdoa a vossa sofreguidão, porque é Tolerante, Indulgentíssimo.",
+ 102,
+ "Povos anteriores a vós fizeram as mesmas perguntas. Por isso, tornaram-se incrédulos.",
+ 103,
+ "Deus nada prescreveu, com referência às superstições, tais como a \"bahira\", ou a \"sa'iba\", ou a \"wacila\", ou a \"hami\"; porém, os blasfemos forjam mentiras acerca de Deus, porque a sua totalidade é insensata.",
+ 104,
+ "E quando lhes foi dito: Vinde para o que Deus revelou, e para o Mensageiro!, disseram: Basta-nos o que seguiam osnossos pais! Como? Mesmo que seus pais nada compreendessem nem se guiassem?",
+ 105,
+ "Ó fiéis, resguardai as vossas almas, porque se vos conduzirdes bem, jamais poderão prejudicar-vos aqueles que sedesviam; todos vós retornareis a Deus, o Qual vos inteirará de tudo quanto houverdes feito.",
+ 106,
+ "Ó fiéis, quando a morte se aproximar de algum de vós e este se dispuser a fazer um testamento, que apele para otestemunho de dois homens justos, dentre vós, ou de dois estranhos, se se achar viajando pela terra quando isto acontecer. Deverá detê-los, depois da oração, e fazê-los prestar juramento por Deus, deste modo: A nenhum preço venderemos o nossotestemunho, ainda que o interessado seja um dos nossos parentes, nem ocultaremos o testemunho de Deus, porque, se assimfizermos, contar-nos-emos entre os pecadores.",
+ 107,
+ "Se descobrirdes que aso perjuros, que sejam substituídos por outros dois parentes mais próximos das pessoas emquestão, e ambos jurarão por Deus deste modo: Nosso testemunho é mais verdadeiro do que o dos outros e não perjuramos, porque se assim fizermos, contar-nos-emos entre os iníquos.",
+ 108,
+ "Este proceder é o mais adequado, para que as testemunhas declarem a verdade. Devem temer que se apresentem outrastestemunhas depois delas. Temei, pois, a Deus e escutai, porque Ele não ilumina os depravados.",
+ 109,
+ "Um dia, Deus convocará os mensageiros e lhes dirá: Que vos tem sido respondido (com respeito à exortação)? Dirão: Nada sabemos, porque só Tu és Conhecedor do incognoscível.",
+ 110,
+ "Então, Deus dirá: Ó Jesus, filho de Maria, recordar-te de Minhas Mercês para contigo e para com tua mãe; de quando tefortaleci com o Espírito da Santidade; de quando falavas aos homens, tanto na infância, como na maturidade; de quando teensinei o Livro, a sabedoria, a Tora e o Evangelho; de quando, com o Meu beneplácito, plasmaste de barro algo semelhantea um pássaro e, alentando-o, eis que se transformou, com o Meu beneplácito, em um pássaro vivente; de quando, com o Meubeneplácito, curaste o cego de nascença e o leproso; de quando, com o Meu beneplácito, ressuscitaste os mortos; de quandocontive os israelitas, pois quando lhes apresentaste as evidências, os incrédulos, dentre eles, disseram: Isto não é mais doque pura magia!",
+ 111,
+ "E de que, quando inspirei os discípulos, (dizendo-lhes): Crede em Mim e no Meu Mensageiro! Disseram: Cremos! Testemunha que somos muçulmanos.",
+ 112,
+ "E de quando os discípulos disseram: Ó Jesus, filho de Maria, poderá o teu Senhor fazer-nos descer do céu uma mesaservida? Disseste: Temei a Deus, se sois fiéis!",
+ 113,
+ "Tornaram a dizer: Desejamos desfrutar dela, para que os nossos corações sosseguem e para que saibamos que nos tensdito a verdade, e para que sejamos testemunhas disso.",
+ 114,
+ "Jesus, filho de Maria, disse: Ó Deus, Senhor nosso, envia-nos do céu uma mesa servida! Que seja um banquete para oprimeiro e último de nós, constituindo-se num sinal Teu; agracia-nos, porque Tu és o melhor dos agraciadores.",
+ 115,
+ "E disse Deus: Fá-la-ei descer; porém, quem de vós, depois disso, continuar descrendo, saiba que o castigarei tãoseveramente como jamais castiguei ninguém da humanidade.",
+ 116,
+ "E recordar-te de quando Deus disse: Ó Jesus, filho de Maria! Foste tu quem disseste aos homens: Tomai a mim e aminha mãe por duas divindades, em vez de Deus? Respondeu: Glorificado sejas! É inconcebível que eu tenha dito o que pordireito não me corresponde. Se tivesse dito, tê-lo-ias sabido, porque Tu conheces a natureza da minha mente, ao passo queignoro o que encerra a Tua. Somente Tu és Conhecedor do incognoscível.",
+ 117,
+ "Não lhes disse, senão o que me ordenaste: Adorai a Deus, meu Senhor e vosso! E enquanto permaneci entre eles, fuitestemunha contra eles; e quando quiseste encerrar os meus dias na terra, foste Tu o seu Único observador, porque ésTestemunha de tudo.",
+ 118,
+ "Se Tu os castigas é porque são Teus servos; e se os perdoas, é porque Tu és o Poderoso, o Prudentíssimo.",
+ 119,
+ "Deus dirá: Este é o dia em que a lealdade dos verazes ser-lhes-á profícua. Terão jardins, abaixo dos quais correm rios, onde morarão eternamente. Deus se comprazerá com eles e eles se comprazerão n'Ele. Tal será o magnífico benefício!",
+ 120,
+ "A Deus pertence o reino dos céus e da terra, bem como tudo quando encerra, porque é Onipotente."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/50.json b/share/quran-json/TheQuran/pt/50.json
new file mode 100644
index 0000000..50c4341
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/50.json
@@ -0,0 +1,103 @@
+[
+ {
+ "id": "50",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Qaf",
+ "translated_name": "The Letter \"Qaf\"",
+ "verse_count": 45,
+ "slug": "qaf",
+ "codepoints": [
+ 1602
+ ]
+ },
+ 1,
+ "Caf. Pelo Alcorão glorioso (que tu és o Mensageiro de Deus).",
+ 2,
+ "Qual! Admiram-se de que lhes tenha surgido um admoestador de sua estirpe. E os incrédulos dizem: Isto é algoassombroso.",
+ 3,
+ "Acaso, quando morrermos e formos convertidos em pó, (seremos ressuscitados)? Tal retorno será impossível!",
+ 4,
+ "Nós já sabemos a quantos deles tem devorado a terra, porque possuímos um Livro de registros.",
+ 5,
+ "Não obstante, desmentem a verdade quando esta lhes chega, e, ei-los aí em estado caótico.",
+ 6,
+ "Porém, não reparam, acaso, no céu que está acima deles? Como o construímos e o adornamos, sem abertura aparente?",
+ 7,
+ "E dilatamos a terra, fixando nela (firmes) montanhas, produzindo aí toda a formosa espécie, em pares,",
+ 8,
+ "Para a observação e recordação de todo o servo contrito.",
+ 9,
+ "E enviamos do céu a água bendita, mediante a qual produzimos jardins e cereais para a colheita.",
+ 10,
+ "E também as frondosas tamareiras, cujos cachos estão carregados de frutos em simetria,",
+ 11,
+ "Como sustento para os servos; e fazemos reviver, com ela, (a água) uma terra árida. Assim será a ressurreição!",
+ 12,
+ "Antes deles, desmentiram os mensageiros o povo de Noé, os moradores de Arrass e o povo de Samud.",
+ 13,
+ "O povo de Ad, o Faraó, os irmãos de Lot,",
+ 14,
+ "Os habitantes da floresta e o povo de Tubba todos desmentiram os mensageiros e todos mereceram a Minha advertência.",
+ 15,
+ "Porventura, exaurimo-nos com a primeira criação? Qual! Estão em dúvida acerca da nova criação.",
+ 16,
+ "Criamos o homem e sabemos o que a sua alma lhe confidencia, porque estamos mais perto dele do que a (sua) artériajugular.",
+ 17,
+ "Eis que dois (anjos da guarda), são apontados para anotarem (suas obras), um sentado à sua direita e o outro à esquerda.",
+ 18,
+ "Não pronunciará palavra alguma, sem que junto a ele esteja presente uma sentinela pronta (para a anotar).",
+ 19,
+ "E a hora da morte trará a verdade: Eis do que tentáveis escapar!",
+ 20,
+ "E a trombeta soará. Eis aí o dia da advertência.",
+ 21,
+ "E cada alma comparecerá, acompanhada de um anjo, como guia, e outro, como testemunha.",
+ 22,
+ "(Ser-lhe-á dito): Estavas descuidado a respeito disto; porém, agora removemos o teu véu; tua vista será penetrante, nessedia.",
+ 23,
+ "E seu acompanhante dirá: Aí está (o registro dos teus atos) completo comigo.",
+ 24,
+ "(Depois da sentença será dito aos anjos da guarda): Precipitai no inferno todo o incrédulo obstinado,",
+ 25,
+ "Que obstruirá o bem, era profanador, dubitável,",
+ 26,
+ "Que atribuía a Deus outras divindades. Arrojai-o, pois, no severo tormento!",
+ 27,
+ "Seu acompanhante (sedutor) dirá: Ó Senhor nosso, eu não o fiz transgredir; porém, ele é que estava em um erro profundo.",
+ 28,
+ "Dir-lhes-á (Deus): Não disputeis em Minha presença, uma vez que nos enviei antecipadamente a advertência.",
+ 29,
+ "A palavra é insubstituível perante Mim, e jamais sou injusto para com os Meus servos.",
+ 30,
+ "Naquele dia perguntaremos ao inferno: Estás já repleto? E responderá: Há alguém mais?",
+ 31,
+ "E o Paraíso, para os tementes, estará preparado, não longe dali.",
+ 32,
+ "Eis aqui o que se promete a todo o arrependido, observante (dos preceitos),",
+ 33,
+ "Que teme intimamente o Clemente e comparece, com um coração contrito.",
+ 34,
+ "Entrai nele (o Paraíso), em paz! Eis aqui o Dia da Eternidade!",
+ 35,
+ "Lá terão tudo quanto desejarem, e mais ainda, em Nossa presença.",
+ 36,
+ "E quantas gerações, anteriores a eles e mais poderosas do que eles, temos aniquilado! Conquanto percorressem a terra, tiveram porventura, alguma escapatória?",
+ 37,
+ "Em verdade, nisto há uma mensagem para aquele que tem coração, que escuta atentamente e é testemunha (da verdade).",
+ 38,
+ "Criamos os céus e a terra e, quanto existe entre ambos, em seis dias, e jamais sentimos fadiga alguma.",
+ 39,
+ "Tolera, pois, tudo quanto te dizem, e celebra os louvores do teu Senhor, antes do nascer do sol e antes do acaso.",
+ 40,
+ "E glorifica-O ao anoitecer e no fim das prostrações.",
+ 41,
+ "E aguarda o dia em que o convocador fizer a chamada, de um lugar próximo.",
+ 42,
+ "Dia esse em que ouvirão verdadeiramente o estrondo; tal será o dia da Ressurreição!",
+ 43,
+ "Somos Nós que damos a vida e a morte, e a Nós será o retorno.",
+ 44,
+ "Tal acontecerá, no dia em que a terra se fender acima deles (e eles saírem) apressadamente (dos sepulcros): isso será acongregação, fácil para Nós.",
+ 45,
+ "Nós bem sabemos tudo quanto dizem, e tu não és o seu incitador. Admoesta, pois, mediante o Alcorão, a quem tema aMinha ameaça!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/51.json b/share/quran-json/TheQuran/pt/51.json
new file mode 100644
index 0000000..70b80a0
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/51.json
@@ -0,0 +1,140 @@
+[
+ {
+ "id": "51",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Adh-Dhariyat",
+ "translated_name": "The Winnowing Winds",
+ "verse_count": 60,
+ "slug": "adh-dhariyat",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1584,
+ 1575,
+ 1585,
+ 1610,
+ 1575,
+ 1578
+ ]
+ },
+ 1,
+ "Pelos ventos disseminadores e impetuosos,",
+ 2,
+ "Que carregam pesos enormes,",
+ 3,
+ "Que fluem com moderação e suavidade,",
+ 4,
+ "E que são distribuidores, segundo a ordem (divina),",
+ 5,
+ "Que o que vos é prometido é verídico,",
+ 6,
+ "E que o Juízo é infalível!",
+ 7,
+ "Pelo céu, pleno de sendas,",
+ 8,
+ "Que seguis palavras discordantes,",
+ 9,
+ "As quais vos desencaminharão.",
+ 10,
+ "Que pereçam os inventores de mentiras!",
+ 11,
+ "Que estão descuidados, submersos na confusão!",
+ 12,
+ "Perguntaram: Quando chegará o Dia do Juízo?",
+ 13,
+ "(Será) o dia em que serão testados no fogo!",
+ 14,
+ "(Ser-lhes-á dito): Provai o vosso teste! Eis aqui o que pretendestes apressar!",
+ 15,
+ "Em verdade, os tementes habitarão entre jardins e mananciais,",
+ 16,
+ "Desfrutando de tudo com que o seu Senhor os agraciar, porque foram benfeitores.",
+ 17,
+ "Porque possuíram o hábito de pouco dormir à noite.",
+ 18,
+ "E, ao amanhecer, imploravam o perdão de suas faltas.",
+ 19,
+ "E há em seus bens uma parte para o mendigo e o desafortunado",
+ 20,
+ "E na terra, há sinais para os que estão seguros na fé.",
+ 21,
+ "E também (os há) em vós mesmos. Não vedes, acaso?",
+ 22,
+ "E no céu está o vosso sustento, bem como tudo quanto vos tem sido prometido.",
+ 23,
+ "Pelo Senhor dos céus e da terra, que isto é tão verdadeiro como é certo que falais!",
+ 24,
+ "Tens ouvido (ó Mensageiro) a história dos honoráveis hóspedes de Abraão?",
+ 25,
+ "Quando se apresentaram a ele e disseram: Paz!, respondeu-lhes: Paz! (E pensou): \"É gente desconhecida\".",
+ 26,
+ "E voltou rapidamente para os seus, e trouxe (na volta) um bezerro cevado.",
+ 27,
+ "Que lhes ofereceu... Disse (ante a hesitação deles): Não comeis?",
+ 28,
+ "Então sentiu medo deles. Disseram-lhe: Não temas! E anunciaram-lhe (o nascimento de) uma criança, que seria sábia.",
+ 29,
+ "E sua mulher irrompeu, (rindo) em voz alta; e, batendo na própria face, disse: Eu, uma anciã estéril!",
+ 30,
+ "Disseram-lhe: Assim prescreveu teu Senhor, porque Ele é o Prudente, o Sapientíssimo.",
+ 31,
+ "Perguntou Abraão: Qual é, então, a vossa incumbência, ó mensageiro?",
+ 32,
+ "Responderam-lhe: Em verdade, fomos enviados a um povo de pecadores,",
+ 33,
+ "Para que lançássemos sobre eles pedras de argila,",
+ 34,
+ "Destinados, da parte do teu Senhor, aos transgressores.",
+ 35,
+ "E evacuamos os fiéis que nela (Sodoma) havia.",
+ 36,
+ "Porém, encontramos nela uma só casa de muçulmanos.",
+ 37,
+ "E deixamos lá um sinal, para aqueles que temem o doloroso castigo.",
+ 38,
+ "E em Moisés (também, havia um sinal), quando o enviamos ao Faraó, com uma autoridade evidente.",
+ 39,
+ "Porém, (o Faraó) o rechaçou, com os seus chefes, dizendo: É um mago ou um energúmeno!",
+ 40,
+ "Porém, apanhamo-lo, juntamente com as suas hostes, e os precipitamos no mar, porque eram réprobos.",
+ 41,
+ "E (na história do povo de) Ad há um exemplo; desencadeamos contra eles um vento assolador,",
+ 42,
+ "Que não passava sobre aquilo a que ia de encontro, sem o reduzir a cinzas.",
+ 43,
+ "E (no povo de) Tamud tendes um exemplo, ao lhes ser dito: Desfrutai transitoriamente!",
+ 44,
+ "Porém, desacataram insolentemente a ordem de seu Senhor, e a centelha os fulminou, enquanto observavam.",
+ 45,
+ "E não puderam manter-se de pé, nem socorrer-se mutuamente.",
+ 46,
+ "E anteriormente a eles houve o povo de Noé; em verdade, era um povo depravado.",
+ 47,
+ "E construímos o firmamento com poder e perícia, e Nós o estamos expandindo.",
+ 48,
+ "E dilatamos a terra; e que excelente Dilatador tendes em Nós!",
+ 49,
+ "E criamos um casal de cada espécie, para que mediteis.",
+ 50,
+ "Apressai-vos, pois, para Deus, porque sou, da Sua parte, um elucidativo admoestador para vós.",
+ 51,
+ "E não coloqueis outra divindade junto a Deus, porque sou da Sua parte, um elucidativo admoestador para vós.",
+ 52,
+ "Mesmo assim, não se apresentou mensageiro algum àquelas que vos precederam, sem que dissessem: É um mago ou umenergúmeno!",
+ 53,
+ "Acaso, tê-la-ão eles transmitido (a expressão), de um para o outro? Qual! São um povo de transgressores.",
+ 54,
+ "Afasta-te, pois, deles, porque não serás reprovado.",
+ 55,
+ "E admoesta-os, porque a admoestação será proveitosa para os fiéis.",
+ 56,
+ "Não criei os gênios e os humanos, senão para Me adorarem.",
+ 57,
+ "Não lhes peço sustento algum, nem quero que Me alimentam.",
+ 58,
+ "Sabei que Deus é o Sustentador por excelência, Potente, Inquebrantabilíssimo.",
+ 59,
+ "Em verdade, os iníquos auferirão a mesma sorte que os seus antepassados. Assim, que não Me constranjam a apressar (ocastigo)!",
+ 60,
+ "Ai, pois, dos incrédulos no dia que lhes tem sido prometido!"
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/52.json b/share/quran-json/TheQuran/pt/52.json
new file mode 100644
index 0000000..aa62c4d
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/52.json
@@ -0,0 +1,115 @@
+[
+ {
+ "id": "52",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "At-Tur",
+ "translated_name": "The Mount",
+ "verse_count": 49,
+ "slug": "at-tur",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1591,
+ 1608,
+ 1585
+ ]
+ },
+ 1,
+ "Pelo monte (Sinai).",
+ 2,
+ "Pelo Livro escrito,",
+ 3,
+ "Em um pergaminho desenrolado.",
+ 4,
+ "Pelo templo freqüentado.",
+ 5,
+ "Pelo céu elevado.",
+ 6,
+ "E pelos oceanos transbordantes.",
+ 7,
+ "Que o castigo do teu Senhor está iminente.",
+ 8,
+ "Ninguém pode evitá-lo.",
+ 9,
+ "(Será) o dia em que o firmamento oscilará energicamente.",
+ 10,
+ "E as montanhas mover-se-ão rapidamente.",
+ 11,
+ "Ai, nesse dia, dos desmentidores.",
+ 12,
+ "Que se houverem dado a veleidades.",
+ 13,
+ "Será o dia em que se verão violentamente impulsionados para o fogo infernal.",
+ 14,
+ "(Ser-lhes-á dito): Eis aqui o fogo, que negastes!",
+ 15,
+ "É isto, acaso, magia, ou não vedes ainda?",
+ 16,
+ "Entrai aí, porque redundará no mesmo, que o suporteis, quer não. Sabei que sempre sereis recompensados pelo quehouverdes feito.",
+ 17,
+ "Quanto aos tementes (a Deus), viverão em jardins e em felicidade.",
+ 18,
+ "Gozando daquilo com que o seu Senhor os houver agraciado; e o seu Senhor os preservará do suplício infernal.",
+ 19,
+ "(Ser-lhes-á dito): Comei e bebei, com proveito, pelo que (de bom) fizestes!",
+ 20,
+ "Estarão recostados sobre leitos enfileirados e os casarmos com huris, de olhos maravilhosos.",
+ 21,
+ "E aqueles que creram, bem como as sua proles, que os seguirem na fé, reuni-los-emos às suas famílias, e não osprivaremos de nada, quanto à sua recompensa merecida. Todo o indivíduo será responsável pelos seus atos!",
+ 22,
+ "E os proveremos de frutas e carnes, bem como do que lhes apetecer.",
+ 23,
+ "Aí bridarão de uma taça, cuja bebida não os levará à frivolidade, nem os induzirá ao pecado.",
+ 24,
+ "E serão servidos por mancebos, formosos como se fossem pérolas em suas conchas.",
+ 25,
+ "E acercar-se-ão em tertúlias.",
+ 26,
+ "Dirão: Em verdade, antes estávamos temerosos pelos nossos familiares.",
+ 27,
+ "Portanto, Deus nos agraciou e nos preservou do tormento do vento abrasador.",
+ 28,
+ "Porque antes O invocávamos, por ser Ele o Beneficente, o Misericordiosíssimo!",
+ 29,
+ "Predica-lhes, pois, que, mercê do teu Senhor, não és um adivinho, nem um energúmeno.",
+ 30,
+ "Ou dirão: É um poeta. Aguardamos que lhe chegue a calamidade, (produzida) pelo tempo!",
+ 31,
+ "Dize-lhes: Aguardai, que eu também sou um dos que aguardam convosco!",
+ 32,
+ "São, acaso, suas faculdades mentais que os induzem a isso, ou é que são um povo de transgressores?",
+ 33,
+ "Dirão ainda: Porventura, ele o tem forjado (o Alcorão)? Qual! Não crêem!",
+ 34,
+ "Que apresentem, pois, uma mensagem semelhante, se estivermos certos.",
+ 35,
+ "Porventura, não foram eles criados do nada, ou são eles os criadores?",
+ 36,
+ "Ou criaram, acaso, os céus e a terra? Qual! Não se persuadirão!",
+ 37,
+ "Possuem, porventura, os tesouros do teu Senhor, ou são eles os dominadores?",
+ 38,
+ "Ou possuem alguma escada, para escalar o céu, a fim de detectar ali, os segredos? Que os espreitadores apresentem umaautoridade evidente!",
+ 39,
+ "Ou pertencem a Ele as filhas e a vós os filhos?",
+ 40,
+ "Ou lhes exiges, porventura, alguma recompensa, e por isso ficam sobrecarregados de dívidas?",
+ 41,
+ "Ou pensam estar de posse do incognoscível donde copiam o que dizem?",
+ 42,
+ "Ou (nem suma), intentam conspirar (contra ti)? Qual! Saibam os incrédulos que serão envolvidos na conspiração!",
+ 43,
+ "Ou, por fim, têm outra divindade, além de Deus? Glorificado seja Deus, de tudo quanto Lhe associam!",
+ 44,
+ "E se vissem desabar um fragmento do céu, diriam: São nuvens saturadas!",
+ 45,
+ "Deixa-os, pois, até que se deparem com o seu dia, em que serão fulminados!",
+ 46,
+ "Dia esse em que de nada lhes servirão as suas conspirações, nem serão socorridos.",
+ 47,
+ "Em verdade, os iníquos, além desse, sofrerão outros castigos; porém, a maioria o ignora.",
+ 48,
+ "E tu (ó Mensageiro), aguarda até ao Dia do Juízo do teu Senhor, porque estás ante Nossos olhos. E glorifica os louvoresdo teu Senhor, quando te levantares,",
+ 49,
+ "E numa parte da noite, e glorifica-O ao retirarem-se as estrelas."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/53.json b/share/quran-json/TheQuran/pt/53.json
new file mode 100644
index 0000000..5c11de9
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/53.json
@@ -0,0 +1,141 @@
+[
+ {
+ "id": "53",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "An-Najm",
+ "translated_name": "The Star",
+ "verse_count": 62,
+ "slug": "an-najm",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1606,
+ 1580,
+ 1605
+ ]
+ },
+ 1,
+ "Pela estrela, quando cai,",
+ 2,
+ "Que vosso camarada jamais se extravia, nem erra,",
+ 3,
+ "Nem fala por capricho.",
+ 4,
+ "Isso não é senão a inspiração que lhe foi revelada,",
+ 5,
+ "Que lhe transmitiu o fortíssimo,",
+ 6,
+ "O sensato, o qual lhe apareceu (em sua majestosa forma).",
+ 7,
+ "Quando estava na parte mais alta do horizonte.",
+ 8,
+ "Então, aproximou-se dele estreitamente,",
+ 9,
+ "Até a uma distância de dois arcos (de atirar setas), ou menos ainda.",
+ 10,
+ "E revelou ao Seu servo o que Ele havia revelado.",
+ 11,
+ "O coração (do Mensageiro) não mentiu, acerca do que viu.",
+ 12,
+ "Disputareis, acaso, sobre o que ele viu?",
+ 13,
+ "Realmente o viu, numa Segunda descida,",
+ 14,
+ "Junto ao limite da árvore de lótus.",
+ 15,
+ "Junto à qual está o jardim da morada (eterna).",
+ 16,
+ "Quando aquela coisa envolvente cobriu a árvore de lótus,",
+ 17,
+ "Não desviou o olhar, nem transgrediu.",
+ 18,
+ "Em verdade, presenciou os maiores sinais do seu Senhor.",
+ 19,
+ "Considerai Al-Lát e Al-Uzza.",
+ 20,
+ "E a outra, a terceira (deusa), Manata.",
+ 21,
+ "Porventura, pertence-vos o sexo masculino e a Ele o feminino?",
+ 22,
+ "Tal, então, seria uma partilha injusta.",
+ 23,
+ "Tais (divindades) não são mais do que nomes, com que as denominastes, vós e vossos antepassados, acerca do que Deusnão vos conferiu autoridade alguma. Não seguem senão as sua próprias conjecturas e as luxúrias das suas almas, nãoobstante ter-lhes chegado a orientação do seu Senhor!",
+ 24,
+ "Porventura, obterá o homem tudo quanto ambiciona?",
+ 25,
+ "Sabei que só a Deus pertence a outra vida e a presente.",
+ 26,
+ "E quantos anjos há nos céus, cujas intercessões de nada valerão, salvo a daqueles que a Deus aprouver e comprazer!",
+ 27,
+ "Sabei que aqueles que não crêem na outra vida denominam os anjos com nomes femininos,",
+ 28,
+ "Embora careçam de todo o conhecimento a esse respeito. Não fazem senão seguir conjecturas, sendo que a conjecturajamais prevaleceu, em nada, sobre a verdade.",
+ 29,
+ "Afasta-te pois, de quem desdenha a Nossa Mensagem, e não ambiciona senão a vida terrena.",
+ 30,
+ "Tal é o alcance do seu conhecimento. Em verdade, teu Senhor é o mais conhecedor de quem se desvia da Sua senda, assim como é o mais conhecedor de quem se encaminha.",
+ 31,
+ "A Deus pertence tudo quanto existe nos céus e na terra, para castigar os malévolos, segundo o que tenham cometido, erecompensar os benfeitores com o melhor.",
+ 32,
+ "Estes são os que se abstêm dos pecados graves e das obscenidades, conquanto cometam faltas leves. Que saibam que oteu Senhor é Amplo na indulgência; Ele vos conhece melhor do que ninguém, uma vez que foi Ele Que vos criou na terra, emque éreis embriões nas entranhas de vossas mães. Não atribuais pois, pureza a vós mesmo, porque Ele bem conhece ostementes.",
+ 33,
+ "Que opinas, pois, de quem desdenha,",
+ 34,
+ "Que pouco dá, e, depois, endurece (o coração)?",
+ 35,
+ "Porventura, está de posse do incognoscível e prognostica (o futuro)?",
+ 36,
+ "Qual, não foi inteirado de tudo quanto contêm os livros de Moisés,",
+ 37,
+ "E os de Abraão, que cumpriu (as suas obrigações),",
+ 38,
+ "De que nenhum pecador arcará com culpa alheia?",
+ 39,
+ "De que o homem não obtém senão o fruto do seu proceder?",
+ 40,
+ "De que o seu proceder será examinado?",
+ 41,
+ "Depois, ser-lhe-á retribuído, com a mais eqüitativa recompensa?",
+ 42,
+ "E que pertence ao teu Senhor o limite.",
+ 43,
+ "E que Ele faz rir e chorar.",
+ 44,
+ "E que Ele dá a vida e a morte.",
+ 45,
+ "E que Ele criou (tudo) em pares: o masculino e o feminino,",
+ 46,
+ "De uma gosta de esperma, quando alojada (em seu lugar).",
+ 47,
+ "E que a Ele compete a Segunda criação.",
+ 48,
+ "E que Ele enriquece e dá satisfação.",
+ 49,
+ "E que Ele é o Senhor do (astro) Sírio.",
+ 50,
+ "E que Ele exterminou o primitivo povo de Ad.",
+ 51,
+ "E o povo de Tamud, sem deixar (membro) algum?",
+ 52,
+ "E, antes, o povo de Noé, porque era ainda mais iníquo e transgressor?",
+ 53,
+ "E destruiu as cidades nefastas (Sodoma e Gomorra)?",
+ 54,
+ "E as cobriu com um véu envolvente?",
+ 55,
+ "De qual das mercês do teu Senhor duvidas, pois, (ó humano)?",
+ 56,
+ "Eis aqui uma admoestação dos primeiros admoestadores.",
+ 57,
+ "Aproxima-se a Hora iminente!",
+ 58,
+ "Ninguém, além de Deus, poderá revelá-la.",
+ 59,
+ "Por que vos assombrais, então, com esta Mensagem?",
+ 60,
+ "E rides ao invés de chorardes,",
+ 61,
+ "Em vossos lazeres?",
+ 62,
+ "Prostrai-vos, outrossim, perante Deus, e adorai-O."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/54.json b/share/quran-json/TheQuran/pt/54.json
new file mode 100644
index 0000000..578208e
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/54.json
@@ -0,0 +1,127 @@
+[
+ {
+ "id": "54",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-Qamar",
+ "translated_name": "The Moon",
+ "verse_count": 55,
+ "slug": "al-qamar",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1602,
+ 1605,
+ 1585
+ ]
+ },
+ 1,
+ "A Hora (do Juízo) se aproxima, e a lua se fendeu.",
+ 2,
+ "Porém, se presenciam algum sinal, afastam-se, dizendo: É magia reiterada!",
+ 3,
+ "E o rejeitam, e persistem em suas luxúrias; porém, cada coisa terá o seu fim.",
+ 4,
+ "E, sem dúvida, tiveram bastante admoestação exemplificada.",
+ 5,
+ "E sabedoria prudente; porém, de nada lhes servem as admoestações.",
+ 6,
+ "Afasta-te, pois, deles (ó Mensageiro), e recorda o dia em que o (anjo) convocador convocará os humanos a algo terrível.",
+ 7,
+ "Sairão dos sepulcros, com os olhos humildes, como se fossem uma nuvem de gafanhotos dispersa,",
+ 8,
+ "Dirigindo-se, rapidamente, até ao convocador; os incrédulos dirão: Este é um dia terrível!",
+ 9,
+ "Antes deles, o povo de Noé havia desmentido os mensageiros; desmentiram o Nosso servo, dizendo: É um energúmeno!, repudiando-o por todas as vias.",
+ 10,
+ "Então ele invocou seu Senhor, dizendo: Estou vencido! Socorre-me!",
+ 11,
+ "Então abrimos as portas do céu, com água torrencial (que fizemos descer).",
+ 12,
+ "E fizemos brotar fontes da terra, e ambas as águas se encontraram na medida predestinada.",
+ 13,
+ "E o conduzimos (Noé) em uma arca, de tábuas encavilhadas,",
+ 14,
+ "Que flutuava sob o Nosso olhar, como recompensa para aquele que foi desmentido.",
+ 15,
+ "E a expusemos, como sinal. Haverá, porventura, alguém que receberá a admoestação?",
+ 16,
+ "Qual! Quão terríveis foram o Meu castigo e a Minha admoestação!",
+ 17,
+ "Em verdade, facilitamos o Alcorão, para a admoestação. Haverá, porventura, algum admoestado?",
+ 18,
+ "O povo de Ad rejeitou o seu mensageiro. Porém, quão terríveis foram o Meu castigo e a Minha admoestação!",
+ 19,
+ "Sabei que desencadeamos sobre eles um vento tormentoso, em um dia funesto,",
+ 20,
+ "Que arrebatava os homens, como se fossem troncos de tamareiras desarraigadas.",
+ 21,
+ "Observa, portanto, quão terríveis foram o Meu castigo e a Minha admoestação!",
+ 22,
+ "Em verdade, facilitamos o Alcorão para a recordação. Haverá, porventura, algum admoestado?",
+ 23,
+ "O povo de Tamud desmentiu os admoestadores,",
+ 24,
+ "Dizendo: Quê! Acaso, haveremos de seguir um homem solitário, surgido dentre nós? Cairíamos, então, em extravio e naloucura!",
+ 25,
+ "Acaso, foi a Mensagem revelada só a ele, dentre nós? Qual! É um mentiroso, insolente!",
+ 26,
+ "Logo saberão quem é mentiroso e insolente!",
+ 27,
+ "Em verdade, enviamos-lhes a camela como prova. E tu (ó Saléh), observa-os e aguarda com paciência.",
+ 28,
+ "E anuncia-lhes que a água deverá ser compartilhada entre eles, e casa qual terá o seu turno registrado.",
+ 29,
+ "Então, chamaram um companheiro seu, o qual tomou de um sabre e a abateu.",
+ 30,
+ "Porém, quão terríveis foram o Meu castigo e a Minha admoestação!",
+ 31,
+ "Sabei que enviamos contra eles um só estrondo, que os reduziu a feno amontoado.",
+ 32,
+ "Em verdade, facilitamos o Alcorão, para a admoestação. Haverá, porventura, algum admoestado?",
+ 33,
+ "O povo de Lot desmentiu os seus admoestadores.",
+ 34,
+ "Sabei que desencadeamos sobre eles uma chuva de pedras, exceto sobre a família de Lot, a qual salvamos na hora daalvorada.",
+ 35,
+ "Por nossa graça. Assim recompensamos os agradecidos.",
+ 36,
+ "E (Lot) já os havia admoestado, quanto ao Nosso castigo; porém, duvidaram das admoestações.",
+ 37,
+ "E intentaram desonrar os seus hóspedes; então, cegamos-lhes os olhos, dizendo: Sofrei, pois, o Meu castigo e a Minhaadmoestação!",
+ 38,
+ "E, ao amanhecer, surpreendeu-os um castigo, que se tornou perene.",
+ 39,
+ "Sofrei, pois o Meu castigo e a Minha admoestação!",
+ 40,
+ "Em verdade, facilitamos o Alcorão, para a recordação. Haverá, porventura, algum admoestado?",
+ 41,
+ "E também se apresentaram os admoestadores ao povo do Faraó.",
+ 42,
+ "Porém, desmentiram os Nosso sinais, pelo que os castigamos severamente, como só pode fazer um Onipotente, Poderosíssimo.",
+ 43,
+ "Acaso, os vossos incrédulos (ó coraixitas), são melhores do que aqueles, ou, por outra, gozais de imunidade, registradanos Livros sagrados?",
+ 44,
+ "Entretanto, dizem: Agimos juntos e podemos (nos) defender!",
+ 45,
+ "Logo, a multidão será debelada e debandará.",
+ 46,
+ "E a Hora (do Juízo) é uma promessa, e ela será mais grave e mais amarga.",
+ 47,
+ "Sabei que os pecadores estarão nos caos e na loucura.",
+ 48,
+ "No dia em que foram arrastados, no fogo, sobre seus rostos, (ser-lhes-á dito): Sofrei o contato do tártaro!",
+ 49,
+ "Em verdade, criamos todas as coisas predestinadamente.",
+ 50,
+ "E a Nossa ordem não é mais do que uma só (palavra), como um abrir e fechar os olhos!",
+ 51,
+ "E havíamos aniquilado os vossos semelhantes. Haverá, porventura, algum que recebeu a admoestação?",
+ 52,
+ "Tudo quanto fizeram está anotado nos livros.",
+ 53,
+ "E toda a ação, pequena ou grande, está registrada.",
+ 54,
+ "Sabei que os tementes morarão entre os jardins e rios,",
+ 55,
+ "Em uma assembléia da verdade, na presença de um Senhor Onipotente, Soberaníssimo."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/55.json b/share/quran-json/TheQuran/pt/55.json
new file mode 100644
index 0000000..856dc00
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/55.json
@@ -0,0 +1,174 @@
+[
+ {
+ "id": "55",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Ar-Rahman",
+ "translated_name": "The Beneficent",
+ "verse_count": 78,
+ "slug": "ar-rahman",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1585,
+ 1581,
+ 1605,
+ 1606
+ ]
+ },
+ 1,
+ "O Clemente.",
+ 2,
+ "Ensinou o Alcorão.",
+ 3,
+ "Criou o homem.",
+ 4,
+ "E ensinou-lhe a eloqüência.",
+ 5,
+ "O sol e a lua giram (em suas órbitas).",
+ 6,
+ "E as ervas e as árvores prostram-se em adoração.",
+ 7,
+ "E elevou o firmamento e estabeleceu a balança da justiça,",
+ 8,
+ "Para que não defraudeis no peso.",
+ 9,
+ "Pesai, pois, escrupulosamente, e não diminuais a balança!",
+ 10,
+ "Aplainou a terra para as (Suas) criaturas,",
+ 11,
+ "Na qual há toda a espécie de frutos, e tamareiras com cachos,",
+ 12,
+ "E as graníferas, com a sua palha, e as odoríferas.",
+ 13,
+ "-Assim, pois, quais das mercês de vosso Senhor desagradeceis?",
+ 14,
+ "Ele criou os gênios do fogo vivo.",
+ 15,
+ "E criou os gênios do fogo vivo.",
+ 16,
+ "-Assim, pois, quais das mercês de vosso Senhor desagradeceis?",
+ 17,
+ "É o Senhor dos dois solstícios e dos dois equinócios.",
+ 18,
+ "-Assim, pois, quais das mercês dos vosso Senhor desagradeceis?",
+ 19,
+ "Liberam os dois mares, para que se encontrassem.",
+ 20,
+ "Entre ambos, há uma barreira, para que não seja ultrapassada.",
+ 21,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 22,
+ "De ambos saem as pérolas e os corais.",
+ 23,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 24,
+ "E suas são as naves, que se elevam no mar, como montanhas.",
+ 25,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 26,
+ "Tudo quanto existe na terra perecerá.",
+ 27,
+ "E só subsistirá o Rosto do teu Senhor, o Majestoso, o Honorabilíssimo",
+ 28,
+ ".",
+ 29,
+ "Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 30,
+ "Todos os que estão nos céus e na terra O invocam. A cada dia Ele está ocupado em uma nova obra.",
+ 31,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 32,
+ "Logo, estabelecermos os vossos assuntos, ó ambos os mundos!",
+ 33,
+ "Ó assembléia de gênios e humanos, se sois capazes de atravessar os limites dos céus e da terra, fazei-o! Porém, nãopodereis fazê-lo, sem autoridade.",
+ 34,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 35,
+ "Então, uma chama de fogo e uma fumaça serão lançados sobre vós, e não podereis contê-las.",
+ 36,
+ "Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 37,
+ "(Será) quando o céu se fender e derreter; e se avermelhar como um ungüento.",
+ 38,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 39,
+ "Nesse dia, nenhum homem ou gênio será inquirido por seu pecado.",
+ 40,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 41,
+ "Os pecadores serão reconhecidos por suas marcas, e serão arrastados pelos topetes e pelos pés.",
+ 42,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 43,
+ "Este é o inferno, que os pecadores negavam!",
+ 44,
+ "Circularão nele, e na água fervente!",
+ 45,
+ "-Assim, pois, quais, das mercês do vosso Senhor desagradeceis?",
+ 46,
+ "Por outra, para quem teme o comparecimento ante o seu Senhor, haverá dois jardins.",
+ 47,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 48,
+ "Contudo todas as espécies (de frutos e prazeres).",
+ 49,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 50,
+ "Em ambos, haverá duas fontes a verter.",
+ 51,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 52,
+ "Em ambos haverá duas espécies de cada fruta.",
+ 53,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 54,
+ "Estarão reclinados sobre almofadas forradas de brocado, e os frutos de ambos os jardins estarão ao (seu) alcance.",
+ 55,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 56,
+ "Ali haverá, também, aquelas de olhares recatados que, antes deles, jamais foram tocadas por homem ou gênio.",
+ 57,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 58,
+ "Parecem-se com o rubi e com o coral.",
+ 59,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 60,
+ "A retribuição à bondade não é, acaso, a própria bondade?",
+ 61,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 62,
+ "E, além dos dois mencionados, haverá outros dois jardins,",
+ 63,
+ "-Assim, pois, quais das mercês, do vosso Senhor, desagradeceis?",
+ 64,
+ "De cor verde-escuro, vicejantes.",
+ 65,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 66,
+ "Neles haverá duas fontes a jorrar.",
+ 67,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 68,
+ "Em ambos haverá frutas, tamareiras e romãzeiras.",
+ 69,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 70,
+ "Neles haverá beldades inocentes,",
+ 71,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 72,
+ "Huris recolhidas em pavilhões,",
+ 73,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 74,
+ "Que jamais, antes deles, foram tocadas por homem ou gênio,",
+ 75,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 76,
+ "Reclinadas em coxins, cobertos com pano verde e formosas almofadas.",
+ 77,
+ "-Assim, pois, quais das mercês do vosso Senhor desagradeceis?",
+ 78,
+ "Bendito seja o nome do teu Senhor, o Majestoso, o Honorabilíssimo."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/6.json b/share/quran-json/TheQuran/pt/6.json
new file mode 100644
index 0000000..9fbbbd2
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/6.json
@@ -0,0 +1,349 @@
+[
+ {
+ "id": "6",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-An'am",
+ "translated_name": "The Cattle",
+ "verse_count": 165,
+ "slug": "al-anam",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1606,
+ 1593,
+ 1575,
+ 1605
+ ]
+ },
+ 1,
+ "Louvado seja Deus que criou os céus e a terra, e originou as travas e a luz. Não obstante isso, os incrédulos têm atribuídosemelhantes ao seu Senhor.",
+ 2,
+ "Ele foi Quem vos plasmou do barro e vos decretou um limite, um termo fixo junto a Ele. E, apesar disso, duvidais!",
+ 3,
+ "Ele é Deus, tanto na terra, como nos céus. Ele bem conhece tanto o que ocultais, como o que manifestais, e sabe o queganhais.",
+ 4,
+ "Nunca lhes chegou nenhum dos versículos de seu Senhor sem que eles o desdenhassem.",
+ 5,
+ "E quando lhes chegou a verdade, desmentiram-na; porém, logo terão notícias do que escarneceram.",
+ 6,
+ "Não reparam em quantas gerações anteriores a eles aniquilamos? Radicamo-las na terra, melhor do que a vós, enviamosdo céu copiosas chuvas para as suas plantas e fizemos correr rios por sob seus pés; porém, exterminamo-los por seuspecados e, depois deles, fizemos ressurgir outras gerações.",
+ 7,
+ "Ainda que te tivéssemos revelado um Livro, escrito em pergaminhos, e que o apalpassem com as mãos, os incrédulosdiriam: Isto não é mais do que pura magia!",
+ 8,
+ "Disseram: Por que não lhe foi enviado um anjo? Se tivéssemos enviado um anjo (e assim mesmo não tivessem crido), estaria, então, tudo terminado; não teriam sido tolerados.",
+ 9,
+ "E se lhes tivéssemos enviado um anjo, tê-lo-íamos enviado em figura de homem, confundindo ainda mais o que já era, para eles, confuso.",
+ 10,
+ "Mensageiros anteriores a ti foram escarnecidos; porém, os escarnecedores foram envolvidos por aquilo de queescarneciam.",
+ 11,
+ "Dize-lhes: percorrei a terra e observai qual foi a sorte dos desmentidores.",
+ 12,
+ "Dize: A quem pertence tudo quando existe nos céus e na terra? Responde. A Deus! Ele impôs a Si mesmo a clemência. Ele vos congregará no indubitável Dia da Ressurreição! Porém, os desventurados não crêem nisto.",
+ 13,
+ "Também é Seu tudo quanto se encontra na noite e no dia, porque Ele é o Oniouvinte, o Sapientíssimo.",
+ 14,
+ "Dize: Tomareis por protetor outro que não seja Deus, Criador dos céus e da terra, sendo que é Ele Quem vos sustenta, sem ter necessidade de ser sustentado? Dize ainda: Foi-me ordenado ser o primeiro a abraçar o Islam; portanto, não sejaisdos idólatras.",
+ 15,
+ "Dize mais: Temo o castigo do dia aziago se desobedeço a meu Senhor.",
+ 16,
+ "Quem for eximido, nesse dia, será porque Deus se apiedará dele. Tal será um benefício evidente.",
+ 17,
+ "Se Deus te infligir um mal, ninguém, além d'Ele, poderá removê-lo; por outra, se te agraciar com um bem, será porque éOnipotente.",
+ 18,
+ "Ele é o Soberano absoluto dos Seus servos e Ele é Onisciente, o Prudentíssimo.",
+ 19,
+ "Pergunta: Qual é o testemunho mais fidedigno? Assevera-lhes, então: Deus é a Testemunha entre vós e mim. EsteAlcorão foi-me revelado, para com ele admoestar a vós e àqueles que ele alcançar. Ousareis admitir que existem outrasdivindades conjuntamente com Deus? Dize: Eu não as reconheço. Dize ainda: Ele é um só Deus e eu estou inocente quantoaos parceiros que Lhe atribuís.",
+ 20,
+ "Quanto àqueles a quem concedemos o Livro, conhecem isso, tal como conheceram seus filhos; só os desventurados nãocrêem.",
+ 21,
+ "Haverá alguém mais iníquo do que quem forja mentiras acerca de Deus ou desmente os Seus versículos? Os iníquosjamais prosperarão.",
+ 22,
+ "Recordar-lhes o dia em que congregaremos todos, e diremos, então, aos idólatras: Onde estão os parceiros quepretendestes Nos atribuir?",
+ 23,
+ "Então, não terão mais escusas, além de dizerem, Por Deus, nosso Senhor, nunca fomos idólatras.",
+ 24,
+ "Olha como desmentem a sim mesmos! Tudo quanto tiverem forjado desvanecer-se-á.",
+ 25,
+ "Alguns deles te escutam; porém, anuviamos-lhes as mentes e ensurdecemos-lhes os ouvidos; por isso, não compreendem. E, mesmo quando virem qualquer sinal, não crerão nele; e até quando vêm a ti, vêm para refutar-te; e os incrédulos dizem: Isto não é mais do que fábulas dos primitivos!",
+ 26,
+ "E impedem os demais, apartando-os dele (o Alcorão); mas, com isso, não fazem mais do que se prejudicar, sem osentirem.",
+ 27,
+ "Ah, se os vires quando se confrontarem com o fogo infernal! Dirão: Oxalá fôssemos devolvidos (à terra)! Então, nãodesmentiríamos os versículos de nosso Senhor e nos contaríamos entre os fiéis!",
+ 28,
+ "Porém, aparecer-lhes-á tudo quanto anteriormente tinham ocultado; no entanto, ainda que fossem devolvidos (à vidaterrena), certamente reincidiriam em lançar mão de tudo quanto lhes foi vedado, porque são mentirosos.",
+ 29,
+ "Dizem: Não existe outra vida além da terrena e jamais seremos ressuscitados.",
+ 30,
+ "Se os vires quando comparecerem ante seu Senho! Ele lhes dirá: Não é esta a verdade? Dirão: Sim, por nosso Senhor! Então, Ele lhes dirá: Provai, pois, o castigo, por vossa incredulidade!",
+ 31,
+ "Serão desventurados aqueles que desmentirem o comparecimento ante Deus, apenas se apercebendo da realidade quandoa morte os surpreender repentinamente. Gritarão: Ai de nós, por termos negligenciado! Porém, carregarão seus fardos àscostas. Que péssimo será o que carregarão!",
+ 32,
+ "Que é a vida terrena senão jogo e diversão frívola? A morada na outra vida é preferível para os tementes. Noa ocompreendeis?",
+ 33,
+ "Sabemos que te atribula o que dizem; porém, não é a ti que desmentem; outrossim, é os versículos de Deus que osiníquos renegam.",
+ 34,
+ "Já outros mensageiros, anteriores a ti, foram desmentidos; porém, suportaram abnegadamente os vexames e os ultrajes, até que Nosso socorro lhes chegou. Nossas decisões são inexoráveis; e conheces a história dos Nossos mensageirosanteriores.",
+ 35,
+ "Uma vez que o desdém dos incrédulos te penaliza, vê: mesmo que pudesses penetrar por um túnel na terra ou ascenderaté ao céu para apresentar-lhes um sinal, (ainda assim não farias com que cressem). Todavia, se Deus quisesse, teriaorientado todos até a verdadeira senda. Não sejas, pois, dos insipientes.",
+ 36,
+ "Só te atenderão os sensatos; quanto aos mortos, Deus os ressuscitará; depois, a Ele retornarão.",
+ 37,
+ "Dizem: Por que não lhe foi revelado um sinal de seu Senhor? Responde-lhes: Deus é capaz de revelar um sinal. Porém, sua maioria o ignora.",
+ 38,
+ "Não existem seres alguns que andem sobre a terra, nem aves que voem, que não constituam nações semelhantes a vós. Nada omitimos no Livro; então, serão congregados ante seu Senhor.",
+ 39,
+ "Aqueles que desmente os Nossos versículos são surdos e mudos e vagam nas trevas. Deus desvia quem quer, eencaminha pela senda reta quem Lhe apraz.",
+ 40,
+ "Dize: Se o castigo de Deus vos açoitasse, ou vos surpreendesse a Hora, invocaríeis outra divindade que não fosse Deus? Dizei-o, se estiverdes certos!",
+ 41,
+ "Qual! Tão-somente O invocaríeis; se Ele quisesse, concederia o que Lhe imploráveis e então vos esqueceríeis dosparceiros que Lhe havíeis atribuído!",
+ 42,
+ "Antes de ti, havíamos enviado (mensageiros) a outras raças, as quais atormentamos com a miséria e a adversidade, paraque se humilhassem.",
+ 43,
+ "Se ao menos, quando Nosso castigo os açoitou, se humilhassem... Não obstante, seus corações se endureceram e Satanáslhes abrilhantou o que faziam.",
+ 44,
+ "Mas quando esqueceram as admoestações que lhe tinham sido feitas, abrimos-lhes as portas da prosperidade, até que sesentissem regozijados pelo fato de haverem sido agraciados; então, exterminamo-los subitamente e, ei-los agoradesesperados!",
+ 45,
+ "E foi exterminado até ao último dos iníquos. Louvado seja Deus, Senhor do Universo!",
+ 46,
+ "Dize-lhes: Que vos pareceria se Deus, repentinamente, vos privasse da audição, extiguisse-vos a visão e vos selasse oscorações? Que outra divindade, além de Deus, poderia restaurá-los? Repara em como lhes expomos as evidências e, nãoobstante, as desdenham!",
+ 47,
+ "Dize: Que vos pareceria, se o castigo de Deus vos açoitasse furtiva ou manifestamente? Quais seriam os aniquilados, senão os iníquos?",
+ 48,
+ "Não enviamos os mensageiros, senão como alvissareiros e admoestadores; e aqueles que crêem e se emendam não serãopresas do temor, nem se atribularão.",
+ 49,
+ "Aqueles que desmentes os Nossos versículos serão açoitados pelo castigo, por sua depravação.",
+ 50,
+ "Dize: Eu não vos digo que possuo os tesouros de Deus ou que estou ciente do incognoscível, nem tampouco vos digo quesou um anjo; não faço mais do que seguir o que me é revelado. Dize mais: Poderão, acaso, equiparar-se o cego e o vidente? Não meditais?",
+ 51,
+ "Admoesta com ele (o Alcorão), aqueles que temem ser congregados ante seu Senhor. Não terão, fora d'Ele, protetor nemintercessor; quiçá, assim O temam.",
+ 52,
+ "Não rechaces aqueles que de manhã e à tarde invocam seu Senhor, desejosos de contemplar o Seu Rosto. Não te cabejulgá-los, assim como não lhes compete julgar-te se os rechaçares, contar-te-ás entre os iníquos.",
+ 53,
+ "Assim, Nós os fizemos testarem-se mutuamente, para que dissessem: São estes os que Deus favoreceu, dentre nós? Acaso, não conhece Deus melhor do que ninguém os agraciados?",
+ 54,
+ "Quando te forem apresentados aqueles que crêem nos Nossos versículos, dize-lhes: Que a paz esteja convosco! VossoSenhor impôs a Si mesmo a clemência, a fim de que aqueles dentre vós que, por ignorância, cometerem uma falta e logo searrependerem e se encaminharem, venham a saber que Ele é Indulgente, Misericordiosíssimo.",
+ 55,
+ "Assim esclarecemos os versículos, para assinalar o caminho aos pecadores.",
+ 56,
+ "Dize: Tem-me sido vedado adorar os que invocais em vez de Deus. Dize (mais): Não seguirei a vossa luxúria; porque eo fizer, desviar-me-ei e não me contarei entre os encaminhados.",
+ 57,
+ "Dize (ainda): Atenho-me à Evidência emanada do meu Senhor, não obstante vós a terdes desmentido. Porém, o quepretendeis que seja apressado não está em meu poder; sabei que o juízo só cabe a Deus, Que dita a verdade, porque é omelhor dos juízes.",
+ 58,
+ "Dize (outra vez): Se estivesse em meu poder o que pretendeis que seja apressado, a questão entre vós e mim já estariadecidida, pois Deus bem conhece os iníquos.",
+ 59,
+ "Ele possui as chaves do incognoscível, coisa que ninguém, além d'Ele, possui; Ele sabe o eu há na terra e no mar; e nãocai uma folha (da árvore) sem que Ele disso tenha ciência; não há um só grão, no seio da terra, ou nada verde, ou seco, quenão esteja registrado no Livro lúcido.",
+ 60,
+ "Ele é Quem vos recolhe, durante o sono, e vos reanima durante o dia, bem sabendo o que fazeis, a fim de que se cumprao período prefixado; logo, a Ele será o vosso retorno e, então, Ele vos inteirará de tudo quanto houverdes feito.",
+ 61,
+ "Ele é o Soberano absoluto dos Seus servos, e vos envia anjos da guarda para que, se a morte chegar a algum de vós, osNossos mensageiros o recolham, sem negligenciarem o seu dever.",
+ 62,
+ "Logo, retornarão a Deus, seu verdadeiro Senhor. Não é, acaso, Seu o juízo? Ele é o mais destro dos juízes.",
+ 63,
+ "Dize: Quem vos liberta das trevas da terra e do mar, embora deprequeis ostensiva ou humildemente? Dizendo: Se noslivrardes disto, contar-nos-emos entre os agradecidos!",
+ 64,
+ "Dize (ainda): Deus vos liberta disso e de toda angústia e, sem dúvida, Lhe atribuís parceiros!",
+ 65,
+ "Dize (mais): Ele é capaz de infligir-vos um castigo celestial ou terreno, ou confundir-vos em seitas, fazendo-vosexperimentar tiranias mútuas. Repara em como dispomos as evidências, a fim de que as compreendam.",
+ 66,
+ "Teu próprio povo o desmentiu (o Alcorão), não obstante ser (seu conteúdo) a pura verdade. Dize: Eu não sou vossoguardião.",
+ 67,
+ "Cada Mensagem terá um limite e logo sabereis.",
+ 68,
+ "Quando deparares com aqueles que difamam os Nossos versículos, aparta-te deles, até que mudem de conversa. Podeocorrer que Satã te fizesse esquecer disso; porém, após a lembrança, não te sentes com os iníquos.",
+ 69,
+ "Os tementes não será responsáveis por eles; porém, (seu dever) é lembrá-los, talvez temam a Deus.",
+ 70,
+ "Distancia-te daqueles que tomam a religião por jogo e diversão, a quem ilude a vida terrena, e relembra-lhes que todo oser será penitenciado pelo que cometer e não terá, além de Deus, protetor, nem intercessor algum; e ainda que ofereçaqualquer resgate, não lho será aceito. Os ignóbeis serão entregues ao tormento, pelo que cometeram, e terão, por bebida, água fervente e um doloroso castigo, por sua ignomínia.",
+ 71,
+ "Pergunta-lhes: Devemos, acaso, invocar em vez de Deus, a quem não pode beneficiar-nos nem prejudicar-nos? Devemos, depois de Deus nos haver iluminado, voltar-nos sobre os nossos calcanhares, como (o fez) aquele a quem osdemônios fascinaram e deixaram aturdido na terra, apesar de Ter amigos que lhe indicavam a verdadeira senda, dizendo-lhes: Vinde a nós! Dize: A orientação de Deus é a verdadeira Orientação, e foi-nos ordenado submeter-nos aoSenhor do Universo.",
+ 72,
+ "Praticai a oração e temei-O, pois sereis congregados ante Ele.",
+ 73,
+ "Foi Ele Quem, em verdade, criou os céus e a terra; e o dia em que disser: Seja!, será. Sua palavra é a única verídica; d'Ele será o Reino, no dia em que a trombeta soar. Ele é Conhecedor do cognoscível e do incognoscível, e Ele é oOnisciente, o Prudentíssimo.",
+ 74,
+ "Quando Abraão disse a Ezra, seu pai: Tomas os ídolos por deuses? Eis que te vejo a ti e a teu povo em evidente erro.",
+ 75,
+ "E foi como mostramos a Abraão o reino dos céus e da terra, para que se contasse entre os persuadidos.",
+ 76,
+ "Quando a noite o envolveu, viu uma estrela e disse: Eis aqui meu Senhor! Porém, quando esta desapareceu, disse: Nãoadoro os que desaparecem.",
+ 77,
+ "Quando viu desapontar a lua, disse: Eis aqui meu Senhor! Porém, quando esta desapareceu, disse: Se meu Senhor não meiluminar, contar-me-ei entre os extraviados.",
+ 78,
+ "E quando viu despontar o sol, exclamou: Eis aqui meu Senhor! Este é maior! Porém, quando este se pôs, disse: Ó povomeu, não faço parte da vossa idolatria!",
+ 79,
+ "Eu me consagro a Quem criou os céus e a terra; sou monoteísta e não me conto entre os idólatras.",
+ 80,
+ "Seu povo o refutou, e ele disse (às pessoas): Pretendeis refutar-me acerca de Deus, se é Ele que me tem iluminado? Sabei que não temerei os parceiros que Lhe atribuís, salvo se meu Senhor quiser que algo me suceda, porque a onisciênciado meu Senhor abrange tudo. Não meditais?",
+ 81,
+ "E como hei de temer o que idolatrais, uma vez que vós não temeis atribuir parceiros a Deus, sem que Ele vos tenhaconcedido autoridade para isso? Qual dos dois partidos é mais digno de confiança? Dizei-o, se o sabeis.",
+ 82,
+ "Os fiéis que não obscurecerem a sua fé com injustiças obterão a segurança e serão iluminados.",
+ 83,
+ "Tal foi o Nosso argumento, que proporcionamos a Abraão (para usarmos) contra seu povo, porque Nós elevamos adignidade de quem Nos apraz. Teu Senhor (ó Mohammad) é Prudente, Sapientíssimo.",
+ 84,
+ "Agraciamo-los com Isaac e Jacó, que iluminamos, como havíamos iluminado anteriormente Noé e sua descendência, Davi e Salomão, Jó e José, Moisés e Aarão. Assim, recompensamos os benfeitores.",
+ 85,
+ "E Zacarias, Yáhia (João), Jesus e Elias, pois todos se contavam entre os virtuosos.",
+ 86,
+ "E Ismael, Eliseu, Jonas e Lot, cada um dos quais preferimos sobre os seu contemporâneos.",
+ 87,
+ "E a alguns de seus pais, progenitores e irmãos, elegemo-los e os encaminhamos pela senda reta.",
+ 88,
+ "Tal é a orientação de Deus, pela qual orienta quem Lhe apraz, dentre os Seus servos. Porém, se tivessem atribuídoparceiros a Ele, tornar-se-ia sem efeito tudo o que tivessem feito.",
+ 89,
+ "São aqueles a quem concedemos o Livro, a sabedoria e a profecia. Mas se estes (seus descendentes) os rejeitassem, mesmo assim, confiá-los-íamos a outro povo que não fosse incrédulo.",
+ 90,
+ "São aqueles que Deus iluminou. Toma, pois, seu exemplo. Dize-lhes: Não vos exijo recompensa alguma, por isto. Ele (oAlcorão) não é mais do que uma mensagem para a humanidade.",
+ 91,
+ "Não aquilatam o Poder de Deus como devem, quando dizem: Deus nada revelou a homem algum! Dize: Quem, então, revelou o Livro, apresentado por Moisés - luz e orientação para os humanos - que copiais em pergaminhos, do qual mostraialgo e ocultais muito, e mediante o qual fostes instruídos de tudo quanto ignoráveis, vós e vossos antepassados? Dize-lhes, em seguida: Deus! E deixa-os, então, entregues às suas cismas.",
+ 92,
+ "Eis aqui o Livro bendito que temos revelado, confirmante dos anteriores, para que admoestes, com ele, a Mãe dasCidades e todas as cidades circunvizinhas. Aqueles que crêem na outra vida crêem nele e observam as suas orações.",
+ 93,
+ "Haverá alguém mais iníquo do que quem forja mentiras acerca de Deus, ou do que quem diz: Sou inspirado!, quandonada lhe foi inspirado? E que diz: Eu posso revelar algo igual ao que Deus revelou!? Ah, se pudesses ver os iníquos naagonia da morte quando os anjos, com mãos estendidas, lhes disserem: Entregai-nos vossas almas! Hoje, ser-vos-á infligidodo castigo afrontoso, por haverdes dito inverdades acerca de Deus e por vos haverdes ensoberbecido perante os Seusversículos.",
+ 94,
+ "E comparecereis ante Nós, isolados, tal como vos criamos da primeira vez, deixando atrás de vós tudo quanto vosconcedemos, e não veremos convosco vossos intercessores, os quais pretendíeis fossem vossos parceiros; rompeu-se ovínculo entre vós e eles, e se vos desvaneceu tudo quanto inventastes.",
+ 95,
+ "Deus é o Germinador das plantas graníferas e das nucleadas! Ele faz surgir o vivo do morto e extrai o morto do vivo. Isto é Deus! Como, pois, vos desviais?",
+ 96,
+ "É Ele Quem faz despontar a aurora e Quem vos estabelece a noite para o repouso; e o sol e a luz, para cômputo (dotempo). Tal é a disposição do Poderoso, Sapientíssimo.",
+ 97,
+ "Foi Ele Quem deu origem, para vós, às estrelas, para que, com a sua ajuda, vos encaminhásseis, nas trevas da terra e domar. Temos esclarecido os versículos para os sábios.",
+ 98,
+ "Foi Ele Quem vos produziu de um só ser e vos proporcionou uma estância para descanso. Temos elucidado osversículos para os sensatos.",
+ 99,
+ "É Ele Quem envia a água do céu. Com ela, fizemos germinar todas as classes de plantas, das quais produzimos verdescaules e, destes, grãos espigados, bem como as tamareiras, de cujos talos pendem cachos ao alcance da mão; as videiras, asoliveiras e as romãzeiras, semelhantes (em espécie) e diferentes (em variedade). Reparai em seu fruto, quando frutificam, eem sua madureza. Nisto há sinais para os fiéis.",
+ 100,
+ "Mesmo assim atribuem como parceiros a Deus os gênios, embora fosse Ele Quem os criasse; e, nesciamente, inventaram-Lhe filhos e filhas. Glorificado e exaltado seja, por tudo quanto Lhe atribuem.",
+ 101,
+ "Originador dos céus e da terra! Como poderia Ter prole, quando nunca teve esposa, e foi Ele Que criou tudo o queexiste, e é Onisciente?",
+ 102,
+ "Tal é Deus, vosso Senhor! Não há mais divindade além d'Ele, Criador de tudo! Adorai-O, pois porque é o Guardião detodas as coisas.",
+ 103,
+ "Os olhares não podem percebê-Lo, não obstante Ele Se aperceber de todos os olhares, porque Ele é o Onisciente, oSutilíssimo.",
+ 104,
+ "Já vos chegaram as evidências do vosso Senhor! Quem as observar será em benefício próprio; quem se obstinar (emnegá-las) será igualmente em seu prejuízo, e eu não sou vosso guardião.",
+ 105,
+ "Assim dispomos os sinais para refutar os iníquos. Então, não poderão contestar-te, a não ser dizendo que tens tudoestudado, e para explicá-los aos homens que têm conhecimento.",
+ 106,
+ "Segue, pois, o que te foi inspirado por teu Senhor; não há divindade além d'Ele; e distancia-se dos idólatras.",
+ 107,
+ "Porém, se Deus quisesse, nunca se teriam dado á idolatria. Não te designamos (ó Mohammad) como seu defensor, nemcomo seu guardião.",
+ 108,
+ "Não injurieis o que invocam, em vez de Deus, a menos que eles, em sua ignorância, injuriem iniquamente Deus. Assim, abrilhantamos as ações de cada povo; logo, seu retorno será a seu Senhor, que os inteirará de tudo quando tiverem feito.",
+ 109,
+ "Juraram solenemente por Deus que, se lhes chegasse um sinal, creriam nele. Dize-lhes: Os sinais só estão em poder deDeus. Porém, quem poderá fazer-vos compreender que, ainda que isto se verificasse, não creriam?",
+ 110,
+ "Assim confundimos seus corações e seus olhos, tal como fizemos quando disso duvidaram pela primeira vez, e osabandonamos, vacilantes, em sua transgressão.",
+ 111,
+ "Ainda que lhes enviássemos os anjos, os mortos lhes falassem e congregássemos ante seus olhos toda a criação, nuncacreriam, a menos que a Deus aprouvesse; porém, na maioria, são insipientes.",
+ 112,
+ "Pela mesmo razão, temos apontado a cada profeta adversários sedutores, tanto entre os humanos como entre os gênios, que influenciam uns aos outros com a eloqüência de suas palavras; porém, se teu Senhor tivesse querido, não o teriam feito. Deixa-os, pois, com tudo quanto forjam!",
+ 113,
+ "Que lhes prestem atenção os corações daqueles que não crêem na vida futura; que se contentem com eles, e que lucremo que quiserem lucrar.",
+ 114,
+ "Dize: Poderia eu anelar outros árbitro que não fosse Deus, quando foi Ele Quem vos revelou o Livro detalhado? Aqueles a quem revelamos o Livro sabem que ele é uma revelação verdadeira, que emana do teu Senhor. Não sejas, pois, dos que duvidam.",
+ 115,
+ "As promessas do teu Senhor já se têm cumprido fiel e justiceiramente, pois Suas promessas são imutáveis, porque ele éo Oniouvinte, o Sapientíssimo.",
+ 116,
+ "Se obedeceres á maioria dos seres da terra, eles desviar-te-ão da senda de Deus, porque não professam mais do que aconjectura e não fazem mais do que inventar mentiras.",
+ 117,
+ "Teu Senhor é o mais conhecedor de quem se desvia de Sua senda, assim como é o mais conhecedor dos encaminhados.",
+ 118,
+ "Comei, pois, de tudo aquilo sobre o qual tenha sido invocado o nome de Deus, se credes em Seus versículos.",
+ 119,
+ "E que vos impede de desfrutardes de tudo aquilo sobre o qual foi invocado o nome de Deus, uma vez que Ele jáespecificou tudo quanto proibiu para vós, salvo se vos fordes obrigados a tal? Muitos se desviam, devido á luxúria, porignorância; porém, teu Senhor conhece os transgressores.",
+ 120,
+ "Fugi do pecado, tanto confesso como íntimo, porque aqueles que lucram como o pecado serão castigados pelo quehouverem lucrado.",
+ 121,
+ "Não comais aquilo (concernente a carnes) sobre o qual não tenha sido invocado o nome de Deus, porque isso é umaprofanação e porque os demônios inspiram os seus asseclas a disputarem convosco; porém, se os obedecerdes, sereisidólatras.",
+ 122,
+ "Pode, acaso, equiparar-se aquele que estava morto e o reanimamos á vida, guiando-o para a luz, para conduzir-se entreas pessoas, àquele que vagueia nas trevas, das quais não poderá sair? Assim foram abrilhantadas as ações aos incrédulos.",
+ 123,
+ "De tal modo, estabelecemos líderes, em todas as cidades, entre os piores pecadores, para que assim conspirassemmutuamente; porém, só corromperão a si mesmos, sem o saberem.",
+ 124,
+ "Quando lhes é apresentado um versículo, dizem: Jamais creremos, até que nos seja apresentado algo semelhante ao quefoi concedido aos mensageiros de Deus! Deus sabe melhor do que ninguém a quem deve encomendar a Sua missão. Logoalcançará os pecadores uma humilhação, ante Deus, e um severo castigo, por suas conspirações.",
+ 125,
+ "A quem Deus quer iluminar, dilata-lhe o peito para o Islam; a quem quer desviar (por tal merecer), oprime-lhe o peito, como aquele que se eleva na atmosfera. Assim, Deus cobre de abominação aqueles que se negam a crer.",
+ 126,
+ "E eis aqui a senda reta do teu Senhor. Já elucidamos as leis para aqueles que meditam.",
+ 127,
+ "Obterão a morada de paz junto ao seu Senhor, porque ele será o seu protetor por tudo quanto fizerem.",
+ 128,
+ "No dia em que Ele congregar todos (e disser): Ó assembléia de gênios, já seduziste bastante o homem!, seus asseclashumanos dirão: Ó Senhor nosso, utilizamo-nos mutuamente; porém, agora, alcançamos o término que nos fixaste, Então, ser-lhes-á dito: O fogo será a vossa morada, onde permanecereis eternamente, salvo para quem Deus quiser livrar disso. Teu Senhor é Prudente, Sapientíssimo.",
+ 129,
+ "Assim, damos poder a alguns iníquos sobre os outros, por causa do que lucraram.",
+ 130,
+ "Ó assembléia de gênios e humanos, acaso não se vos apresentaram mensageiros, dentre vós, que vos ditaram Meusversículos e vos admoestaram com o comparecimento neste vosso dia? Dirão: Testemunhamos contra nós mesmos! A vidaterrena os iludiu, e confessarão que tinham sido incrédulos.",
+ 131,
+ "Isto porque teu Senhor jamais destruirá injustamente as cidades, enquanto seus habitantes estiverem desavisados.",
+ 132,
+ "Para todos haverá graus concordantes com o que houverem feito. Teu Senhor não está desatento a tudo quanto fazeis.",
+ 133,
+ "Teu Senhor é, na Sua Opulência, Misericordiosíssimo; e, se Ele quisesse, far-vos-ia desaparecer e vos suplantaria poroutros, tal como vos criou das gerações de outros povos.",
+ 134,
+ "É inexorável o que está prometido e não podereis impedir (Deus).",
+ 135,
+ "Dize: Ó povo meu, fazei tudo quanto puderdes que eu farei o mesmo! Logo sabereis a quem corresponderá a últimamorada. Por certo que os iníquos não prosperarão.",
+ 136,
+ "Do que Deus tem produzido em abundância, quanto às semeaduras e ao gado, eles Lhe destinam um quinhão, dizem, segundo as suas fantasias: Isto é para Deus e aquilo é para os nossos parceiros! Porém, o que destinaram a seus parceirosjamais chegará a Deus; e o destinado a Deus chegará aos seus (supostos) parceiros. Que péssimo é o que julgam!",
+ 137,
+ "Todavia, aos olhos da maior parte dos idólatras, seus \"parceiros\" tomaram fascinante o assassinato de crianças, a fimde os conduzirem à sua própria destruição; porém, se Deus quisesse, não o teriam feito. Deixa-os, pois, com tudo quantoforjam.",
+ 138,
+ "Eles dizem que tal e tal gado e que tais semeaduras são proibidos, e ninguém deverá consumi-los, exceto aqueles (assim dizem) que desejarmos; ademais, há animais aos quais estão proibidos a canga e a carga, e sobre os quais (no abate) o nome de Deus não foi invocado; forjam mentiras acerca d'Ele, o Qual os castigará por suas invenções.",
+ 139,
+ "Dizem ainda: O que há nas entranhas destes animais é lícito exclusivamente para os nossos varões e está vedado ásnossas mulheres; porém, se a cria nascer morta, todos desfrutarão dela! Ele os castigará por seus desatinos, porque éPrudente, Sapientíssimo.",
+ 140,
+ "São desventurados aqueles que, néscia e estupidamente, matam seus filhos, na sua cega ignorância, e se descartamdaquilo com que Deus os agraciou, forjando mentiras a respeito de Deus. Já estão desviados e jamais serão encaminhados.",
+ 141,
+ "Ele foi Quem vos criou pomares, com plantas trepadeiras ou não, assim como as tamareiras, as sementeiras, com frutosvários sabores, as oliveiras e as romãzeiras, semelhantes (em espécie) e diferentes (em variedade). Comei de seus frutos, quando frutificarem, e pagai seu tributo, no dia da colheita, e não vos excedais, porque Deus não ama os perdulários.",
+ 142,
+ "Ele criou para vós animais de carga, o outros, para o abate. Comei, pois, de outro com que Deus vos agraciou e nãosigais os passos de Satanás, porque é vosso inimigo declarado.",
+ 143,
+ "(Proporcionou-vos também) oito tipos (de reses), em pares: um casal de ovinos e outro de caprinos. Dize: Vedou-vosDeus os dois machos ou as duas fêmeas, ou o que estas levam em suas entranhas? Indicai-mo, com certeza, se sois sinceros.",
+ 144,
+ "Proporcionou-vos, ainda, um casal camelídeo e outro bovino. Dize: Vedou-vos Deus os dois machos ou as duasfêmeas, ou o que estas levam em suas entranhas? Acaso estáveis presentes quando Deus vos prescreveu isto? Haverá alguémmais iníquo de que quem forja mentiras acerca de Deus, para desviar nesciamente os humanos? Deus não encaminha osiníquos.",
+ 145,
+ "Dize: De tudo o que me tem sido revelado nada acho proibido para quem necessita alimentar-se, nada além da carniça, do sangue fluente ou da carne de suíno, uma vez que tenham sido sacrificados com a invocação nem abuso, se vir compelidoa isso, saiba que teu Senhor ó Indulgente, Misericordiosíssimo.",
+ 146,
+ "Quanto àqueles que seguiram a lei judaica, vedamos-lhes os animais solípedes e, dos bovinos e ovinos, vedamos-lhesas gorduras, exceto as que estão no lombo, nas entranhas ou as aderentes aos ossos. Isso foi em castigo por sua iniqüidade, porque somos Veracíssimos.",
+ 147,
+ "Se te desmentirem, dize: Vosso Senhor é Clementíssimo; porém, Seu castigo, para os pecadores, jamais será contido.",
+ 148,
+ "Os idólatras dirão: Se Deus quisesse, nem nós, nem nossos pais, jamais teríamos idolatrado, nem nada nos seriavedado! Assim, seus antepassados desmentiram os mensageiros, até que sofreram o Nosso castigo. Dize: Tereis, acaso, algum argumento a nos expor? Qual! Não seguis mais do que conjecturas e não fazeis mais do que inventar mentiras!",
+ 149,
+ "Dize (mais): Só a Deus pertence o argumento eloqüente. Se ele quisesse, Ter-vos-ia iluminado a todos.",
+ 150,
+ "Dize (ainda): Apresentai vossas testemunhas, para provarem que Deus vedou o que dizeis Ter vedado! E se odeclararem, não aceites as suas declarações nem te entregues á caprichos daqueles que desmentem os Nossos versículos, não crêem na outra vida e atribuem semelhantes a seu Senhor.",
+ 151,
+ "Dize (ainda mais): Vinde, para que eu vos prescreva o que vosso Senhor vos vedou: Não Lhe atribuais parceiros; trataicom benevolência vossos pais; não sejais filicidas, por temor á miséria- Nós vos sustentaremos, tão bem quanto aos vossosfilhos -; não vos aproximeis das obscenidades, tanto pública, como privadamente, e não mateis, senão legitimamente, o queDeus proibiu matar. Eis o que Ele vos prescreve, para que raciocineis.",
+ 152,
+ "Não disponhais do patrimônio do órfão senão da melhor forma possível, até que chegue á puberdade; sede leais namedida e no peso- jamais destinamos a ninguém carga maios á que pode suportar. Quando sentenciardes, sede justos, aindaque se trate de um parente carnal, e cumpri os vossos compromissos para com Deus. Eis aqui o que Ele vos prescreve, paraque mediteis.",
+ 153,
+ "E (o Senhor ordenou-vos, ao dizer): Esta é a Minha senda reta. Segui-a e não sigais as demais, para que estas não vosdesviem da Sua. Eis o que Ele vos prescreve, para que O temais.",
+ 154,
+ "Havíamos concedido a Moisés o Livro como uma bênção para quem o observasse, contendo a explanação de tudo, esendo orientação e misericórdia, a fim de que (os israelitas) cressem no comparecimento ante seu Senhor.",
+ 155,
+ "E este é o Livro bendito que revelamos (ao Mensageiro); observai-o, pois, e temei a Deus; quiçá Ele Se compadeça devós.",
+ 156,
+ "E para que não digais: O Livro só foi revelado a dois povos antes de nós, o que fez com que permanecêssemosignorantes de tudo quanto eles estudavam.",
+ 157,
+ "Ou digais: Se o Livro nos tivesse sido revelado, teríamos sido melhor iluminados que eles. Porém, já vos chegou umaclara evidência, orientação e misericórdia de vosso Senhor. Haverá alguém mais iníquo do que quem desmente e desdenhaos versículos de Deus? Infligiremos o pior castigo àqueles que desdenharem os Nossos versículos, bem como àqueles que setiverem afastado deles.",
+ 158,
+ "Acaso, aguardam que se lhes apresentem os anjos ou teu Senhor, ou então que lhes cheguem sinais d'Ele? No dia emque lhes chegarem alguns se Seus sinais será inútil a fé do ser que não tiver acreditado antes, ou que, em sua crença, nãotenho agido com retidão. Dize: Aguardai, que nós aguardaremos.",
+ 159,
+ "Não és responsável por aqueles que dividem a sua religião e formam seitas, porque sua questão depende só de Deus, oQual logo os inteirará de tudo quanto houverem feito.",
+ 160,
+ "Quem tiver praticado o bem receberá o décuplo pelo mesmo; quem tiver cometido um pecado receberá um castigoequivalente, e não serão defraudados (nem um, nem outro).",
+ 161,
+ "Dize: Meu Senhor conduziu-me pela senda reta- uma religião inatacável; é o credo de Abraão, o monoteísta, que jamaisse contou entre os idólatras.",
+ 162,
+ "Dize: Minhas orações, minhas devoções, minha vida e minha morte pertencem a Deus, Senhor do Universo,",
+ 163,
+ "Que não possui parceiro algum, Tal me tem sido ordenado e eu sou o primeiro dos muçulmanos.",
+ 164,
+ "Dize ainda: Como poderia eu adorar outro senhor que não fosse Deus, uma vez que Ele é o Senhor de todas as coisas? Nenhuma alma receberá outra recompensa que não for a merecida, e nenhuma pecador arcará cm culpas alheias, Então, retornareis ao vosso Senhor, o Qual vos inteirará de vossas divergências.",
+ 165,
+ "Ele foi Quem vos designou legatários na terra e vos elevou uns sobre outros, em hierarquia, para testar-vos com tudoquanto vos agraciou. Teu Senhor é Destro no castigo, conquanto seja Indulgente, Misericordiosíssimo."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/7.json b/share/quran-json/TheQuran/pt/7.json
new file mode 100644
index 0000000..abf4cad
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/7.json
@@ -0,0 +1,431 @@
+[
+ {
+ "id": "7",
+ "place_of_revelation": "makkah",
+ "transliterated_name": "Al-A'raf",
+ "translated_name": "The Heights",
+ "verse_count": 206,
+ "slug": "al-araf",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1593,
+ 1585,
+ 1575,
+ 1601
+ ]
+ },
+ 1,
+ "Alef, Lam, Mim, Sad.",
+ 2,
+ "(Eis aqui) um Livro, que te foi revelado para que não haja receio em teu peito, e para que, com ele, admoestes osincrédulos, para que seja uma mensagem aos fiéis.",
+ 3,
+ "Segui o que vos foi revelado por vosso Senhor e não sigais outros protetores em lugar d'Ele. Quão pouco meditais!",
+ 4,
+ "Quantas cidades temos destruído! Nosso castigo tomou-os (a seus habitantes) de surpresa, enquanto dormiam, à noite, oufaziam a sesta.",
+ 5,
+ "Nada imploraram, quando os surpreendeu o Nosso castigo; não fizeram mais do que confessar, clamando: Fomos iníquos!",
+ 6,
+ "Inquiriremos aqueles aos quais foi enviada a Nossa mensagem, assim como interrogaremos os mensageiros.",
+ 7,
+ "E lhes enumeraremos as ações com pleno conhecimento, porque jamais estivemos ausentes.",
+ 8,
+ "E a ponderação, nesse dia, será a eqüidade; aqueles cujas boas ações forem mais pesadas, serão os bem-aventurados.",
+ 9,
+ "E aqueles, cujas boas ações forem leve, serão desventurados, por haverem menosprezado os Nossos versículos.",
+ 10,
+ "Temo-vos enraizado na terra, na qual vos proporcionamos subsistência. Quão pouco agradeceis!",
+ 11,
+ "Criamo-vos e vos demos configuração, então dissemos aos anjos: Prostrais-vos ante Adão! E todos se prostraram, menos Lúcifer, que se recusou a ser dos prostrados.",
+ 12,
+ "Perguntou-lhe (Deus): Que foi que te impediu de prostrar-te, embora to tivéssemos ordenado? Respondeu: Sou superiora ele; a mim criaste do fogo, e a ele do barro.",
+ 13,
+ "Disse-lhe: Desce daqui (do Paraíso), porque aqui não é permitido te ensoberbeceres. Vai-te daqui, porque és um dosabjetos!",
+ 14,
+ "Implorou: Tolera-me até ao dia em que (os seres) forem ressuscitados!",
+ 15,
+ "Respondeu-lhe: Considera-te entre os tolerados!",
+ 16,
+ "Disse: Juro que, por me teres extraviado, desviá-los-ei da Tua senda reta.",
+ 17,
+ "E, então, atacá-los-ei pela frente e por trás, pela direita e pela esquerda e não acharás, entre eles, muitos agradecidos!",
+ 18,
+ "Deus lhe disse: Sai daqui! Vituperado! Rejeitado! Juro que encherei o inferno contigo e com aqueles que te seguirem.",
+ 19,
+ "E tu, ó Adão, habita com tua esposa o Paraíso! Desfrutai do que vos aprouver; porém, não vos aproximeis desta árvore, porque estareis entre os transgressores.",
+ 20,
+ "Então, Satã lhe cochichou, para revelar-lhes o que, até então, lhes havia sido ocultado das suas vergonhas, dizendo-lhes: Vosso Senhor vos proibiu esta árvore para que não vos convertêsseis em dois anjos ou não estivésseis entre os imortais.",
+ 21,
+ "E ele lhes jurou: Sou para vós um fiel conselheiro.",
+ 22,
+ "E, com enganos, seduziu-os. Mas quando colheram o fruto da árvore, manifestaram-se-lhes as vergonhas e começaram acobrir-se com folhas, das plantas do Paraíso. Então, seu Senhor os admoestou: Não vos havia vedado esta árvore e não voshavia dito que Satanás era vosso inimigo declarado?",
+ 23,
+ "Disseram: Ó Senhor nosso, nós mesmos nos condenamos e, se não nos perdoares a Te apiedares de nós, seremosdesventurados!",
+ 24,
+ "E Ele lhes disse: Descei! Sereis inimigos uns dos outros e tereis, na terra, residência e gozo transitórios.",
+ 25,
+ "Disse-lhes (ainda): Nela vivereis e morrereis, e nela sereis ressuscitados.",
+ 26,
+ "Ó filhos de Adão, enviamos-vos vestimentas, tanto para dissimulardes vossas vergonhas, como para o vosso aparato; porém, o pudor é preferível! Isso é um dos sinais de Deus, para que meditem.",
+ 27,
+ "Ó filhos de Adão, que Satanás não vos seduza, como seduziu vossos pais no Paraíso, fazendo-os sair dele, despojando-os dos seus invólucros (de inocência), para mostrar-lhes as suas vergonhas! Ele e seus asseclas vos espreitam, de onde não os vedes. Sem dúvida que temos designado os demônios como amigos dos incrédulos.",
+ 28,
+ "Quando estes cometem uma obscenidade, dizem: Cometemo-la porque encontramos nossos pais fazendo isto; e foi DeusQuem no-la ordenou. Dize: Deus jamais ordena obscenidade. Ousais dizer de Deus o que ignorais?",
+ 29,
+ "Dize ainda: Meu Senhor só ordena a eqüidade, para que vos consagreis a Ele, em todas as mesquitas, e O invoqueissinceramente. Assim como vos criou, retornareis a Ele.",
+ 30,
+ "Ele encaminhou alguns, e outros mereceram ser desviados, porque adotaram por protetores os demônios, em vez deDeus, pensando que estavam bem encaminhados.",
+ 31,
+ "Ó filhos de Adão, revesti-vos de vosso melhor atavio quando fordes às mesquitas; comei e bebei; porém, não vosexcedais, porque Ele não aprecia os perdulários.",
+ 32,
+ "Dize-lhes: Quem pode proibir as galas de Deus e o desfrutar os bons alimentos que Ele preparou para Seus servos? Dize-lhes ainda: Estas coisas pertencem aos que crêem, durante a vida neste mundo; porém, serão exclusivas dos crentes, noDia da Ressurreição. Assim elucidamos os versículos aos sensatos.",
+ 33,
+ "Dize: Meu Senhor vedou as obscenidades, manifestas ou íntimas; o delito; a agressão injusta; o atribuir parceiros a Ele, porque jamais deu autoridade a que digais d'Ele o que ignorais.",
+ 34,
+ "Cada nação tem o seu termo e, quando se cumprir, não poderá atrasá-lo nem adiantá-lo uma só hora.",
+ 35,
+ "Ó filhos de Adão, quando se apresentarem mensageiros, dentre vós, que vos ditarão Meus versículos, aqueles quetemerem a Deus e a Ele se encomendarem não serão presas do temor, nem se atribularão.",
+ 36,
+ "Aqueles que desmentirem os Nossos versículos e se ensoberbecerem serão condenados ao inferno, onde permanecerãoeternamente.",
+ 37,
+ "Haverá alguém mais iníquo do que quem forja mentiras acerca de Deus ou desmente os Seus versículos? Elesparticiparão do que está estipulado no Livro, até que se lhes apresentem os Nossos mensageiros para separá-los de suasalmas e lhes digam: Onde estão aqueles que invocáveis, em vez de Deus? Dirão: Desvaneceram-se! Com isso, confessarãoque haviam sido incrédulos.",
+ 38,
+ "Deus lhes dirá: Entrai no inferno, onde estão as gerações de gênios e humanos que vos precederam! Cada vez que aíingressar uma geração, abominará a geração congênere, até que todas estejam ali recolhidas; então, a última dirá, acerca daprimeira: Ó Senhor nosso, eis aqui aqueles que nos desviaram; duplica-lhes o castigo infernal! Ele lhes dirá: o dobro serápara todos; porém, vós o ignorais.",
+ 39,
+ "Então, a primeira dirá à última: Não vos devemos favor algum. Sofrei, pois, o castigo, pelo que cometestes.",
+ 40,
+ "Àqueles que desmentirem os Nossos versículos e se ensoberbecerem, jamais lhes serão abertas as portas do céu, nementrarão no Paraíso, até que um camelo passe pelo buraco de uma agulha. Assim castigamos os pecadores.",
+ 41,
+ "Terão o inferno por leito, cobertos com mantos de fogo. Assim castigamos os iníquos.",
+ 42,
+ "Quanto aos fiéis, que praticam o bem - jamais impomos a alguém uma carga superior às suas forças -, saibam que serãoos diletos do Paraíso, onde morarão eternamente.",
+ 43,
+ "Extinguiremos todo o rancor de seus corações. A seus pés correrão os rios, e dirão: Louvado seja Deus, que nosencaminhou até aqui; jamais teríamos podido encaminhar-nos, se Ele não nos tivesse encaminhado. Os mensageiros de nossoSenhor nos apresentaram a verdade. Então, ser-lhes-á dito: Eis o Paraíso que herdastes em recompensa pelos que fizestes.",
+ 44,
+ "E os diletos do Paraíso gritarão aos condenados, no inferno: Verificamos que era verdade tudo quanto nosso Senhor noshavia prometido. Porventura, comprovastes que era verdade o que o vosso Senhor vos havia prometido? Dirão: Sim! Umarauto, então, proclamará entre eles: Que a maldição de Deus caia sobre os iníquos,",
+ 45,
+ "Que afastam os demais da senda de Deus, anunciam-na tortuosa e negam a vida futura!",
+ 46,
+ "E entre ambos haverá um véu e, nos cimos, situar-se-ão homens que reconhecerão todos, por suas fisionomias, esaudarão os diletos do Paraíso: Que a paz esteja convosco! Porém, ainda que eles (os dos cimos) anelem o Paraíso, nãoentrarão ali.",
+ 47,
+ "Mas, quando seus olhares se voltarem para os condenados ao inferno, dirão: Ó Senhor nosso, não nos juntes com osiníquos.",
+ 48,
+ "Os habitantes dos cimos gritarão a uns homens, os quais reconhecerão por suas fisionomias: De que vos serviram osvossos tesouros e a vossa soberbia?",
+ 49,
+ "São estes, acaso, de quem juraste que Deus não os agraciaria com Sua misericórdia? (Deus dirá a eles): Entrai noParaíso, onde não sereis presas do temor, nem vos atribulareis.",
+ 50,
+ "Os condenados ao inferno clamarão os diletos do Paraíso: Derramai por sobre nós um pouco de água ou algo com queDeus vos agraciou. Dir-lhes-ão: Deus vedou ambos aos incrédulos,",
+ 51,
+ "Que tomaram sua religião por diversão e jogo, e os iludiu a vida terrena! Esquecemo-los hoje, como eles esqueceram ocomparecimento, neste dia, bem como por terem negado os Nossos versículos,",
+ 52,
+ "Não obstante lhes temos apresentado um Livro, o qual lhes elucidamos sabiamente, e é orientação e misericórdia para oscrentes.",
+ 53,
+ "Esperam eles, acaso, algo além da comprovação? O dia em que esta chegar, aqueles que a houverem desdenhado, dirão: Os mensageiros de nosso Senhor nos haviam apresentado a verdade. Porventura obteremos intercessores, que advoguem emnosso favor? Ou retornaremos, para nos comportarmos distintamente de como o fizemos? Porém, já terão sido condenados, etudo quanto tiverem forjado desvanecer-se-á.",
+ 54,
+ "Vosso Senhor é Deus, Que criou os céus e a terra em seis dias, assumindo, em seguida, o Trono. Ele ensombrece o diacom a noite, que o sucede incessantemente. O sol, a lua e as estrelas estão submetidos ao Seu comando. Acaso, não Lhepertencem a criação e o poder? Bendito seja Deus, Senhor do Universo.",
+ 55,
+ "Invocai vosso Senhor humílima e intimamente, porque Ele não aprecia os transgressores.",
+ 56,
+ "E não causeis corrupção na terra, depois de haver sido pacificada. Outrossim, incovai-O com temor e esperança, porqueSua misericórdia está próxima dos benfeitores.",
+ 57,
+ "Ele é Quem envia os ventos alvissareiros, por Sua misericórdia, portadores de densas nuvens, que impulsiona até umacomarca árida e delas faz descer a água, mediante a qual produzimos toda a classe de frutos. Do mesmo modo ressuscitamosos mortos, para que mediteis.",
+ 58,
+ "Da terra fértil brota a vegetação, com o beneplácito do seu Senhor; da estéril, porém, nada brota, senão escassamente. Assim elucidamos os versículos para os agradecidos.",
+ 59,
+ "Enviamos Noé ao seu povo, ao qual disse: Ó povo meu, adorai a Deus, porque não tereis outra divindade além d'Ele. Temo, por vós, o castigo do dia aziago.",
+ 60,
+ "Os chefes, dentre seus povos, disseram: Vemos-te em um erro evidente.",
+ 61,
+ "Respondeu-lhes: Ó povo meu, não há erro em mim, pois sou o mensageiro do Senhor do Universo.",
+ 62,
+ "Comunico-vos as mensagens do meu Senhor, aconselho-vos, e sei de Deus o que ignorais.",
+ 63,
+ "Estranhais, acaso, que chegue uma mensagem do vosso Senhor por intermédio de um homem da vossa raça? Isto é paraadmoestar-vos e para que temais a Deus, a fim de que sejais compadecidos.",
+ 64,
+ "Porém, desmentiram-no, e o salvamos, juntamente com os que com ele estava na arca, afogando aqueles que desmentiramo Nossos versículos, porque constituíam um povo cego.",
+ 65,
+ "E ao povo de Ad enviamos seu irmão Hud, o qual disse: Ó povo meu, adorai a Deus, porque não tereis outra divindadealém d'Ele. Não O temeis?",
+ 66,
+ "Porém, os chefes incrédulos, dentre seu povo, disseram: Certamente, vemos-te em insensatez e achamos que ésmentiroso.",
+ 67,
+ "Respondeu-lhes: Ó povo meu, não há insensatez em mim, e sou o mensageiro do Senhor do Universo.",
+ 68,
+ "Comunico-vos as mensagens do meu Senhor e sou vosso fiel conselheiro.",
+ 69,
+ "Estranhais, acaso, que vos chegue uma mensagem do vosso Senhor, por um homem da vossa raça, para admoestar-vos? Reparai em como Ele vos designou sucessores do povo de Noé, e vos proporcionou alta estatura. Recordai-vos das mercêsde Deus (para convosco), a fim de que prospereis.",
+ 70,
+ "Disseram-lhe: Vens, acaso, para fazer com que adoremos só a Deus e abandonarmos os que adoravam nossos pais? Faze, pois, com que se cumpram as tuas predições, se estiveres certos.",
+ 71,
+ "Respondeu-lhes: Já vos açoitaram a abominação e a indignação do vosso Senhor! Ousareis, acaso, discutir comigo, arespeito de nomes que inventais, vós e vossos pais, aos quais Deus não concedeu autoridade alguma? Aguardai, pois, que euaguardarei convosco.",
+ 72,
+ "Salvamo-lo, e a quem com ele estava, mercê, de Nossa misericórdia, e extirpamos aqueles que desmentiram Nossosversículos, porque não eram fiéis.",
+ 73,
+ "Ao povo de Samud enviamos seu irmão, Sáleh, que lhes disse: Ó povo meu, adorai a Deus, porque não tereis outradivindade além d'Ele. Chegou-vos uma evidência do nosso Senhor. Ei-la aqui: a camela de Deus é um sinal para vós; deixai-a pastar nas terras de Deus e não a maltrateis, porque vos açoitará um doloroso castigo.",
+ 74,
+ "Lembrai-vos de que Ele vos designou sucessores do povo de Ad, e vos enraizou na terra, em cujas planuras ergueispalácios, e em cujas montanhas cavais moradias. Recordai-vos das mercês de Deus para convosco e não causeis flagelo, nem corrupção na terra.",
+ 75,
+ "Porém, os chefes dos que se ensoberbeceram, dentre seu povo, perguntaram aos fiéis, submetidos: Estais seguros de queSáleh é um mensageiro do seu Senhor? Responderam: nós cremos em sua missão.",
+ 76,
+ "Mas os que se ensoberbeceram lhes disseram: Nós negamos o que credes.",
+ 77,
+ "E esquartejaram a camela, desacatando a ordem do seu Senhor, e disseram: Ó Sáleh, faze, pois, com que se cumpram astuas predições, se és um dos mensageiros.",
+ 78,
+ "Então, fulminou-vos um terremoto, e a manhã encontrou-os jacentes em seus lares.",
+ 79,
+ "E Sáleh distanciou-se deles, dizendo: Ó povo meu, eu vos comuniquei a mensagem do meu Senhor e vos aconselhei; porém, vós não apreciais os conselheiros.",
+ 80,
+ "E (enviamos) Lot, que disse ao seu povo: Cometeis abominação como ninguém no mundo jamais cometeu antes de vós,",
+ 81,
+ "Acercando-vos licenciosamente dos homens, em vez das mulheres. Realmente, sois um povo transgressor.",
+ 82,
+ "E a resposta do seu povo só constituiu em dizer (uns aos outros): Expulsai-vos da vossa cidade porque são pessoas quedesejam ser puras.",
+ 83,
+ "Porém, salvamo-los, juntamente com a sua família, exceto a sua mulher, que se contou entre os que foram deixados paratrás.",
+ 84,
+ "E desencadeamos sobre eles uma tempestade. Repara, pois, qual foi o destino dos pecadores!",
+ 85,
+ "E aos medianitas enviamos seu irmão Xuaib, que lhes disse: Ó povo meu, adorai a Deus, porque não tereis outradivindade além d'Ele! Já vos chegou uma evidência do vosso Senhor! Sede leais, na medida e no peso! Não defraudeis opróximo e não causeis corrupção na terra, depois de ela haver sido pacificada! Isso será melhor para vós, se sois fiéis.",
+ 86,
+ "Não vos posteis em caminho algum, obstruindo a senda de Deus e ameaçando quem n'Ele crê, esforçando-vos em fazê-latortuosa. Recordai-vos de quando éreis uns poucos e Ele vos multiplicou, e reparai qual foi o destino dos depravados.",
+ 87,
+ "E se entre vós há um grupo que crê na missão que me foi confiada e outro que a nega, aguarda, até que Deus julgue entrenós, porque Ele é o mais equânime dos juízes.",
+ 88,
+ "Os chefes que se ensoberbeceram, dentre o seu povo, disseram-lhe: Juramos que te expulsaremos da nossa cidade, óXuaib, juntamente com aqueles que contigo crêem, a menos que retorneis ao nosso credo. (Xuaib) retrucou: Ainda que odeploremos?",
+ 89,
+ "Forjaríamos mentiras a respeito de Deus, se retornássemos ao vosso credo, sendo que Deus já vos livrou dele. Éimpossível que o abracemos, sem que Deus, nosso Senhor, o queira, porque nosso Senhor tudo abrange sapientemente, e aEle nos encomendamos. Ó Senhor nosso, decide com eqüidade entre nós e o nosso povo, porque Tu és o mais equânime dosjuízes.",
+ 90,
+ "Mas os chefes incrédulos, dentre o seu povo, disseram: Se seguirdes Xuaib, sereis desventurados!",
+ 91,
+ "Então, fulminou-os um terremoto, e a manhã encontrou-os jacentes em seus lares.",
+ 92,
+ "Aqueles que desmentiram Xuaib foram despojados das suas habitações, como se nunca nelas houvessem habitado. Aqueles que desmentiram Xuaib tornaram-se desventurados.",
+ 93,
+ "Xuaib afastou-se deles, dizendo: Ó povo meu, já vos comuniquei as mensagens do meu Senhor, e vos aconselhei. Comopoderei atribular-me por um povo incrédulo?",
+ 94,
+ "Jamais enviamos um profeta a cidade alguma, sem antes afligirmos os seus habitantes com a miséria e adversidade, a fimde que se humilhem.",
+ 95,
+ "Depois lhes trocamos o mal pelo bem, até que se constituíssem em uma sociedade e, não obstante, disseram: Aadversidade e a prosperidade experimentaram-nas nossos pais. Então, de repente, surpreendemo-los com castigo, quandomenos esperavam.",
+ 96,
+ "Mas, se os moradores das cidades tivessem acreditado (em Deus) e O tivessem temido, tê-los-íamos agraciado com asbênçãos dos céus e da terra. Porém, como rejeitaram (a verdade), arrebatamo-los pelo que lucravam.",
+ 97,
+ "Estavam, acaso, os moradores das cidades seguros de que Nosso castigo não os surpreenderia durante a noite, enquantodormiam?",
+ 98,
+ "Ou estavam, acaso, seguros de que Nosso castigo não os surpreenderia em pleno dia, enquanto se divertiam?",
+ 99,
+ "Acaso, pensam estar seguros dos desígnios de Deus? Só pensam estar seguros dos desígnios de Deus os desventurados.",
+ 100,
+ "Não é, porventura, elucidativo para aqueles que herdaram a terra dos seus antepassados que, se quiséssemos, exterminá-los-íamos por seus pecados e selaríamos os seus corações para que não compreendessem?",
+ 101,
+ "Tais eram as cidades, de cujas histórias te narramos algo: sem dúvida que seus mensageiros lhes haviam apresentadoas evidências; porém, era impossível que cressem no que haviam desmentido anteriormente. Assim, Deus sigila os coraçõesos incrédulos.",
+ 102,
+ "Porque nunca encontramos, na maioria deles, promessa alguma, mas sim achamos que a maioria deles era depravada.",
+ 103,
+ "Depois destes mensageiros enviamos Moisés, com Nossos sinais, ao Faraó e aos chefes; mas estes se condenaram, aorechaçá-los. Repara, pois, qual foi o destino dos corruptores.",
+ 104,
+ "Moisés disse: Ó Faraó, sou o mensageiro do Senhor do Universo.",
+ 105,
+ "Justo é que eu não diga, a respeito de Deus, mais do eu a verdade. Sem dúvida que vos trago uma evidência do vossoSenhor. Permiti, portanto, que os israelitas partam comigo.",
+ 106,
+ "Respondeu-lhe: Se de fato trazes um sinal, mostra-no-lo, se estiveres certo.",
+ 107,
+ "Então Moisés jogou o seu cajado, e eis que este se converteu numa autêntica serpente.",
+ 108,
+ "E mostrou a mão, e eis que era de um fulgor branco para os espectadores.",
+ 109,
+ "Os chefes do povo do Faraó disseram: Sem dúvida que és um mago habilíssimo.",
+ 110,
+ "(O Faraó disse): Ele pretende expulsar-vos da vossa terra. Que aconselhais?",
+ 111,
+ "Responderam-lhe: Retém-no, juntamente com o seu irmão, e manda recrutadores às cidades.",
+ 112,
+ "Que tragam todo mago hábil (que encontrarem).",
+ 113,
+ "Quando os magos se apresentaram ante o Faraó, disseram: É de se supor que teremos uma recompensa se sairmosvencedores.",
+ 114,
+ "E lhes respondeu: Sim, e vos contareis entre os mais chegados (a mim).",
+ 115,
+ "Perguntaram: Ó Moisés, lançarás tu, ou então seremos nós os primeiros a lançar?",
+ 116,
+ "Respondeu-lhes: Lançai vós! E quando lançaram (seus cajados), fascinaram os olhos das pessoas, espantando-as, ederam provas de uma magia extraordinária.",
+ 117,
+ "Então, inspiramos Moisés: Lança o teu cajado! Eis que este devorou tudo quanto haviam simulado.",
+ 118,
+ "E a verdade prevaleceu, e se esvaneceu tudo o que haviam fingido.",
+ 119,
+ "(O Faraó e os chefes) foram vencidos, e foram humilhados.",
+ 120,
+ "E os magos caíram prostrados.",
+ 121,
+ "Disseram: Cremos no Senhor do Universo,",
+ 122,
+ "O Senhor de Moisés e de Aarão!",
+ 123,
+ "O Faraó lhes disse: Credes nele sem que eu vos autorize? Em verdade isto é uma conspiração que planejastes nacidade, para expulsardes dela a população. Logo o sabereis.",
+ 124,
+ "Juro que vos deceparei as mãos e os pés dos lados opostos e então vos crucificarei a todos.",
+ 125,
+ "Disseram-lhe: É certo que retornaremos ao nosso Senhor.",
+ 126,
+ "Vingas-te de nós só porque cremos nos sinais de nosso Senhor quando nos chegam? Ó Senhor nosso, concede-nospaciência e faze com que morramos muçulmanos!",
+ 127,
+ "Então, os chefes do povo do Faraó disseram: Permitirás que Moisés e seu povo façam corrupção na terra e teabandonem, a ti e aos teus deuses? Respondeu-lhes: Sacrificaremos os seus filhos; contudo, deixaremos viver as suasmulheres e assim seremos os seus dominadores.",
+ 128,
+ "Moisés disse ao seu povo: Implorai o socorro de Deus e perseverai, porque a terra só é de Deus e Ele a dá em herançaa quem Lhe apraz dentre os Seus servos. A recompensa será para os tementes.",
+ 129,
+ "Disseram-lhe: Fomos maltratados, antes e depois que tu nos chegaste. Respondeu-lhes: É possível que o vosso Senhorextermine os vossos inimigos e vos faça herdeiros na terra, para ver como vos comportais.",
+ 130,
+ "Já havíamos castigado o povo do Faraó com os anos (de seca) e a diminuição dos frutos, para que meditassem.",
+ 131,
+ "Porém, quando lhes chegava a prosperidade, diziam: Isto é por nós! Por outra, quando lhes ocorria uma desgraça, atribuíram-na ao mau augúrio de Moisés e daqueles que com ele estavam. Qual! Em verdade, o seu mau augúrio está comDeus. Porém, a sua maioria o ignora.",
+ 132,
+ "Disseram-lhe: Seja qual for o sinal que nos apresentares para fascinar-nos, jamais em ti creremos.",
+ 133,
+ "Então lhes enviamos as inundações, os gafanhotos, as lêndeas, os sapos e o sangue, como sinais evidentes; porém, ensoberbeceram-se, porque eram pecadores.",
+ 134,
+ "Mas quando vos açoitou o castigo, disseram: Ó Moisés, implora por nós, de teu Senhor, o que te prometeu; pois, se noslivrares do castigo, creremos em ti e deixaremos partir contigo os israelitas.",
+ 135,
+ "Porém, quando os livramos do castigo, adiando-o para o término prefixado, eis que perjuram!",
+ 136,
+ "Então, punimo-los, e os afogamos no mar por haverem desmentido e negligenciado os Nossos versículos.",
+ 137,
+ "Fizemos com que o povo que havia sido escravizado herdasse as regiões orientais e ocidentais da terra, as quaisabençoamos. Então, a sublime promessa de teu Senhor se cumpriu, em relação aos israelitas, porque foram perseverantes, edestruímos tudo quanto o Faraó e o seu povo haviam erigido.",
+ 138,
+ "Fizemos os israelitas atravessar o mar, e eis que encontrando (depois) um povo devotado a alguns de seus ídolos, disseram: Ó Moisés, faze-nos um deus como os seus deuses! Respondeu-lhes: Sois um povo de insipientes!",
+ 139,
+ "Porque em verdade, tudo quanto eles adorarem aniquilá-los-á, e em vão será tudo quanto fizerem.",
+ 140,
+ "Disse: Como poderia apresentar-nos outra divindade além de Deus, uma vez que vos preferiu aos vossoscontemporâneos?",
+ 141,
+ "Recordai-vos de quando vos livramos do povo do Faraó que vos infligia os piores castigos, sacrificando os vossosfilhos e deixando com vida as vossas mulheres; naquilo tivestes uma grande prova do vosso Senhor!",
+ 142,
+ "Ordenamos a Moisés trinta noites (de solidão), as quais aumentamos de outras dez, de maneira que o tempo fixado porseu Senhor foi, no total, de quarenta noites. E Moisés disse ao seu irmão Aarão: Substitui-me, ante meu povo; age de modocorreto e não sigas a senda dos depravados.",
+ 143,
+ "E quando Moisés chegou ao lugar que lhe foi designado, o seu Senhor lhe falou, orou assim: ó Senhor meu, permite-meque Te contemple! Respondeu-lhe: Nunca poderás ver-Me! Porém, olha o monte e, se ele permanecer em seu lugar, entãoMe verás! Porém, quando a majestade do seu Senhor resplandeceu sobre o Monte, este se reduziu a pé e Moisés caiuesvanecido. E quando voltou a si, disse: Glorificado sejas! Volto a Ti contrito, e sou o primeiro dos fiéis!",
+ 144,
+ "Disse-lhe: Ó Moisés, tenho-te preferido aos (outros) homens, revelando-te as Minhas mensagens e as Minhas palavras! Recebe, pois, o que te tenho concedido, e sê um dos agradecidos!",
+ 145,
+ "Nas tábuas prescrevemos-lhe toda a classe de exortação, e a elucidação de todas as coisas, (e lhe dissemos): Recebe-as com fervor e recomenda ao teu povo que observe o melhor delas. Logo, vos mostrarei a morada dos depravados.",
+ 146,
+ "Afastarei do Meus versículos aqueles que se envaidecem sem razão, na terra e, mesmo quando virem todo o sinal, nelenão crerão; e, mesmo quando virem a senda da retidão, não a adotarão por guia. Em troca, se virem a senda do erro, tomá-la-ão por guia. Isso porque rejeitaram os Nossos sinais e os negligenciaram.",
+ 147,
+ "Quanto àqueles que desmentiram os Nossos versículos e o comparecimento na outra vida, suas obras tornar-se-ão semefeito. Acaso, esperam alguma retribuição, exceto pelo que houverem feito?",
+ 148,
+ "O povo de Moisés, em sua ausência, fez, com suas próprias jóias, a imagem de um bezerro, que emitia mugidos. Nãorepararam em que não podia falar-lhes, nem encaminhá-los por senda alguma? Apesar disso o adoraram e se tornaraminíquos.",
+ 149,
+ "Mas, quando se aperceberam de que estavam desviados, disseram: Se nosso Senhor não se apiedar de nós e não nosperdoar, contar-nos-emos entre os desventurados.",
+ 150,
+ "Quando Moisés voltou ao seu povo, colérico e indignado, disse-lhes: Que abominável é isso que fizestes na minhaausência! Quisestes apressar a decisão do vosso Senhor? Arrojou as tábuas e, puxando pelo cabelo seu irmão, arrastou-o atési, e Aarão disse: Ó filho de minha mãe, o povo me julgou débil e por pouco não me matou. Não faças com que os inimigosde regozigem da minha desdita, e não me contes entre os iníquos!",
+ 151,
+ "Então (Moisés) disse: Ó Senhor meu, perdoa-nos, a mim e ao meu irmão, e ampara-nos em Tua misericórdia, porqueTu és o mais clemente dos misericordiosos!",
+ 152,
+ "Quanto àqueles que adoraram o bezerro, a abominação de seu Senhor os alcançará, assim como o desdém, na vidadeste mundo. Assim castigaremos os forjadores.",
+ 153,
+ "Quanto àqueles que cometem torpezas e logo se arrependem e crêem, fica sabendo que Teu Senhor é, depois disso, Indulgente, Misericordiosíssimo.",
+ 154,
+ "Quando a cólera de Moisés se apaziguou, ele recolheu as tábuas em cujas escrituras estavam a orientação e amisericórdia para os que temem ao seu Senhor.",
+ 155,
+ "Então Moisés selecionou setenta homens, dentre seu povo, para que comparecessem ao lugar por Nós designado; equando o tremor se apossou deles, disse: Ó Senhor meu, quisesses Tu, tê-los-ias exterminado antes, juntamente comigo! Porventura nos exterminarias pelo que cometeram os néscios dentre nós? Isto não é mais do que uma prova Tua, com a qualdesvias quem faz isso, e encaminhas quem Te apraz; Tu és nosso Protetor. Perdoa-nos e apieda-Te de nós, porque Tu és omais equânime dos indulgentes!",
+ 156,
+ "Concede-nos uma graça, tanto neste mundo como no outro, porque a Ti nos voltamos contritos. Disse: Com Meu castigoaçoito quem quero e Minha clemência abrange tudo, e a concederei aos tementes (a Deus) que pagam o zakat, e crêem nosNossos versículos.",
+ 157,
+ "São aqueles que seguem o Mensageiro, o Profeta iletrado, o qual encontram mencionado em sua Tora e no Evangelho, oqual lhes recomenda o bem e que proíbe o ilícito, prescreve-lhes todo o bem e vedalhes o imundo, alivia-os dos seus fardose livra-os dos grilhões que o deprimem. Aqueles que nele creram, honraram-no, defenderam-no e seguiram a Luz que comele foi enviada, são os bem-aventurados.",
+ 158,
+ "Dize: Ó humanos, sou o Mensageiro de Deus, para todos vós; Seu é o reino dos céus e da terra. Não há mais divindadesalém d'Ele. Ele é Quem dá a vida e a morte! Crede, pois, em Deus e em Seu Mensageiro, o Profeta iletrado, que crê em Deuse nas Suas palavras; segui-o, para que vos encaminheis.",
+ 159,
+ "Entre o povo de Moisés existe uma comunidade que se rege pela verdade, com a qual julga.",
+ 160,
+ "Havíamo-los dividido em doze tribos, formando nações; e, quando o povo sedento pediu a Moisés e que beber, inspiramo-los: Golpeia a rocha com o teu cajado! E, de pronto, britaram dela doze mananciais, e cada tribo reconheceu oseu. Logo, os sombreamos com cúmulos e lhes enviamos o maná e as codornizes, dizendo-lhes: comei de todo o bem comque vos temos agraciado. Porém, (desagradeceram e com isso) não Nos prejudicaram; outrossim, condenaram-se a simesmos.",
+ 161,
+ "Recorda-te de quando lhes foi dito: Habitai esta cidade e comei do que for de vosso agrado, e dizei: Remissão! Eentrai pela porta, prostrando-vos; então, perdoaremos os vossos pecados e aumentaremos (a porção) dos benfeitores.",
+ 162,
+ "Porém, os iníquos dentre eles permutaram a Palavra por outra que não lhes havia sido dita. Por isso, desencadeamossobre eles um castigo do céu, por sua iniqüidade.",
+ 163,
+ "Interroga-os a respeito da cidade próxima ao mar, de como os seus habitantes profanavam o sábado, pescando; decomo, quando profanavam o sábado, os peixes apareciam à flor d'água; em troca, não lhes apareciam nos dias que não eramsábado. Assim os pusemos à prova, por sua transgressão.",
+ 164,
+ "Recorda-te de quando um grupo deles disse: Por que exortais um povo que Deus exterminará ou atormentaráseveramente? Outro grupo disse: Fazemo-lo para que tenhamos uma desculpa ante o vosso Senhor; quem sabe O temerão (depois disso!)",
+ 165,
+ "Mas quando se esqueceram de toda a exortação, salvamos aqueles que pregavam contra o mal, e infligimos os iníquosum severo castigo, por sua transgressão.",
+ 166,
+ "E quando, ensoberbecidos, profanaram o que lhes havia sido vedado, dissemos-lhes: Sede símios desprezíveis!",
+ 167,
+ "E de quando teu Senhor declarou que enviaria contra eles (os judeus) alguém que lhes infligiria o pior castigo, até aoDia da Ressurreição; em verdade, o teu Senhor é destro no castigo assim como é Indulgente, Misericordiosíssimo.",
+ 168,
+ "Separamo-los em grupos pela terra; entre eles há aqueles que são justos e há aqueles que não o são; pusemo-los àprova, com prosperidade e adversidade, com o fim de que se convertessem.",
+ 169,
+ "Sucedeu-lhes uma geração que herdou o Livro, a qual escolheu as futilidades deste mundo, dizendo: Isto nos seráperdoado! E se lhes fosse oferecido outro igual, tê-lo-iam recebido (e transgredido novamente). Acaso, não lhes havia sidoimposta a obrigação, estipulada no Livro, de não dizer de Deus mais que a verdade? Não obstante, haviam estudado nele! Sabei que a morada da outra vida é preferível, para os tementes. Não raciocinais?",
+ 170,
+ "Quanto àqueles que se apegam ao Livro e observam a oração, saibam que não frustraremos a recompensa dosconciliadores.",
+ 171,
+ "E (recorda-te) de quando arrancamos o monte (Sinai), elevando-o sobre eles como se fosse um teto! Creram que lhesfosse desmoronar em cima, e então lhes dissemos: Observai fervorosamente o que vos temos concedido e recordai o seuconteúdo, para que Me temais.",
+ 172,
+ "E de quando o teu Senhor extraiu das entranhas do filhos de Adão os seus descendentes e os fez testemunhar contra sipróprios, dizendo: Não é verdade que sou o vosso Senhor? Disseram: Sim! Testemunhamo-lo! Fizemos isto com o fim deque no Dia da Ressurreição não dissésseis: Não estávamos cientes.",
+ 173,
+ "Ou não dissésseis: Anteriormente nossos pais idolatravam, e nós, sua descendência, seguimo-los. Exterminar-nos-ias, acaso pelo que cometeram frívolos?",
+ 174,
+ "Assim elucidamos os versículos, a fim de que desistam.",
+ 175,
+ "Repete-lhes (ó Mensageiro) a história daquele ao qual agraciamos com os Nossos versículos e que os desdenhou; assim, Satanás o seguiu e ele se contou entre os seduzidos.",
+ 176,
+ "Mas, se quiséssemos, tê-lo-íamos dignificado; porém, ele se inclinou para o mundo e se entregou à sua luxúria. O seuexemplo é semelhante ao do cão que, se o acossas, arqueja; se o deixas, assim mesmo arqueja. Tal é o exemplo daqueles quedesmentem os Nossos versículos. Refere-lhes estes relatos, a fim de que meditem.",
+ 177,
+ "Que péssimo é o exemplo daqueles que desmentem os Nossos versículos! Em verdade, com isso se condenam.",
+ 178,
+ "Quem Deus encaminhar estará bem encaminhado; aqueles que desencaminhar serão desventurados.",
+ 179,
+ "Temos criado para o inferno numerosos gênios e humanos com corações com os quais não compreendem, olhos com osquais não vêem, e ouvidos com os quais não ouvem. São como as bestas, quiçá pior, porque são displicentes.",
+ 180,
+ "Os mais sublimes atributos pertencem a Deus; invocai-O, pois, e evitai aqueles que profanam os Seus atributos, porqueserão castigados pelo que tiverem cometido.",
+ 181,
+ "Entre os povos que temos criado, há um que se rege pela verdade, e com ela julga.",
+ 182,
+ "Quanto àqueles que desmentem os Nossos versículos, apresentar-lhes-emos gradativamente, o castigo, de modo que nãoo percebam.",
+ 183,
+ "E lhes concederemos folgança, porque o Meu plano é firme.",
+ 184,
+ "Não refletem no fato de que seu companheiro não padece de demência alguma? Que não é mais do que um elucidativoadmoestador?",
+ 185,
+ "Não reparam no reino dos céus e da terra e em tudo quando Deus criou e em que, quiçá, seu fim se aproxima? E quemensagem, depois desta (Alcorão), crerão?",
+ 186,
+ "Aqueles a quem Deus desviar (por tal merecerem) ninguém poderá encaminhar, porque Ele os abandonará, vacilantes, em sua transgressão.",
+ 187,
+ "Perguntar-te-ão acerca da Hora (do Desfecho): Quando acontecerá? Responde-lhes: Seu conhecimento está só empoder do meu Senhor e ninguém, a não ser Ele, pode revelá-lo; (isso) a seu devido tempo. Pesada será, nos céus e na terra, evirá inesperadamente. Perguntar-te-ão, como se tu tivesses pesquisado sobre ela (a Hora do Desfecho). Responde-lhes: Seuconhecimento só está em poder de Deus; porém, a maioria das pessoas o ignora.",
+ 188,
+ "Dize: Eu mesmo não posso lograr, para mim, mais benefício nem mais prejuízo do que o que for da vontade de Deus. Ese estivesse de posse do incognoscível, aproveitar-me-ia de muitos bens, e o infortúnio jamais me açoitaria. Porém, não soumais do que um admoestador e alvissareiro para os crentes.",
+ 189,
+ "Ele foi Quem vos criou de um só ser e, do mesmo, plasmou a sua companheira, para que ele convivesse com ela e, quando se uniu a ela (Eva), injetou-lhe uma leve carga que nela permaneceu; mas quando se sentiu pesada, ambos invocaramDeus, seu Senhor: Se nos agraciares com uma digna prole, contar-nos-emos entre os agradecidos.",
+ 190,
+ "Mas quando Ele os agraciou com uma prole digna, atribuíram-Lhe parceiros, no que lhes havia concedido. Exaltadoseja Deus de tudo quanto Lhe atribuíram!",
+ 191,
+ "Atribuíram-Lhe parceiros que nada podem criar, uma vez que eles mesmo são criados.",
+ 192,
+ "Nem tampouco poderão socorrê-los, nem poderão socorrer a si mesmos.",
+ 193,
+ "Se os convocardes para a Orientação, não vos ouvirão, pois tanto se lhes dará se os convocardes ou permanecerdesmudos.",
+ 194,
+ "Aqueles que invocais em vez de Deus são servos, como vós. Suplicai-lhes, pois, que vos atendam, se estiverdes certos!",
+ 195,
+ "Têm, acaso pés para andar, mão para castigar, olhos para ver, ou ouvidos para ouvir? Dize: Invocai vossos parceiros, conspirai contra mim e não me concedais folgança!",
+ 196,
+ "Meu protetor é Deus, que (me) revelou o Livro, e é Ele Quem ampara os virtuosos.",
+ 197,
+ "Aqueles que invocais além d'Ele não podem socorrer-vos, nem socorrer a si mesmos.",
+ 198,
+ "Se os convocardes para a Orientação, não vos ouvirão; e tu (ó Mensageiro) verás que olham para ti, embora não tevejam.",
+ 199,
+ "Conserva-te indulgente, encomenda o bem e foge dos insipientes.",
+ 200,
+ "E quando alguma tentação de Satanás te assediar, ampara-te em Deus, porque Ele é Oniouvinte, Sapientíssimo.",
+ 201,
+ "Quanto aos tementes, quando alguma tentação satânica os acossa, recordam-se de Deus; ei-los iluminados.",
+ 202,
+ "Quanto aos irmãos (malignos) arremessam-nos mais e mais no erro, e dele não se retraem.",
+ 203,
+ "E se não lhes apresentas um sinal, dizem-te: Porque não o inventas? Dize: Eu não faço mais do que seguir o que merevela o meu Senhor. Este (Alcorão) encerra discernimentos do vosso Senhor e é, por isso, orientação e misericórdia paraos que crêem.",
+ 204,
+ "E quando for lido o Alcorão, escutai-o e calai, para que sejais compadecidos.",
+ 205,
+ "E recorda-te do teu Senhor intimamente, com humildade e temor, sem manifestação de palavras, ao amanhecer e aoentardecer, e não sejas um dos tantos negligentes.",
+ 206,
+ "Porque aqueles que estão próximos do teu Senhor não se ensoberbecem em adorá-Lo, e O glorificam, prostrando-seante Ele."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/8.json b/share/quran-json/TheQuran/pt/8.json
new file mode 100644
index 0000000..d312e0f
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/8.json
@@ -0,0 +1,169 @@
+[
+ {
+ "id": "8",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "Al-Anfal",
+ "translated_name": "The Spoils of War",
+ "verse_count": 75,
+ "slug": "al-anfal",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1571,
+ 1606,
+ 1601,
+ 1575,
+ 1604
+ ]
+ },
+ 1,
+ "Perguntar-te-ão sobre os espólios. Dize: Os espólios pertencem a Deus e ao Mensageiro. Temei, pois, a Deus, e resolveifraternalmente as vossa querelas; obedecei a Deus e ao Seu Mensageiro, se sois fiéis.",
+ 2,
+ "Só são fiéis aqueles cujos corações, quando lhes é mencionado o nome de Deus estremecem e, quando lhes são recitadosos Seus versículos, é-lhes acrescentada a fé, e se encomendam ao seu Senhor.",
+ 3,
+ "Aqueles que observam a oração e fazem caridade com aquilo com que os agraciamos;",
+ 4,
+ "Estes são os verdadeiros fiéis, que terão graus de honra junto ao seu Senhor, indulgências e um magnífico sustento.",
+ 5,
+ "Tal como, em verdade, quando o teu Senhor te ordenou abandonar o teu lar, embora isso desgostasse alguns dos fiéis.",
+ 6,
+ "Discutem contigo acerca da verdade, apesar de a mesma já lhes haver sido evidenciada, como se estivessem sendoarrastados para a morte, e a estivessem vendo.",
+ 7,
+ "Recordai-vos de que, quando Deus vos prometeu que teríeis de combater um dos dois grupos, desejastes enfrentar odesarmado. E Deus quis fazer prevalecer a verdade, com as Suas palavras, e exterminar os incrédulos,",
+ 8,
+ "Para que a verdade prevalecesse e desaparecesse a falsidade, ainda que isso desgostasse os pecadores.",
+ 9,
+ "E de quando implorastes o socorro do vosso Senhor e Ele vos atendeu, dizendo: Reforçar-vos-ei com mil anjos, que voschegarão paulatinamente.",
+ 10,
+ "Deus não vo-lo vez senão como alvíssaras e segurança para os vossos corações. Sabei que o socorro só emana de Deus, porque é Poderoso, Prudentíssimo.",
+ 11,
+ "E de quanto Ele, para vosso sossego, vos envolveu num sono, enviou-vos água do céu para, com ela, vos purificardes, livrardes da imundice de Satanás, e para confortardes os vossos corações e afirmardes os vossos passos.",
+ 12,
+ "E de quando o teu Senhor revelou aos anjos: Estou convosco; firmeza, pois, aos fiéis! Logo infundirei o terror noscorações dos incrédulos; decapitai-os e decepai-lhes os dedos!",
+ 13,
+ "Isso, porque contrariaram Deus e o Seu Mensageiro; saiba, quem contrariar Deus e o Seu Mensageiro, que Deus éSeveríssimo no castigo.",
+ 14,
+ "Tal é (o castigo pelo desafio); provai-o, pois! E sabei que os incrédulos sofrerão o tormento infernal.",
+ 15,
+ "Ó fiéis, quando enfrentardes (em batalha) os incrédulos, não lhes volteis as costas.",
+ 16,
+ "Aquele que, nesse dia, lhes voltar as costas - a menos que seja por estratégia ou para reunir-se com outro grupo -incorrerá na abominação de Deus, e sua morada será o inferno. Que funesto destino!",
+ 17,
+ "Vós que não os aniquilastes, (ó muçulmanos)! Foi Deus quem os aniquilou; e apesar de seres tu (ó Mensageiro) quemlançou (areia), o efeito foi causado por Deus. Ele fez para Se provar indulgente aos fiéis, porque é Oniouvinte, Sapientíssimo.",
+ 18,
+ "Fê-lo para que saibais que Deus desbarata as conspirações dos incrédulos.",
+ 19,
+ "(Ó incrédulos) se imploráveis a vitória, eis a vitória que vos foi dada; se desistirdes, será melhor para vós; porém, sereincidirdes, voltaremos a vos combater e de nada servirá o vosso exército, por numeroso que seja, porque Deus está comos fiéis.",
+ 20,
+ "Ó fiéis, obedecei a Deus e ao Seu Mensageiro, e não vos afasteis dele enquanto o escutais (em prédica).",
+ 21,
+ "E não sejais como aqueles que dizem: Escutamos!, quando na realidade não escutam.",
+ 22,
+ "Aos olhos de Deus, os piores animais são os \"surdos\" e \"mudos\", que não raciocinam.",
+ 23,
+ "Se Deus tivesse reconhecido neles alguma virtude, tê-los-ia feito ouvir; se Ele os tivesse feito ouvir, teriam renegadodesdenhosamente, mesmo assim.",
+ 24,
+ "Ó fiéis, atendei a Deus e ao Mensageiro, quando ele vos convocar à salvação. E sabei que Deus intercede entre o homeme o seu coração, e que sereis congregados ante Ele.",
+ 25,
+ "E preveni-vos contra a intriga, a qual não atingirá apenas os iníquos dentre vós; sabei que Deus é Severíssimo nocastigo.",
+ 26,
+ "E recordai-vos de quando (na vossa metrópole, Makka), éreis um punhado de subjugados; e temíeis que os homens (incrédulos) vos saqueassem; e Ele vos agraciou com todo bem, para que Lhe agradecêsseis.",
+ 27,
+ "Ó fiéis, não atraiçoeis Deus e Mensageiro; não atraiçoeis, conscientemente, o que vos foi confiado!",
+ 28,
+ "E sabei que tanto vossos bens como vossos filhos são para vos pôr à prova, e que Deus vos tem reservada umamagnífica recompensa.",
+ 29,
+ "Ó fiéis, se temerdes a Deus, Ele vos concederá discernimento, apagará os vossos pecados e vos perdoará, porque éAgraciante por excelência.",
+ 30,
+ "Recorda-te (ó Mensageiro) de quando os incrédulos confabularam contra ti, para aprisionar-te, ou matar-te, ouexpulsar-te. Confabularam entre si, mas Deus desbaratou-lhes os planos, porque é o mais duro dos desbaratadores.",
+ 31,
+ "Quando lhes são recitados os Nossos versículos, dizem: Já os ouvimos e, se quiséssemos, poderíamos repetir outrosiguais, porque não são senão fábulas dos primitivos!",
+ 32,
+ "E de quando disseram: Ó Deus, se esta é realmente a verdade que emana de Ti, faze com que caiam pedras do céu sobrenós, ou inflige-nos um doloroso castigo.",
+ 33,
+ "Porém, é inconcebível que Deus os castigue, estando tu entre eles; nem tampouco Deus os castigará enquanto puderemimplorar por perdão.",
+ 34,
+ "E por que Deus não há de castigá-los, sendo que impedem a entrada (dos fiéis) na Sagrada Mesquita, apesar de nãoserem os seus guardiões? Ninguém o é, a não ser os tementes; porém, a maioria deles o ignora.",
+ 35,
+ "A sua oração, na Casa, se reduz aos silvos e ao estalar de mãos. Sofrei, pois, o castigo, por vossa perfídia.",
+ 36,
+ "Eis que os incrédulos malversam as suas riquezas, para desviarem (os fiéis) da senda de Deus. Porém, malversá-las-ãocompletamente, e isso será a causa da sua atribulação; então, será vencidos. Os incrédulos serão congregados no inferno.",
+ 37,
+ "Isso, para que Deus possa separar os maus dos bons, e amontoar os maus uns sobre os outros; juntá-los-á a todos e osarrojará no inferno. Estes são os desventurados.",
+ 38,
+ "Dize aos incrédulos que, no caso de se arrependerem, ser-lhes-á perdoado o passado. Por outra, caso persistam, quetenham em mente o escarmento dos antigos.",
+ 39,
+ "Combatei-os até terminar a intriga, e prevalecer totalmente a religião de Deus. Porém, se se retratarem, saibam que Deusbem vê tudo o quanto fazem.",
+ 40,
+ "Mas, no caso de se recusarem, sabei que Deus é vosso Protetor. Que excelente Protetor e que excelente Socorredor!",
+ 41,
+ "E sabei que, de tudo quanto adquirirdes de despojos, a quinta parte pertencerá a Deus, ao Mensageiro e aos seusparentes, aos órfãos, aos indigentes e ao viajante; se fordes crentes em Deus e no que foi revelado ao Nosso servo no Dia doDiscernimento, em que se enfrentaram os dois grupos, sabei que Deus é Onipotente.",
+ 42,
+ "Recordai-vos de quanto estáveis acampados na rampa, do vale, mais próxima (a Madina), e eles na mais afastada, e suacaravana se encontrava mais abaixo - Se tivésseis marcado um encontro com o inimigo, ter-vos-íeis desencontrado - e osenfrentastes para que Deus cumprisse Sua decisão prescrita, a fim de que perecessem aqueles que, com razão, deveriamsucumbir, e sobrevivessem aqueles que, com razão, deveriam sobreviver; sabei que Deus é Oniouvinte, Sapientíssimo.",
+ 43,
+ "Recorda-te (ó Mensageiro) de quando, em sonhos, Deus te fez crer (o exército inimigo) em número reduzido, porque, sete tivesse feito vê-lo numeroso, terias desanimado e terias vacilado a respeito do assunto; porém, Deus (te) salvou deles, porque bem conhece as intimidades dos corações.",
+ 44,
+ "E de quando os enfrentastes, e Ele os fez parecer, aos vossos olhos, pouco numerosos; Ele vos dissimulou aos olhosdeles, para que se cumprisse a decisão prescrita, porque a Deus retornarão todas as questões.",
+ 45,
+ "Ó fiéis, quando vos enfrentardes com o inimigo, sede firmes e mencionai muito Deus, para que prospereis.",
+ 46,
+ "E obedecei a Deus e ao Seu Mensageiro e não disputeis entre vós, porque fracassaríeis e perderíeis o vosso valor. Eperseverai, porque Deus está com os perseverantes.",
+ 47,
+ "E não sejais como aqueles que saíram de suas casas por petulância e ostentação, para desviar os outros da senda deDeus; sabei que Deus está inteirado de tudo quanto fazem.",
+ 48,
+ "E de quando Satanás lhes abrilhantou as ações e lhes disse: hoje ninguém poderá vencer-nos, porque estou do vossolado; porém, quanto os dois grupos se enfrentaram, girou sobre seus calcanhares e disse: Estou isento de tudo quanto vossuceda, porque eu vejo o que vós não vedes. Temo a Deus, porque é Severíssimo no castigo.",
+ 49,
+ "Os hipócritas e aqueles que abrigam a morbidez em seus corações dizem dos fiéis: A estes, sua religião os temalucinado. Mas quem se encomenda a Deus, saiba que Ele é Poderoso, Prudentíssimo.",
+ 50,
+ "Ah, se pudésseis ver a ocasião em que os anjos receberão os incrédulos, esbofeteando-os, açoitando-os e dizendo-lhes: Provai o suplício do fogo infernal!",
+ 51,
+ "Isso, por tudo quanto cometeram vossas mãos, porque Deus nunca é injusto para com os Seus servos.",
+ 52,
+ "Tal foi o comportamento do povo do Faraó e de seus antecessores, que descreram nos versículos de Deus; porém, Deusos castigou por seus pecados, porque é Forte e Severíssimo no castigo.",
+ 53,
+ "Isso, porque Deus jamais muda as mercês com que tem agraciado um povo, a menos que este mude o que há em seuíntimo; sabei que Deus é Oniouvinte, Sapientíssimo.",
+ 54,
+ "Tal foi o comportamento do povo do Faraó e de seus antecessores, que desmentiram os versículos do seu Senhor. Aniquilamo-los, por seus pecados, e afogamos a dinastia do Faraó, porque todos eram iníquos.",
+ 55,
+ "Os pecadores são os piores seres aos olhos de Deus, porque não crêem.",
+ 56,
+ "São aqueles com quem fazes um pacto e que, sistematicamente, quebram seus compromissos, e não temem a Deus.",
+ 57,
+ "Se os dominardes na guerra, dispersai-os, juntamente com aqueles que os seguem, para que meditem.",
+ 58,
+ "E se suspeitas da traição de um povo, rompe o teu pacto do mesmo modo, porque Deus não estima os traidores.",
+ 59,
+ "E não pensem os incrédulos que poderão obter coisas melhores (do que os fiéis). Jamais o conseguirão.",
+ 60,
+ "Mobilizai tudo quando dispuserdes, em armas e cavalaria, para intimidar, com isso, o inimigo de Deus e vosso, e seintimidarem ainda outros que não conheceis, mas que Deus bem conhece. Tudo quanto investirdes na causa de Deus, ser-vosá retribuído e não sereis defraudados.",
+ 61,
+ "Se eles se inclinam à paz, inclina-te tu também a ela, e encomenda-te a Deus, porque Ele é o Oniouvinte, oSapientíssimo.",
+ 62,
+ "Mas, se intentarem enganar-te, fica sabendo que Deus te é suficiente. Ele foi Quem te secundou com o Seu socorro e como dos fiéis",
+ 63,
+ "E foi Quem conciliou os seus corações. E ainda que tivesses despendido tudo quanto há na terra, não terias conseguidoconciliar os seus corações; porém, Deus o conseguiu, porque é Poderoso, Prudentíssimo.",
+ 64,
+ "Ó Profeta, são-te suficientes Deus e os fiéis que te seguem.",
+ 65,
+ "Ó Profeta, estimula os fiéis ao combate. Se entre vós houvesse vinte perseverantes, venceriam duzentos, e se houvessemcem, venceriam mil do incrédulos, porque estes são insensatos.",
+ 66,
+ "Deus tem-vos aliviado o peso do fardo, porque sabe que há um ponto débil em vós; e se entre vós houvesse cemperseverantes, venceriam duzentos; e se houvesse mil, venceriam dois mil, com o beneplácito de Deus, porque Ele está comos perseverantes.",
+ 67,
+ "Não é dado a profeta algum fazer cativos, antes de lhes haver subjugado inteiramente a região. Vós (fiéis), ambicionais ofútil da vida terrena; em troca, Deus quer para vós a bem-aventurança do outro mundo, porque Deus é Poderoso, Prudentíssimo.",
+ 68,
+ "Se não fosse por um decreto prévio de Deus, Ter-vos-ia açoitado um severo castigo, pelo que havíeis arrebatado (deresgate).",
+ 69,
+ "Desfrutai, pois, de tudo quanto conseguis um lícito e temei a Deus, porque Deus é Indulgente, Misericordiosíssimo.",
+ 70,
+ "Ó Profeta, dize aos cativos que estão e vosso poder: Se Deus descobrir sinceridade em vossos corações, conceder-vos-áalgo melhor do que aquilo que vos foi arrebatado e vos perdoará, porque é Indulgente, Misericordiosíssimo.",
+ 71,
+ "Mas se intentarem atraiçoar-te, como atraiçoaram antes Deus, Ele os deixará nas tuas mãos, porque é Sapiente, Prudentíssimo.",
+ 72,
+ "Os fiéis que migraram e sacrificaram seus bens e pessoas pela causa de Deus, assim como aqueles que os ampararam eos secundaram, são protetores uns aos outros. Quanto aos fiéis que não migraram, não vos tocará protegê-los, até que ofaçam. Mas se vos pedirem socorro, em nome da religião, estareis obrigados a prestá-lo, salvo se for contra povos comquem tenhais um tratado; sabei que Deus bem vê tudo quanto fazeis.",
+ 73,
+ "Quanto aos incrédulos, são igualmente protetores uns aos outros; e se vós não o fizerdes (protegerdes uns aos outros), haverá intriga e grande corrupção sobre a terra.",
+ 74,
+ "Quanto aos fiéis que migraram e combateram pela causa de Deus, assim como aqueles que os apararam e os secundaram- estes são os verdadeiros fiéis - obterão indulgência e magnífico sustento.",
+ 75,
+ "E aqueles que creram depois, migraram e combateram junto a vós, serão dos vossos; porém, os parentes carnais têmprioridade sobre os outros, segundo o Livro de Deus; sabei que Deus é Onisciente."
+]
\ No newline at end of file
diff --git a/share/quran-json/TheQuran/pt/9.json b/share/quran-json/TheQuran/pt/9.json
new file mode 100644
index 0000000..dbc0d33
--- /dev/null
+++ b/share/quran-json/TheQuran/pt/9.json
@@ -0,0 +1,276 @@
+[
+ {
+ "id": "9",
+ "place_of_revelation": "madinah",
+ "transliterated_name": "At-Tawbah",
+ "translated_name": "The Repentance",
+ "verse_count": 129,
+ "slug": "at-tawbah",
+ "codepoints": [
+ 1575,
+ 1604,
+ 1578,
+ 1608,
+ 1576,
+ 1577
+ ]
+ },
+ 1,
+ "Sabei que há imunidade, por parte de Deus e do Seu Mensageiro, em relação àqueles que pactuastes, dentre os idólatras.",
+ 2,
+ "Percorrei (ó idólatras) a terra, durante quatro meses, e sabereis que não podereis frustrar Deus, porque Ele aviltará osincrédulos.",
+ 3,
+ "E eis aqui a advertência de Deus e de Seu Mensageiro aos humanos para o dia da grande peregrinação: Deus e seuMensageiro não são responsáveis (pelo rompimento do pacto) dos idólatras. Mas se vos arrependerdes, será melhor paravós; porém, se vos recusardes, sabei que não podereis frustrar Deus! Notifica, pois, aos incrédulos, que sofrerão umdoloroso castigo.",
+ 4,
+ "Cumpri o ajuste com os idólatras, com quem tenhais um tratado, e que não vos tenham atraiçoado e nem tenham secundadoninguém contra vós; cumpri o tratado até à sua expiração. Sabei que Deus estima os tementes.",
+ 5,
+ "Mas quanto os meses sagrados houverem transcorrido, matai os idólatras, onde quer que os acheis; capturai-os, acossai-os e espreitai-os; porém, caso se arrependam, observem a oração e paguem o zakat, abri-lhes o caminho. Sabei queDeus é Indulgente, Misericordiosíssimo.",
+ 6,
+ "Se alguns dos idólatras procurar a tua proteção, ampara-o, para que escute a palavra de Deus e, então, escolta-o até quechegue ao seu lar, porque (os idólatras) são insipientes.",
+ 7,
+ "Como podem os idólatras fazer um tratado com Deus e Seu Mensageiro - Exceto aqueles com os quais tenhas feito umtratado, junto à Sagrada Mesquita? Sê verdadeiro com eles, tanto quanto forem verdadeiros para contigo, pois Deus estimaos tementes.",
+ 8,
+ "Como pode haver (qualquer tratado) quanto, se tivessem a supremacia sobre vós, não respeitariam parentesco nemcompromisso? Satisfazem-vos com palavras, ainda que seus corações as neguem, a sua maioria é depravada.",
+ 9,
+ "Negociam a ínfimo preço os versículos de Deus e desencaminham (os humanos) da Sua senda. Que péssimo é o quefazem!",
+ 10,
+ "Não respeitam parentesco, nem compromisso com fiel algum, porque são transgressores.",
+ 11,
+ "Mas, se se arrependerem, observarem a oração e pagarem o zakat, então serão vossos irmãos na religião, combatei oschefes incrédulos, pois são perjuros; talvez se refreiem.",
+ 12,
+ "Porém, se depois de haverem feito o tratado convosco, perjurarem e difamarem a vossa religião, combatei os chefesincrédulos, pois são perjuros; talvez se refreiem.",
+ 13,
+ "Acaso, não combateríeis as pessoas que violassem os seus juramentos, e se propusessem a expulsar o Mensageiro, efossem os primeiros a vos provocar? Porventura os temeis? Sabei que Deus é mais digno de ser temido, se sois fiéis.",
+ 14,
+ "Combatei-os! Deus os castigará, por intermédio das vossas mãos, aviltá-los-á e vos fará prevalecer sobre eles, e curaráos corações de alguns fiéis,",
+ 15,
+ "E removerá a ira dos seus corações. Deus absolverá quem Lhe aprouver, porque é Sapiente, Prudentíssimo.",
+ 16,
+ "Pensais, acaso, que podereis ser deixados livres, sendo sabido que Deus ainda não pôs à prova aqueles, dentre vós, quelutarão e não tomarão por confidentes ninguém além de Deus, Seu Mensageiro e os fiéis? Deus está bem inteirado de tudoquando fazeis!",
+ 17,
+ "É inadmissível que os idólatras freqüentem as mesquitas de Deus, sendo que reconhecem que são incrédulos. Sãoaqueles, cujas obras se tornaram sem efeito, e que morarão eternamente no fogo infernal.",
+ 18,
+ "Só freqüentam as mesquitas de Deus aqueles que crêem em Deus e no Dia do Juízo Final, observam a oração, pagam ozakat, e não temem ninguém além de Deus. Quiçá, estes se contem entre os encaminhados.",
+ 19,
+ "Considerais, acaso, os que fornecem água aos peregrinos e os guardiões da Sagrada Mesquita iguais aos que crêem emDeus e no Dia do Juízo Final, e lutam pela causa de Deus? Aqueles jamais se equipararão a estes, ante Deus. Sabei queDeus não ilumina os iníquos.",
+ 20,
+ "Os fiéis que migrarem e sacrificarem seus bens e suas pessoas pela causa de Deus, obterão maior dignidade ante Deus eserão os ganhadores.",
+ 21,
+ "O seu Senhor lhes anuncia a Sua misericórdia, a Sua complacência, e lhes proporcionará jardins, onde gozarão de eternoprazer,",
+ 22,
+ "Onde morarão eternamente, porque com Deus está a magnífica recompensa.",
+ 23,
+ "Ó fiéis, não tomeis por confidentes vossos pais e irmãos, se preferirem a incredulidade à fé; aqueles, dentre vós, que ostomarem por confidentes, serão iníquos.",
+ 24,
+ "Dize-lhes: Se vossos pais, vossos filhos, vossos irmãos, vossas esposas, vossa tribo, os bens que tenhais adquirido, ocomércio, cuja estagnação temeis, e as casas nas quais residis, são-vos mais queridos do que Deus e Seu Mensageiro, bemcomo a luta por Sua causa, aguardai, até que Deus venha cumprir os Seus desígnios. Sabei que Ele não ilumina osdepravados.",
+ 25,
+ "Deus vos socorreu em muitos campos de batalha - como aconteceu no dia de Hunain, quando vos ufanáveis da vossamaioria que de nada vos serviu; e a terra, com toda a sua amplitude, pareceu-vos pequena para empreenderdes a fuga.",
+ 26,
+ "Então, Deus infundiu a paz ao Seu Mensageiro e aos fiéis, e enviou tropas - que não avistastes - e castigou os incrédulos; tal é a recompensa dos que não crêem.",
+ 27,
+ "Deus absolverá, depois disso, quem Lhe aprouver, porque é Indulgente, Misericordiosíssimo.",
+ 28,
+ "Ó fiéis, em verdade os idólatras são impuros. Que depois deste seu ano não se aproximem da Sagrada Mesquita! E setemeis a pobreza, sabei que se a Deus aprouver, enriquecer-vos-á com Sua bondade, porque é Sapiente, Prudentíssimo.",
+ 29,
+ "Combatei aqueles que não crêem em Deus e no Dia do Juízo Final, nem abstêm do que Deus e Seu Mensageiroproibiram, e nem professam a verdadeira religião daqueles que receberam o Livro, até que, submissos, paguem o Jizya.",
+ 30,
+ "Os judeus dizem: Ezra é filho de Deus; os cristãos dizem: O Messias é filho de Deus. Tais são as palavras de suasbocas; repetem, com isso, as de seus antepassados incrédulos. Que Deus os combata! Como se desviam!",
+ 31,
+ "Tomaram por senhores seus rabinos e seus monges em vez de Deus, assim como fizeram com o Messias, filho de Maria, quando não lhes foi ordenado adorar senão a um só Deus. Não há mais divindade além d'Ele! Glorificado seja pelosparceiros que Lhe atribuem!",
+ 32,
+ "Desejam em vão extinguir a Luz de Deus com as suas bocas; porém, Deus nada permitirá, e aperfeiçoará a Sua Luz, ainda que isso desgoste os incrédulos.",
+ 33,
+ "Ele foi Quem enviou Seu Mensageiro com a Orientação e a verdadeira religião, para fazê-la prevalecer sobre todas asoutras, embora isso desgostasse os idólatras.",
+ 34,
+ "Ó fiéis, em verdade, muitos rabinos e monges fraudam os bens dos demais e os desencaminham da senda de Deus. Quanto àqueles que entesouram o ouro e a prata, e não os empregam na causa de Deus, anuncia-lhes (ó Mohammad) umdoloroso castigo.",
+ 35,
+ "No dia em que tudo for fundido no fogo infernal e com isso forem estigmatizadas as suas frontes, os seus flancos e assuas espáduas, ser-lhes-á dito: eis o que entesourastes! Experimentai-o, pois!",
+ 36,
+ "Para Deus o número dos meses é de doze, como reza o Livro Divino, desde o dia em que Ele criou os céus e a terra. Quatro deles são sagrados; tal é o cômputo exato. Durante estes meses não vos condeneis, e combatei unanimemente osidólatras, tal como vos combatem; e sabei que Deus está com os tementes.",
+ 37,
+ "A antecipação do mês sagrado é um excesso de incredulidade, com que são desviados, ainda mais, os incrédulos; permitem-no num ano e o proíbem noutro, para fazerem concordar o número de meses feitos sagrados por Deus, de maneiraa tornarem lícito o que Deus vedou. Suas más ações os iludiram. Sabei que Deus não guia os incrédulos.",
+ 38,
+ "Ó fiéis, que sucedeu quando vos foi dito para partirdes para o combate pela causa de Deus, e vós ficastes apegados àterra? Acaso, preferíeis a vida terrena à outra? Que ínfimos são os gozos deste mundo, comparados com os do outro!",
+ 39,
+ "Se não marchardes (para o combate), Ele vos castigará dolorosamente, suplantar-vos-á por outro povo, e em nadapodereis prejudicá-Lo, porque Deus é Onipotente.",
+ 40,
+ "Se não o socorrerdes (o Profeta), Deus o socorrerá, como fez quando os incrédulos o desterraram. Quando estava nacaverna com um companheiro, disse-lhe: Não te aflijas, porque Deus está conosco! Deus infundiu nele o Seu sossego, confortou-o com tropas celestiais que não poderíeis ver, rebaixando ao mínimo a palavra dos incrédulos, enaltecendo aomáximo a palavra de Deus, porque Deus é Poderoso, Prudentíssimo.",
+ 41,
+ "Quer estejais leve ou fortemente (armados), marchai (para o combate) e sacrificai vossos bens e pessoas pela causa deDeus! Isso será preferível para vós, se quereis saber.",
+ 42,
+ "Se o ganho fosse imediato e a viagem fácil, Ter-te-iam seguido: porém, a viagem pareceu-lhes penosa. E ainda jurariampor Deus: Se tivéssemos podido, teríamos partido convosco! Com isso se condenaram, porque Deus bem sabia que erammentirosos.",
+ 43,
+ "Deus te indultou! Por que os dispensaste da luta, antes que se pudesse distinguir entre os sinceros e os mentirosos?",
+ 44,
+ "Aqueles que crêem em Deus e no Dia do Juízo Final não te pedirão isenção de sacrificaram os seus bens e as suaspessoas; e Deus bem conhece os tementes.",
+ 45,
+ "Pedir-te-ão isenção só aqueles que não crêem em Deus, nem no Dia do Juízo Final, cujos corações estão em dúvida e, em sua dúvida, vacilam.",
+ 46,
+ "Se tivessem decidido ir, ter-se-iam preparado para isso; porém, Deus era contrário a que partissem, e os desanimou; foi-lhes dito: Ficai com os omissos.",
+ 47,
+ "E se tivessem marchado convosco, não teriam feito mais do que confundir-vos e suscitar dissensões em vossas fileiras, incitando-vos à rebelião. Entre vós há quem os escuta. Porém, Deus bem conhece os iníquos.",
+ 48,
+ "Já, antes, haviam tratado de suscitar dissensões e intentado desbaratar os teus planos, até que chegou a verdade, eprevaleceram os desígnios de Deus, ainda que isso os desgostasse.",
+ 49,
+ "E entre eles há quem te diga: Isenta-me, e não me tentes! Acaso, não caíram em tentação? Em verdade, o inferno cercaráos incrédulos (por todos os lados).",
+ 50,
+ "Quanto logras um triunfo, isso os desgosta; por outra, quando te açoita uma desgraça, dizem: Já nos tínhamos precavido! e retiram-se jubilosos.",
+ 51,
+ "Dize: jamais nos ocorrerá o que Deus não nos tiver predestinado! Ele é nosso Protetor. Que os fiéis se encomendem aDeus!",
+ 52,
+ "Dize (ainda): Esperais que nos aconteça algo? Só nos ocorrerá uma das suas sublimes coisas (o martírio ou a vitória). Nós, em troca, aguardamos que Deus vos inflija o Seu castigo, ou então o faça por nossas mãos. Esperai, pois, queesperaremos convosco.",
+ 53,
+ "Dize (mais): Ainda que façais caridade de bom ou mau grado, jamais vo-la será aceita, porque sois depravados.",
+ 54,
+ "Suas caridades não são aceitas, por causa da sua incredulidade em Deus e em Seu Mensageiro, e por observarem aoração com indolência e por praticarem a caridade de má vontade.",
+ 55,
+ "Que não e maravilhem os seus bens, nem os seus filhos, porque Deus somente quer, comisso, atormentá-los na vidaterrena e fazer com que suas almas pereçam na incredulidade.",
+ 56,
+ "Juram por Deus que são dos vossos, quando na verdade não o são, pois são um bando de pusilânimes.",
+ 57,
+ "Se tivessem encontrado um refúgio ou um subterrâneo, ou qualquer buraco, apressar-se-iam em nele se ocultar.",
+ 58,
+ "Entre eles, há aqueles que te difamam, com respeito à distribuição das esmolas; quando lhes é dado uma parte, conformam-se; quando não, eis que se indignam.",
+ 59,
+ "Tivessem eles ficado satisfeitos com o que Deus e Seu Mensageiro lhes concederam e tivessem dito: Deus nos ésuficiente; Ele nos concederá de Sua graça e o mesmo fará Seu Mensageiro, e em Deus confiamos! (teria sido preferível).",
+ 60,
+ "As esmolas são tão-somente para os pobres, para os necessitados, para os funcionário empregados em suaadministração, para aqueles cujos corações têm de ser conquistados, para a redenção dos escravos, para os endividados, para a causa de Deus e para o viajante; isso é um preceito emanado de Deus, porque é Sapiente, Prudentíssimo.",
+ 61,
+ "Entre eles há aqueles que injuriam o Profeta e dizem: Ele é todo ouvidos. Dize-lhes: É todo ouvidos sim, mas para ovosso bem; crê em Deus, acredita nos fiéis e é uma misericórdia para aqueles que, de vós, crêem! Mas aqueles queinjuriarem o Mensageiro de Deus sofrerão um doloroso castigo.",
+ 62,
+ "Juram-vos por Deus para comprazer-vos. Mas Deus e Seu Mensageiro têm mais direito de serem comprazidos, se soisfiéis.",
+ 63,
+ "Ignoram, acaso, que quem contrariar Deus e Seu Mensageiro terá o fogo do inferno, onde permanecerá eternamente? Talserá o supremo aviltamento.",
+ 64,
+ "Os hipócritas temem que lhes seja revelada uma surata que evidencie o que há em seus corações. Dize-lhes: Escarnecei! Deus revelará o que temeis!",
+ 65,
+ "Porém, se os interrogares, sem dúvida te dirão: Estávamos apenas falando e gracejando. Dize-lhes: Escarnecei, acaso, de Deus, de Seus versículos e de Seu Mensageiro?",
+ 66,
+ "Não vos escuseis, porque renegastes, depois de terdes acreditado! E se indultássemos uma parte de vós, puniríamos aoutra, porque é pecadora.",
+ 67,
+ "Os hipócritas e as hipócritas são semelhantes: recomendam o ilícito e proíbem o bem, e são avaros e avaras. Esquecem-se de Deus, por isso Deus deles Se esquece. Em verdade, os hipócritas são depravados.",
+ 68,
+ "Deus promete aos hipócritas e às hipócritas e aos incrédulos o fogo do inferno, onde permanecerão eternamente. Issolhes bastará. Deus os amaldiçoou, e sofrerão um tormento ininterrupto.",
+ 69,
+ "Sois como aqueles que vos precederam, os quais eram mais poderosos do que vós e mais ricos em bens e filhos. Desfrutaram de sua parte dos bens e vós desfrutais da vossa, como desfrutaram da sua os vossos antepassados; tagarelais, como eles tagarelaram. Suas obras tornar-se-ão sem efeito, neste mundo e no outro, e serão desventurados.",
+ 70,
+ "Não os aconselhou, acaso, a história de seus antepassados, do povo de Noé, de Ad, de Tamud, de Abraão, dosmadianitas e dos habitantes das cidades nefastas, a quem seus mensageiros haviam apresentado as evidências? Deus não oscondenou; outrossim, foram eles menos que se condenaram.",
+ 71,
+ "Os fiéis e as fiéis são protetores uns dos outros; recomendam o bem, proíbem o ilícito, praticam a oração, pagam o zakat, e obedecem a Deus e ao Seu Mensageiro. Deus Se compadecerá deles, porque Deus é Poderoso, Prudentíssimo.",
+ 72,
+ "Deus prometeu aos fiéis e às fiéis jardins, abaixo dos quais correm os rios, onde morarão eternamente, bem comoabrigos encantadores, nos jardins do Éden; e a complacência de Deus é ainda maior do que isso. Tal é o magníficobenefício.",
+ 73,
+ "Ó Profeta, combate os incrédulos e os hipócritas, e sê implacável para com eles! O inferno será sua morada. Que funestodestino!",
+ 74,
+ "Juram por Deus nada terem dito (de errado); porém, blasfemaram e descreram, depois de se terem islamizado. Pretenderam o que foram incapazes de fazer, e não encontraram outro argumento, senão o de que Deus e Seu Mensageiro osenriqueceram de Sua graça. Mas, se se arrependerem, será melhor para eles; ao contrário, se se recusarem, Deus oscastigará dolorosamente neste mundo e no outro, e não terão, na terra, amigos nem protetores.",
+ 75,
+ "Entre eles há alguns que prometeram a Deus, dizendo: Se Ele nos conceder Sua graça, faremos caridade e noscontaremos entre os virtuosos.",
+ 76,
+ "Mas quando Ele lhes concedeu a Sua graça, mesquinharam-na e a renegaram desdenhosamente.",
+ 77,
+ "Então, Deus aumentou a hipocrisia em seus corações, fazendo com que a mesma durasse até ao dia em quecomparecessem ante Ele, por causa da violação das suas promessas a Deus, e por suas mentiras.",
+ 78,
+ "Ignoram, acaso, que Deus bem conhece os seus segredos e as suas confidências e é Conhecedor do Incognoscível?",
+ 79,
+ "Quanto àqueles que calunia os fiéis, caritativos, por seus donativos, e escarnecem daqueles que não dão mais do que ofruto do seu labor, Deus escarnecerá deles, e sofrerão um doloroso castigo.",
+ 80,
+ "Quer implores, quer não (ó Mensageiro) o perdão de Deus para eles, ainda que implores setenta vezes, Deus jamais osperdoará, porque negaram Deus e Seu Mensageiro. E Deus não ilumina os depravados.",
+ 81,
+ "Depois da partida do Mensageiro de Deus, os que permaneceram regozijavam-se de terem ficado em seus lares erecusado sacrificar os seus bens e pessoas pela causa de Deus; disseram: Não partais durante o calor! Dize-lhes: O fogo doinferno é mais ardente ainda! Se o compreendessem...!",
+ 82,
+ "Que se riam, pois, porém, por pouco tempo; então, chorarão muito, pelo que lucravam.",
+ 83,
+ "Se Deus te repatriar (depois da campanha) e um grupo deles te pedir permissão para acompanhar-te, dize-lhes: Jamaispartireis comigo, nem combatereis junto a mim contra inimigo algum, porque da primeira vez preferistes ficar. Ficai, pois, com os omissos!",
+ 84,
+ "Se morrer algum deles, não ores jamais em sua intenção, nem te detenhas ante sua tumba. Eles renegaram Deus e o seuMensageiro e morreram na depravação.",
+ 85,
+ "Que não te maravilhem os seus bens, nem os seus filhos, porque Deus somente quer, com isso, atormentá-los, nestemundo, e fazer com que suas almas pereçam na incredulidade.",
+ 86,
+ "E se for revelada uma surata que lhes prescreva: Crede em Deus e lutai junto ao Seu Mensageiro! Os opulentos, entreeles, pedir-te-ão para serem eximidos e dirão: Deixa-nos com os isentos!",
+ 87,
+ "Preferiram ficar com os incapazes e seus corações foram sigilados; por isso não compreendem.",
+ 88,
+ "Porém, o Mensageiro e os fiéis que com ele sacrificaram seus bens e pessoas obterão as melhores dádivas e serãobem-aventurados.",
+ 89,
+ "Deus lhes destinou jardins, abaixo dos quais correm os rios, onde morarão eternamente. Tal é a magnífica recompensa.",
+ 90,
+ "Alguns beduínos, com desculpas, apresentaram-se, pedindo para serem eximidos (da luta). E os que mentiram a Deus eao Seu Mensageiro permaneceram em seus lares. Logo um castigo doloroso açoitará os incrédulos, entre eles.",
+ 91,
+ "Estão isentos: os inválidos, os enfermos, os baldos de recursos, sempre que sejam sinceros para com Deus e Seumensageiro. Não há motivo de queixa contra os que fazem o bem, e Deus é Indulgente, Misericordiosíssimo.",
+ 92,
+ "Assim como forma considerados (isentos) aqueles que se apresentaram a ti, pedindo que lhes arranjasses montaria, elhes disseste: Não tenho nenhuma para proporcionar-vos; voltaram com os olhos transbordantes de lágrimas, por pena denão poderem contribuir.",
+ 93,
+ "Serão recriminados aqueles que, sendo ricos, pediram-te para serem eximidos, porque preferiram ficar com osincapazes. Mas Deus selou suas mentes, de sorte que não compreendem.",
+ 94,
+ "Quando regressardes, apresentar-vos-ão escusas. Dize (ó Mohammad): Não vos escuseis; jamais em vós creremos, porque Deus nos tem informado acerca dos vossos procedimentos. Deus e Seu Mensageiro julgarão as vossas atitudes; logosereis devolvidos ao Conhecedor do cognoscível e do incognoscível, que vos inteirará de tudo quanto fazeis.",
+ 95,
+ "Quando regressardes, pedir-vos-ão por Deus, para que os desculpeis. Apartai-vos deles, porque são abomináveis e suamorada será o inferno, pelo que lucravam.",
+ 96,
+ "Jurar-vos-ão (fidelidade), para que vos congratuleis com eles; porém, se vos congratulardes com eles, sabei que Deusnão Se compraz com os depravados.",
+ 97,
+ "Os beduínos são mais incrédulos e hipócritas, e mais propensos a ignorarem os preceitos que Deus revelou ao seuMensageiro. E Deus é Sapiente, Prudentíssimo.",
+ 98,
+ "Entre os beduínos, há aqueles que consideram tudo quanto distribuem em caridade como uma perda; aguardam, ainda, que vos açoitem as vicissitudes. Que as vicissitudes caiam sobre eles! Sabei que Deus é Oniouvinte, Sapientíssimo.",
+ 99,
+ "Também, entre os beduínos, há aqueles que crêem em Deus e no Dia do Juízo Final; consideram tudo quanto distribuemem caridade como um veículo que os aproximará de Deus e lhes proporcionará as preces do Mensageiro. Sabei que isso osaproximará! Deus os acolherá em Sua clemência, porque é Indulgente, Misericordiosíssimo.",
+ 100,
+ "Quanto aos primeiros (muçulmanos), dentre os migrantes e os socorredores (Ansar do Mensageiro), que imitaram oglorioso exemplo daqueles, Deus se comprazerá com eles e eles se comprazerão n'Ele; e lhes destinou jardins, abaixo dosquais correm os rios, onde morarão eternamente. Tal é o magnífico benefício.",
+ 101,
+ "Entre os beduínos vizinhos, há hipócritas, assim como os há entre o povo de Madina, os quais estão acostumados àhipocrisia. Tu não os conheces; não obstante, Nós o conhecemos. Castigá-los-emos duplamente, e então serão submetidos aum severo castigo.",
+ 102,
+ "Outros reconheceram as suas faltas, quanto a terem confundido ações nobres com outras vis. Quiçá Deus ao absolva, porque é Indulgente, Misericordiosíssimo.",
+ 103,
+ "Recebe, de seus bens, uma caridade que os purifique e os santifique, e roga por eles, porque tua prece será seu consolo; em verdade, Deus é Oniouvinte, Sapientíssimo.",
+ 104,
+ "Ignoram, porventura, que Deus aceita o arrependimento dos seus servos, assim como recebe as caridades, e que Deus éRemissório, o Misericordiosíssimo?",
+ 105,
+ "Dize-lhes: Agi, pois Deus terá ciência da vossa ação; o mesmo farão o Seu Mensageiro e os fiéis. Logo retornareis aoConhecedor do cognoscível e do incognoscível, que vos inteirará de tudo quanto fizestes.",
+ 106,
+ "Outros estão esperançosos quanto aos desígnios de Deus, sem saber se Ele os castigará ou os absolverá; saibam queEle é Sapiente, Prudentíssimo.",
+ 107,
+ "Mas aqueles que erigiram uma mesquita em prejuízo dos fiéis, para difundirem entre eles a maldade, a incredulidade ea discórdia, e apoiarem aqueles que anteriormente combateram Deus e Seu Mensageiro, juraram: Não pretendíamos comisso senão o bem. Porém, Deus é Testemunha de que são mentirosos.",
+ 108,
+ "Jamais te detenhas ali, porque uma mesquita que desde o primeiro dia tenha sido erigida por temor a Deus é mais dignade que nela te detenhas; e ali há homens que anseiam por purificar-se; e Deus aprecia os puros.",
+ 109,
+ "Quem é melhor: o que alicerçou o seu edifício, fundamentado no temor a Deus, esperançoso e Seu beneplácito, ou que oconstruiu à beira do abismo e em seguida se arrojou com ele no fogo do inferno? Sabei que Deus não ilumina os iníquos.",
+ 110,
+ "A construção dela não cessará de ser causa de dúvidas em seus corações, a menos que seus corações se despedacem. Sabei que Deus é Sapiente, Prudentíssimo.",
+ 111,
+ "Deus cobrará dos fiéis o sacrifício de seus bens e pessoas, em troca do Paraíso. Combaterão pela causa de Deus, matarão e serão mortos. É uma promessa infalível, que está registrada na Tora, no Evangelho e no Alcorão. E quem é maisfiel à sua promessa do que Deus? Regozijai-vos, pois, a troca que haveis feito com Ele. Tal é o magnífico benefício.",
+ 112,
+ "Os arrependidos, os adoradores, os agradecidos, os viajantes (pela causa de Deus), os genuflexos e os prostrados sãoaqueles que recomendam o bem, proíbem o ilícito e se conservam dentro dos limites da lei de Deus. Anuncia aos fiéis asboas novas!",
+ 113,
+ "É inadmissível que o Profeta e os fiéis implorem perdão para os idólatras, ainda que estes sejam seus parentes carnais, ao descobrirem que são companheiros do fogo.",
+ 114,
+ "Abraão implorava perdão para seu pai, somente devido a uma promessa que lhe havia feito; mas, quando se certificoude que este era o inimigo de Deus, renegou-o. Sabei que Abraão era sentimental, tolerante.",
+ 115,
+ "É inadmissível que Deus desvie um povo, depois de havê-lo encaminhado, sem antes lhe Ter elucidado o que devetemer. Sabei que Deus é Onisciente.",
+ 116,
+ "A Deus pertence o reino dos céus e da terra. Ela dá a vida e a morte e, fora d'Ele não tereis protetor, nem socorredor.",
+ 117,
+ "Sem dúvida que Deus absolveu o Profeta, os migrantes e os socorredores, que o seguiram na hora angustiosa em que oscorações de alguns estavam prestes a fraquejar. Ele os absolveu, porque é para com eles Compassivo, Misericordiosíssimo.",
+ 118,
+ "Também absolveu os três que se omitiram (na expedição de Tabuk) quando a terra, com toda a sua amplitude, lhesparecia estreita, e suas almas se constrangeram, e se compenetraram de que não tinham mais amparo senão em Deus. E Eleos absolveu, a fim de que se arrependessem, porque Deus é o Remissório, o Misericordiosíssimo.",
+ 119,
+ "Ó fiéis, temei a Deus e permanecei com os verazes!",
+ 120,
+ "Não deveriam o povo de Madina e seus vizinhos beduínos se negar a seguir o Mensageiro de Deus, nem preferir assuas próprias vidas, em detrimento da dele, porque todo o seu sofrimento, devido à sede, fome ou fadiga, pela causa deDeus, todo o dano causado aos incrédulos e todo o dano recebido do inimigo ser-lhes-á registrado como boa ação, porqueDeus jamais frustra a recompensa aos benfeitores.",
+ 121,
+ "Deveriam saber, ainda, que não fazem gasto algum, pequeno ou grande, nem atravessam vale algum, sem que isso lhesseja registrado; em verdade, Deus os recompensará com coisa melhor do que tiverem feito.",
+ 122,
+ "Não devem todos os fiéis, de uma só vez, sair para o combate; deve permanecer uma parte de cada coletividade, parainstruir-se na fé, e assim admoestar s sua gente quando regressar, a fim de que se acautelem.",
+ 123,
+ "Ó fiéis, combatei os vossos vizinhos incrédulos para que sintam severidade em vós; e sabei que Deus está com ostementes.",
+ 124,
+ "Quanto uma nova Surata é revelada, alguns deles dizem (zombando): A quem de vós isso aumenta, em fé? No entanto, ela aumenta a fé dos fiéis, e disso se regozijam.",
+ 125,
+ "Em troca, quanto àqueles que abrigam a morbidez em seus corações, é-lhes acrescentada abominação sobreabominação, e morrerão na incredulidade.",
+ 126,
+ "Não reparam, acaso, que são tentados uma ou duas vezes por ano? Porém não se arrependem, nem meditam.",
+ 127,
+ "Quando uma Surata lhes é revelada, olham-se, entre si, e dizem: Acaso alguém vos observa? E logo se retiram. Deusdesviou seus corações, porque são gente insipiente.",
+ 128,
+ "Chegou-vos um Mensageiro de vossa raça, que se apiada do vosso infortúnio, anseia por proteger-vos, e é compassivoe misericordioso para com os fiéis.",
+ 129,
+ "Mas, se te negam, dize-lhes: Deus me basta! Não há mais divindade além d'Ele! A Ele me encomendo, porque é oSoberano do Trono Supremo."
+]
\ No newline at end of file
diff --git a/share/quran-pull/data/count.json b/share/quran-json/data/count.json
similarity index 100%
rename from share/quran-pull/data/count.json
rename to share/quran-json/data/count.json
diff --git a/share/quran-pull/data/sources.json b/share/quran-json/data/sources.json
similarity index 100%
rename from share/quran-pull/data/sources.json
rename to share/quran-json/data/sources.json
diff --git a/share/quran-pull/data/surahinfo.json b/share/quran-json/data/surahinfo.json
similarity index 100%
rename from share/quran-pull/data/surahinfo.json
rename to share/quran-json/data/surahinfo.json