First commit
This commit is contained in:
commit
96e3f482b9
355 changed files with 29122 additions and 0 deletions
17
.editorconfig
Normal file
17
.editorconfig
Normal file
|
@ -0,0 +1,17 @@
|
|||
root = true
|
||||
|
||||
[*.html]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.rb, *.erb]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.js, *.ts, *.tsx]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.scss]
|
||||
indent_style = space
|
||||
indent_size = 2
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/dist/
|
63
README.md
Normal file
63
README.md
Normal file
|
@ -0,0 +1,63 @@
|
|||
## About
|
||||
|
||||
This repository provides a programmer's interface
|
||||
to The Noble Quran, alongside various translations.
|
||||
|
||||
## Examples
|
||||
|
||||
#### Quran.locales
|
||||
|
||||
The `Quran.locales` method provides an object where the
|
||||
key is a locale name (such as `en`) and the value is a
|
||||
locale object. The locales returned by this method indicate
|
||||
what languages the `@0x1eef/Quran` library supports:
|
||||
|
||||
```typescript
|
||||
#!/usr/bin/env node
|
||||
import Quran from "Quran";
|
||||
for (locale in Quran.locales) {
|
||||
const locale = Quran.locales[locale];
|
||||
console.log("The Noble Quran for ", locale.displayName, " speakers");
|
||||
}
|
||||
```
|
||||
|
||||
#### Quran.surahs
|
||||
|
||||
The `Quran.surahs` method provides an object where the key
|
||||
is a locale name (such as `en`) and the value is a surah
|
||||
object. For example:
|
||||
|
||||
```typescript
|
||||
#!/usr/bin/env node
|
||||
import Quran from "Quran";
|
||||
const surah = Quran.surahs["ar"][0]; /* surah: Al-Fatihah */
|
||||
const ayah = surah.ayat[0].text; /* ayah: the first ayah of Al-Fatihah */
|
||||
console.log(ayah.text);
|
||||
```
|
||||
|
||||
## Languages
|
||||
|
||||
* Arabic
|
||||
* English
|
||||
* Farsi
|
||||
|
||||
## Install
|
||||
|
||||
**FIXME: haven't published to npm yet**
|
||||
|
||||
`@0x1eef/Quran` is available via npm:
|
||||
|
||||
npm i @0x1eef/Quran
|
||||
|
||||
## Thanks
|
||||
|
||||
الْحَمْدُ لِلَّهِ رَبِّ الْعَالَمِينَ
|
||||
|
||||
* Thanks to the translators:
|
||||
- English (The Clear Quran) by Dr. Mustafa Khattab
|
||||
- Farsi by Hussain Ansarian
|
||||
|
||||
## License
|
||||
|
||||
The "source code" is released under the terms of the GPL <br>
|
||||
See [LICENSE](./share/Quran/LICENSE) for details
|
1
etc/dist/index.js
vendored
Normal file
1
etc/dist/index.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(()=>{"use strict"})();
|
12
etc/eslint.config.mjs
Normal file
12
etc/eslint.config.mjs
Normal file
|
@ -0,0 +1,12 @@
|
|||
import eslint from '@eslint/js';
|
||||
import tseslint from 'typescript-eslint';
|
||||
import prettier from 'eslint-plugin-prettier/recommended';
|
||||
|
||||
export default tseslint.config(
|
||||
eslint.configs.recommended,
|
||||
...tseslint.configs.recommended,
|
||||
prettier,
|
||||
{
|
||||
rules: {'@typescript-eslint/no-require-imports': 0},
|
||||
}
|
||||
)
|
15
etc/tsconfig.json
Normal file
15
etc/tsconfig.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"strict": true,
|
||||
"module": "ESNEXT",
|
||||
"target": "ES2020",
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node",
|
||||
|
||||
"baseUrl": "src/",
|
||||
"paths": { "*": ["*"] },
|
||||
|
||||
"outDir": "dist",
|
||||
"declaration": true,
|
||||
}
|
||||
}
|
34
etc/webpack.config.js
Normal file
34
etc/webpack.config.js
Normal file
|
@ -0,0 +1,34 @@
|
|||
const path = require("path");
|
||||
module.exports = (env, argv) => {
|
||||
return {
|
||||
mode: "development",
|
||||
devtool: "source-map",
|
||||
entry: './src/index.ts',
|
||||
output: {
|
||||
filename: 'index.js',
|
||||
path: path.resolve(__dirname, "..", "dist"),
|
||||
library: { type: 'module' },
|
||||
},
|
||||
experiments: { outputModule: true },
|
||||
resolve: {
|
||||
modules: [path.resolve(__dirname, "..", "node_modules")],
|
||||
alias: {
|
||||
"@json": path.resolve(__dirname, "..", "src", "json"),
|
||||
"~": path.resolve(__dirname, "..", "src", "js"),
|
||||
},
|
||||
extensions: [".js", ".ts", ".json"],
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
loader: "babel-loader",
|
||||
exclude: /node_modules/,
|
||||
options: { presets: ["@babel/preset-env", "@babel/preset-typescript"] },
|
||||
},
|
||||
],
|
||||
},
|
||||
plugins: [],
|
||||
optimization: {}
|
||||
}
|
||||
};
|
28
package.json
Normal file
28
package.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"name": "Quran",
|
||||
"version": "0.1.0",
|
||||
"description": "A programmer's interface to The Noble Quran",
|
||||
"main": "dist/index.js",
|
||||
"types": [
|
||||
"dist/index.d.ts"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "npx webpack --config etc/webpack.config.js",
|
||||
"prepare": "npm run build",
|
||||
"format": "npx eslint --config etc/eslint.config.mjs --fix src/index.ts"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ReflectsLight/al-quran.reflectslight.io.git"
|
||||
},
|
||||
"author": "0x1eef",
|
||||
"license": "0BSDL",
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.0",
|
||||
"babel-loader": "^9.2.1",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-prettier": "^5.2.1",
|
||||
"prettier": "^3.3.3",
|
||||
"typescript": "^5.5"
|
||||
}
|
||||
}
|
674
share/Quran/LICENSE
Normal file
674
share/Quran/LICENSE
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
Quran.js Copyright (C) 2024 ReflectsLight
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
121
src/index.ts
Normal file
121
src/index.ts
Normal file
|
@ -0,0 +1,121 @@
|
|||
/**
|
||||
* Types
|
||||
*/
|
||||
type TAyat = Ayah[];
|
||||
|
||||
type TLocale = {
|
||||
readonly name: string;
|
||||
readonly displayName: string;
|
||||
readonly direction: "rtl" | "ltr";
|
||||
};
|
||||
|
||||
type TQuran = {
|
||||
readonly locale: TLocale;
|
||||
readonly surahs: Surah[];
|
||||
};
|
||||
|
||||
type TSurah = {
|
||||
readonly id: number;
|
||||
readonly name: string;
|
||||
readonly urlName: string;
|
||||
readonly translitName: string;
|
||||
readonly numberOfAyah: number;
|
||||
readonly translatedBy: string | null;
|
||||
};
|
||||
|
||||
type TAyah = {
|
||||
readonly id: number;
|
||||
readonly body: string;
|
||||
readonly ms: number;
|
||||
};
|
||||
|
||||
/**
|
||||
* Classes
|
||||
*/
|
||||
class Quran {
|
||||
readonly locale: TLocale;
|
||||
readonly surahs: Surah[];
|
||||
|
||||
/**
|
||||
* @returns {Record<string, TLocale>} The available locales
|
||||
*/
|
||||
static get locales(): Record<string, TLocale> {
|
||||
return {
|
||||
en: { name: "en", displayName: "English", direction: "ltr" },
|
||||
ar: { name: "ar", displayName: "العربية", direction: "rtl" },
|
||||
fa: { name: "fa", displayName: "فارسی", direction: "rtl" },
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns {Record<string, Surah[]>} The available surahs
|
||||
*/
|
||||
static get surahs(): Record<string, Surah[]> {
|
||||
const result: Record<string, Surah[]> = {};
|
||||
const surahs: Record<string, TSurah[]> = require("@json/surahs");
|
||||
for (const locale in surahs) {
|
||||
result[locale] = surahs[locale].map(
|
||||
(surah: TSurah) => new Surah({ ...surah, locale }),
|
||||
);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns {[number[]]} An array of ayah durations
|
||||
*/
|
||||
static get durations(): [number[]] {
|
||||
return require("@json/durations");
|
||||
}
|
||||
|
||||
constructor(self: TQuran) {
|
||||
this.locale = self.locale;
|
||||
this.surahs = self.surahs;
|
||||
}
|
||||
}
|
||||
|
||||
class Surah {
|
||||
readonly id: number;
|
||||
readonly name: string;
|
||||
readonly urlName: string;
|
||||
readonly translitName: string;
|
||||
readonly numberOfAyah: number;
|
||||
readonly locale: string;
|
||||
readonly translatedBy: string | null;
|
||||
|
||||
constructor(self: TSurah & { locale: string }) {
|
||||
this.id = self.id;
|
||||
this.name = self.name;
|
||||
this.urlName = self.urlName;
|
||||
this.translitName = self.translitName;
|
||||
this.numberOfAyah = self.numberOfAyah;
|
||||
this.translatedBy = self.translatedBy;
|
||||
this.locale = self.locale;
|
||||
return this;
|
||||
}
|
||||
|
||||
get ayat(): Ayah[] {
|
||||
const ayat = require(`@json/${this.locale}/${this.id}.json`);
|
||||
return ayat.map(([id, body]) => {
|
||||
const ms = Quran.durations[this.id - 1][id - 1] * 1000;
|
||||
return new Ayah({ id, body, ms });
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
class Ayah {
|
||||
readonly id: number;
|
||||
readonly body: string;
|
||||
readonly ms: number;
|
||||
|
||||
constructor(self: TAyah) {
|
||||
this.id = self.id;
|
||||
this.body = self.body;
|
||||
this.ms = self.ms;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Exports
|
||||
*/
|
||||
export { Quran, Surah, Ayah, TQuran, TSurah, TAyah, TAyat, TLocale };
|
1
src/json/ar/1.json
Normal file
1
src/json/ar/1.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"بِسْمِ اللَّهِ الرَّحْمَـٰنِ الرَّحِيمِ"],[2,"الْحَمْدُ لِلَّهِ رَبِّ الْعَالَمِينَ"],[3,"الرَّحْمَـٰنِ الرَّحِيمِ"],[4,"مَالِكِ يَوْمِ الدِّينِ"],[5,"إِيَّاكَ نَعْبُدُ وَإِيَّاكَ نَسْتَعِينُ"],[6,"اهْدِنَا الصِّرَاطَ الْمُسْتَقِيمَ"],[7,"صِرَاطَ الَّذِينَ أَنْعَمْتَ عَلَيْهِمْ غَيْرِ الْمَغْضُوبِ عَلَيْهِمْ وَلَا الضَّالِّينَ"]]
|
1
src/json/ar/10.json
Normal file
1
src/json/ar/10.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/100.json
Normal file
1
src/json/ar/100.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"وَالْعَادِيَاتِ ضَبْحًا"],[2,"فَالْمُورِيَاتِ قَدْحًا"],[3,"فَالْمُغِيرَاتِ صُبْحًا"],[4,"فَأَثَرْنَ بِهِ نَقْعًا"],[5,"فَوَسَطْنَ بِهِ جَمْعًا"],[6,"إِنَّ الْإِنسَانَ لِرَبِّهِ لَكَنُودٌ"],[7,"وَإِنَّهُ عَلَىٰ ذَٰلِكَ لَشَهِيدٌ"],[8,"وَإِنَّهُ لِحُبِّ الْخَيْرِ لَشَدِيدٌ"],[9," ۞ أَفَلَا يَعْلَمُ إِذَا بُعْثِرَ مَا فِي الْقُبُورِ"],[10,"وَحُصِّلَ مَا فِي الصُّدُورِ"],[11,"إِنَّ رَبَّهُم بِهِمْ يَوْمَئِذٍ لَّخَبِيرٌ"]]
|
1
src/json/ar/101.json
Normal file
1
src/json/ar/101.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"الْقَارِعَةُ"],[2,"مَا الْقَارِعَةُ"],[3,"وَمَا أَدْرَاكَ مَا الْقَارِعَةُ"],[4,"يَوْمَ يَكُونُ النَّاسُ كَالْفَرَاشِ الْمَبْثُوثِ"],[5,"وَتَكُونُ الْجِبَالُ كَالْعِهْنِ الْمَنفُوشِ"],[6,"فَأَمَّا مَن ثَقُلَتْ مَوَازِينُهُ"],[7,"فَهُوَ فِي عِيشَةٍ رَّاضِيَةٍ"],[8,"وَأَمَّا مَنْ خَفَّتْ مَوَازِينُهُ"],[9,"فَأُمُّهُ هَاوِيَةٌ"],[10,"وَمَا أَدْرَاكَ مَا هِيَهْ"],[11,"نَارٌ حَامِيَةٌ"]]
|
1
src/json/ar/102.json
Normal file
1
src/json/ar/102.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"أَلْهَاكُمُ التَّكَاثُرُ"],[2,"حَتَّىٰ زُرْتُمُ الْمَقَابِرَ"],[3,"كَلَّا سَوْفَ تَعْلَمُونَ"],[4,"ثُمَّ كَلَّا سَوْفَ تَعْلَمُونَ"],[5,"كَلَّا لَوْ تَعْلَمُونَ عِلْمَ الْيَقِينِ"],[6,"لَتَرَوُنَّ الْجَحِيمَ"],[7,"ثُمَّ لَتَرَوُنَّهَا عَيْنَ الْيَقِينِ"],[8,"ثُمَّ لَتُسْأَلُنَّ يَوْمَئِذٍ عَنِ النَّعِيمِ"]]
|
1
src/json/ar/103.json
Normal file
1
src/json/ar/103.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"وَالْعَصْرِ"],[2,"إِنَّ الْإِنسَانَ لَفِي خُسْرٍ"],[3,"إِلَّا الَّذِينَ آمَنُوا وَعَمِلُوا الصَّالِحَاتِ وَتَوَاصَوْا بِالْحَقِّ وَتَوَاصَوْا بِالصَّبْرِ"]]
|
1
src/json/ar/104.json
Normal file
1
src/json/ar/104.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"وَيْلٌ لِّكُلِّ هُمَزَةٍ لُّمَزَةٍ"],[2,"الَّذِي جَمَعَ مَالًا وَعَدَّدَهُ"],[3,"يَحْسَبُ أَنَّ مَالَهُ أَخْلَدَهُ"],[4,"كَلَّا ۖ لَيُنبَذَنَّ فِي الْحُطَمَةِ"],[5,"وَمَا أَدْرَاكَ مَا الْحُطَمَةُ"],[6,"نَارُ اللَّهِ الْمُوقَدَةُ"],[7,"الَّتِي تَطَّلِعُ عَلَى الْأَفْئِدَةِ"],[8,"إِنَّهَا عَلَيْهِم مُّؤْصَدَةٌ"],[9,"فِي عَمَدٍ مُّمَدَّدَةٍ"]]
|
1
src/json/ar/105.json
Normal file
1
src/json/ar/105.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"أَلَمْ تَرَ كَيْفَ فَعَلَ رَبُّكَ بِأَصْحَابِ الْفِيلِ"],[2,"أَلَمْ يَجْعَلْ كَيْدَهُمْ فِي تَضْلِيلٍ"],[3,"وَأَرْسَلَ عَلَيْهِمْ طَيْرًا أَبَابِيلَ"],[4,"تَرْمِيهِم بِحِجَارَةٍ مِّن سِجِّيلٍ"],[5,"فَجَعَلَهُمْ كَعَصْفٍ مَّأْكُولٍ"]]
|
1
src/json/ar/106.json
Normal file
1
src/json/ar/106.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"لِإِيلَافِ قُرَيْشٍ"],[2,"إِيلَافِهِمْ رِحْلَةَ الشِّتَاءِ وَالصَّيْفِ"],[3,"فَلْيَعْبُدُوا رَبَّ هَـٰذَا الْبَيْتِ"],[4,"الَّذِي أَطْعَمَهُم مِّن جُوعٍ وَآمَنَهُم مِّنْ خَوْفٍ"]]
|
1
src/json/ar/107.json
Normal file
1
src/json/ar/107.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"أَرَأَيْتَ الَّذِي يُكَذِّبُ بِالدِّينِ"],[2,"فَذَٰلِكَ الَّذِي يَدُعُّ الْيَتِيمَ"],[3,"وَلَا يَحُضُّ عَلَىٰ طَعَامِ الْمِسْكِينِ"],[4,"فَوَيْلٌ لِّلْمُصَلِّينَ"],[5,"الَّذِينَ هُمْ عَن صَلَاتِهِمْ سَاهُونَ"],[6,"الَّذِينَ هُمْ يُرَاءُونَ"],[7,"وَيَمْنَعُونَ الْمَاعُونَ"]]
|
1
src/json/ar/108.json
Normal file
1
src/json/ar/108.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"إِنَّا أَعْطَيْنَاكَ الْكَوْثَرَ"],[2,"فَصَلِّ لِرَبِّكَ وَانْحَرْ"],[3,"إِنَّ شَانِئَكَ هُوَ الْأَبْتَرُ"]]
|
1
src/json/ar/109.json
Normal file
1
src/json/ar/109.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"قُلْ يَا أَيُّهَا الْكَافِرُونَ"],[2,"لَا أَعْبُدُ مَا تَعْبُدُونَ"],[3,"وَلَا أَنتُمْ عَابِدُونَ مَا أَعْبُدُ"],[4,"وَلَا أَنَا عَابِدٌ مَّا عَبَدتُّمْ"],[5,"وَلَا أَنتُمْ عَابِدُونَ مَا أَعْبُدُ"],[6,"لَكُمْ دِينُكُمْ وَلِيَ دِينِ"]]
|
1
src/json/ar/11.json
Normal file
1
src/json/ar/11.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/110.json
Normal file
1
src/json/ar/110.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"إِذَا جَاءَ نَصْرُ اللَّهِ وَالْفَتْحُ"],[2,"وَرَأَيْتَ النَّاسَ يَدْخُلُونَ فِي دِينِ اللَّهِ أَفْوَاجًا"],[3,"فَسَبِّحْ بِحَمْدِ رَبِّكَ وَاسْتَغْفِرْهُ ۚ إِنَّهُ كَانَ تَوَّابًا"]]
|
1
src/json/ar/111.json
Normal file
1
src/json/ar/111.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"تَبَّتْ يَدَا أَبِي لَهَبٍ وَتَبَّ"],[2,"مَا أَغْنَىٰ عَنْهُ مَالُهُ وَمَا كَسَبَ"],[3,"سَيَصْلَىٰ نَارًا ذَاتَ لَهَبٍ"],[4,"وَامْرَأَتُهُ حَمَّالَةَ الْحَطَبِ"],[5,"فِي جِيدِهَا حَبْلٌ مِّن مَّسَدٍ"]]
|
1
src/json/ar/112.json
Normal file
1
src/json/ar/112.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"قُلْ هُوَ اللَّهُ أَحَدٌ"],[2,"اللَّهُ الصَّمَدُ"],[3,"لَمْ يَلِدْ وَلَمْ يُولَدْ"],[4,"وَلَمْ يَكُن لَّهُ كُفُوًا أَحَدٌ"]]
|
1
src/json/ar/113.json
Normal file
1
src/json/ar/113.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"قُلْ أَعُوذُ بِرَبِّ الْفَلَقِ"],[2,"مِن شَرِّ مَا خَلَقَ"],[3,"وَمِن شَرِّ غَاسِقٍ إِذَا وَقَبَ"],[4,"وَمِن شَرِّ النَّفَّاثَاتِ فِي الْعُقَدِ"],[5,"وَمِن شَرِّ حَاسِدٍ إِذَا حَسَدَ"]]
|
1
src/json/ar/114.json
Normal file
1
src/json/ar/114.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"قُلْ أَعُوذُ بِرَبِّ النَّاسِ"],[2,"مَلِكِ النَّاسِ"],[3,"إِلَـٰهِ النَّاسِ"],[4,"مِن شَرِّ الْوَسْوَاسِ الْخَنَّاسِ"],[5,"الَّذِي يُوَسْوِسُ فِي صُدُورِ النَّاسِ"],[6,"مِنَ الْجِنَّةِ وَالنَّاسِ"]]
|
1
src/json/ar/12.json
Normal file
1
src/json/ar/12.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/13.json
Normal file
1
src/json/ar/13.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/14.json
Normal file
1
src/json/ar/14.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/15.json
Normal file
1
src/json/ar/15.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/16.json
Normal file
1
src/json/ar/16.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/17.json
Normal file
1
src/json/ar/17.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/18.json
Normal file
1
src/json/ar/18.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/19.json
Normal file
1
src/json/ar/19.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/2.json
Normal file
1
src/json/ar/2.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/20.json
Normal file
1
src/json/ar/20.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/21.json
Normal file
1
src/json/ar/21.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/22.json
Normal file
1
src/json/ar/22.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/23.json
Normal file
1
src/json/ar/23.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/24.json
Normal file
1
src/json/ar/24.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/25.json
Normal file
1
src/json/ar/25.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/26.json
Normal file
1
src/json/ar/26.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/27.json
Normal file
1
src/json/ar/27.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/28.json
Normal file
1
src/json/ar/28.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/29.json
Normal file
1
src/json/ar/29.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/3.json
Normal file
1
src/json/ar/3.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/30.json
Normal file
1
src/json/ar/30.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/31.json
Normal file
1
src/json/ar/31.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/32.json
Normal file
1
src/json/ar/32.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/33.json
Normal file
1
src/json/ar/33.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/34.json
Normal file
1
src/json/ar/34.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/35.json
Normal file
1
src/json/ar/35.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/36.json
Normal file
1
src/json/ar/36.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/37.json
Normal file
1
src/json/ar/37.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/38.json
Normal file
1
src/json/ar/38.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/39.json
Normal file
1
src/json/ar/39.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/4.json
Normal file
1
src/json/ar/4.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/40.json
Normal file
1
src/json/ar/40.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/41.json
Normal file
1
src/json/ar/41.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/42.json
Normal file
1
src/json/ar/42.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/43.json
Normal file
1
src/json/ar/43.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/44.json
Normal file
1
src/json/ar/44.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/45.json
Normal file
1
src/json/ar/45.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/46.json
Normal file
1
src/json/ar/46.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/47.json
Normal file
1
src/json/ar/47.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/48.json
Normal file
1
src/json/ar/48.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/49.json
Normal file
1
src/json/ar/49.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/5.json
Normal file
1
src/json/ar/5.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/50.json
Normal file
1
src/json/ar/50.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/51.json
Normal file
1
src/json/ar/51.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/52.json
Normal file
1
src/json/ar/52.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/53.json
Normal file
1
src/json/ar/53.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/54.json
Normal file
1
src/json/ar/54.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/55.json
Normal file
1
src/json/ar/55.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/56.json
Normal file
1
src/json/ar/56.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/57.json
Normal file
1
src/json/ar/57.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/58.json
Normal file
1
src/json/ar/58.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/59.json
Normal file
1
src/json/ar/59.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/6.json
Normal file
1
src/json/ar/6.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/60.json
Normal file
1
src/json/ar/60.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/61.json
Normal file
1
src/json/ar/61.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"سَبَّحَ لِلَّهِ مَا فِي السَّمَاوَاتِ وَمَا فِي الْأَرْضِ ۖ وَهُوَ الْعَزِيزُ الْحَكِيمُ"],[2,"يَا أَيُّهَا الَّذِينَ آمَنُوا لِمَ تَقُولُونَ مَا لَا تَفْعَلُونَ"],[3,"كَبُرَ مَقْتًا عِندَ اللَّهِ أَن تَقُولُوا مَا لَا تَفْعَلُونَ"],[4,"إِنَّ اللَّهَ يُحِبُّ الَّذِينَ يُقَاتِلُونَ فِي سَبِيلِهِ صَفًّا كَأَنَّهُم بُنْيَانٌ مَّرْصُوصٌ"],[5,"وَإِذْ قَالَ مُوسَىٰ لِقَوْمِهِ يَا قَوْمِ لِمَ تُؤْذُونَنِي وَقَد تَّعْلَمُونَ أَنِّي رَسُولُ اللَّهِ إِلَيْكُمْ ۖ فَلَمَّا زَاغُوا أَزَاغَ اللَّهُ قُلُوبَهُمْ ۚ وَاللَّهُ لَا يَهْدِي الْقَوْمَ الْفَاسِقِينَ"],[6,"وَإِذْ قَالَ عِيسَى ابْنُ مَرْيَمَ يَا بَنِي إِسْرَائِيلَ إِنِّي رَسُولُ اللَّهِ إِلَيْكُم مُّصَدِّقًا لِّمَا بَيْنَ يَدَيَّ مِنَ التَّوْرَاةِ وَمُبَشِّرًا بِرَسُولٍ يَأْتِي مِن بَعْدِي اسْمُهُ أَحْمَدُ ۖ فَلَمَّا جَاءَهُم بِالْبَيِّنَاتِ قَالُوا هَـٰذَا سِحْرٌ مُّبِينٌ"],[7,"وَمَنْ أَظْلَمُ مِمَّنِ افْتَرَىٰ عَلَى اللَّهِ الْكَذِبَ وَهُوَ يُدْعَىٰ إِلَى الْإِسْلَامِ ۚ وَاللَّهُ لَا يَهْدِي الْقَوْمَ الظَّالِمِينَ"],[8,"يُرِيدُونَ لِيُطْفِئُوا نُورَ اللَّهِ بِأَفْوَاهِهِمْ وَاللَّهُ مُتِمُّ نُورِهِ وَلَوْ كَرِهَ الْكَافِرُونَ"],[9,"هُوَ الَّذِي أَرْسَلَ رَسُولَهُ بِالْهُدَىٰ وَدِينِ الْحَقِّ لِيُظْهِرَهُ عَلَى الدِّينِ كُلِّهِ وَلَوْ كَرِهَ الْمُشْرِكُونَ"],[10,"يَا أَيُّهَا الَّذِينَ آمَنُوا هَلْ أَدُلُّكُمْ عَلَىٰ تِجَارَةٍ تُنجِيكُم مِّنْ عَذَابٍ أَلِيمٍ"],[11,"تُؤْمِنُونَ بِاللَّهِ وَرَسُولِهِ وَتُجَاهِدُونَ فِي سَبِيلِ اللَّهِ بِأَمْوَالِكُمْ وَأَنفُسِكُمْ ۚ ذَٰلِكُمْ خَيْرٌ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ"],[12,"يَغْفِرْ لَكُمْ ذُنُوبَكُمْ وَيُدْخِلْكُمْ جَنَّاتٍ تَجْرِي مِن تَحْتِهَا الْأَنْهَارُ وَمَسَاكِنَ طَيِّبَةً فِي جَنَّاتِ عَدْنٍ ۚ ذَٰلِكَ الْفَوْزُ الْعَظِيمُ"],[13,"وَأُخْرَىٰ تُحِبُّونَهَا ۖ نَصْرٌ مِّنَ اللَّهِ وَفَتْحٌ قَرِيبٌ ۗ وَبَشِّرِ الْمُؤْمِنِينَ"],[14,"يَا أَيُّهَا الَّذِينَ آمَنُوا كُونُوا أَنصَارَ اللَّهِ كَمَا قَالَ عِيسَى ابْنُ مَرْيَمَ لِلْحَوَارِيِّينَ مَنْ أَنصَارِي إِلَى اللَّهِ ۖ قَالَ الْحَوَارِيُّونَ نَحْنُ أَنصَارُ اللَّهِ ۖ فَآمَنَت طَّائِفَةٌ مِّن بَنِي إِسْرَائِيلَ وَكَفَرَت طَّائِفَةٌ ۖ فَأَيَّدْنَا الَّذِينَ آمَنُوا عَلَىٰ عَدُوِّهِمْ فَأَصْبَحُوا ظَاهِرِينَ"]]
|
1
src/json/ar/62.json
Normal file
1
src/json/ar/62.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"يُسَبِّحُ لِلَّهِ مَا فِي السَّمَاوَاتِ وَمَا فِي الْأَرْضِ الْمَلِكِ الْقُدُّوسِ الْعَزِيزِ الْحَكِيمِ"],[2,"هُوَ الَّذِي بَعَثَ فِي الْأُمِّيِّينَ رَسُولًا مِّنْهُمْ يَتْلُو عَلَيْهِمْ آيَاتِهِ وَيُزَكِّيهِمْ وَيُعَلِّمُهُمُ الْكِتَابَ وَالْحِكْمَةَ وَإِن كَانُوا مِن قَبْلُ لَفِي ضَلَالٍ مُّبِينٍ"],[3,"وَآخَرِينَ مِنْهُمْ لَمَّا يَلْحَقُوا بِهِمْ ۚ وَهُوَ الْعَزِيزُ الْحَكِيمُ"],[4,"ذَٰلِكَ فَضْلُ اللَّهِ يُؤْتِيهِ مَن يَشَاءُ ۚ وَاللَّهُ ذُو الْفَضْلِ الْعَظِيمِ"],[5,"مَثَلُ الَّذِينَ حُمِّلُوا التَّوْرَاةَ ثُمَّ لَمْ يَحْمِلُوهَا كَمَثَلِ الْحِمَارِ يَحْمِلُ أَسْفَارًا ۚ بِئْسَ مَثَلُ الْقَوْمِ الَّذِينَ كَذَّبُوا بِآيَاتِ اللَّهِ ۚ وَاللَّهُ لَا يَهْدِي الْقَوْمَ الظَّالِمِينَ"],[6,"قُلْ يَا أَيُّهَا الَّذِينَ هَادُوا إِن زَعَمْتُمْ أَنَّكُمْ أَوْلِيَاءُ لِلَّهِ مِن دُونِ النَّاسِ فَتَمَنَّوُا الْمَوْتَ إِن كُنتُمْ صَادِقِينَ"],[7,"وَلَا يَتَمَنَّوْنَهُ أَبَدًا بِمَا قَدَّمَتْ أَيْدِيهِمْ ۚ وَاللَّهُ عَلِيمٌ بِالظَّالِمِينَ"],[8,"قُلْ إِنَّ الْمَوْتَ الَّذِي تَفِرُّونَ مِنْهُ فَإِنَّهُ مُلَاقِيكُمْ ۖ ثُمَّ تُرَدُّونَ إِلَىٰ عَالِمِ الْغَيْبِ وَالشَّهَادَةِ فَيُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ"],[9,"يَا أَيُّهَا الَّذِينَ آمَنُوا إِذَا نُودِيَ لِلصَّلَاةِ مِن يَوْمِ الْجُمُعَةِ فَاسْعَوْا إِلَىٰ ذِكْرِ اللَّهِ وَذَرُوا الْبَيْعَ ۚ ذَٰلِكُمْ خَيْرٌ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ"],[10,"فَإِذَا قُضِيَتِ الصَّلَاةُ فَانتَشِرُوا فِي الْأَرْضِ وَابْتَغُوا مِن فَضْلِ اللَّهِ وَاذْكُرُوا اللَّهَ كَثِيرًا لَّعَلَّكُمْ تُفْلِحُونَ"],[11,"وَإِذَا رَأَوْا تِجَارَةً أَوْ لَهْوًا انفَضُّوا إِلَيْهَا وَتَرَكُوكَ قَائِمًا ۚ قُلْ مَا عِندَ اللَّهِ خَيْرٌ مِّنَ اللَّهْوِ وَمِنَ التِّجَارَةِ ۚ وَاللَّهُ خَيْرُ الرَّازِقِينَ"]]
|
1
src/json/ar/63.json
Normal file
1
src/json/ar/63.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"إِذَا جَاءَكَ الْمُنَافِقُونَ قَالُوا نَشْهَدُ إِنَّكَ لَرَسُولُ اللَّهِ ۗ وَاللَّهُ يَعْلَمُ إِنَّكَ لَرَسُولُهُ وَاللَّهُ يَشْهَدُ إِنَّ الْمُنَافِقِينَ لَكَاذِبُونَ"],[2,"اتَّخَذُوا أَيْمَانَهُمْ جُنَّةً فَصَدُّوا عَن سَبِيلِ اللَّهِ ۚ إِنَّهُمْ سَاءَ مَا كَانُوا يَعْمَلُونَ"],[3,"ذَٰلِكَ بِأَنَّهُمْ آمَنُوا ثُمَّ كَفَرُوا فَطُبِعَ عَلَىٰ قُلُوبِهِمْ فَهُمْ لَا يَفْقَهُونَ"],[4," ۞ وَإِذَا رَأَيْتَهُمْ تُعْجِبُكَ أَجْسَامُهُمْ ۖ وَإِن يَقُولُوا تَسْمَعْ لِقَوْلِهِمْ ۖ كَأَنَّهُمْ خُشُبٌ مُّسَنَّدَةٌ ۖ يَحْسَبُونَ كُلَّ صَيْحَةٍ عَلَيْهِمْ ۚ هُمُ الْعَدُوُّ فَاحْذَرْهُمْ ۚ قَاتَلَهُمُ اللَّهُ ۖ أَنَّىٰ يُؤْفَكُونَ"],[5,"وَإِذَا قِيلَ لَهُمْ تَعَالَوْا يَسْتَغْفِرْ لَكُمْ رَسُولُ اللَّهِ لَوَّوْا رُءُوسَهُمْ وَرَأَيْتَهُمْ يَصُدُّونَ وَهُم مُّسْتَكْبِرُونَ"],[6,"سَوَاءٌ عَلَيْهِمْ أَسْتَغْفَرْتَ لَهُمْ أَمْ لَمْ تَسْتَغْفِرْ لَهُمْ لَن يَغْفِرَ اللَّهُ لَهُمْ ۚ إِنَّ اللَّهَ لَا يَهْدِي الْقَوْمَ الْفَاسِقِينَ"],[7,"هُمُ الَّذِينَ يَقُولُونَ لَا تُنفِقُوا عَلَىٰ مَنْ عِندَ رَسُولِ اللَّهِ حَتَّىٰ يَنفَضُّوا ۗ وَلِلَّهِ خَزَائِنُ السَّمَاوَاتِ وَالْأَرْضِ وَلَـٰكِنَّ الْمُنَافِقِينَ لَا يَفْقَهُونَ"],[8,"يَقُولُونَ لَئِن رَّجَعْنَا إِلَى الْمَدِينَةِ لَيُخْرِجَنَّ الْأَعَزُّ مِنْهَا الْأَذَلَّ ۚ وَلِلَّهِ الْعِزَّةُ وَلِرَسُولِهِ وَلِلْمُؤْمِنِينَ وَلَـٰكِنَّ الْمُنَافِقِينَ لَا يَعْلَمُونَ"],[9,"يَا أَيُّهَا الَّذِينَ آمَنُوا لَا تُلْهِكُمْ أَمْوَالُكُمْ وَلَا أَوْلَادُكُمْ عَن ذِكْرِ اللَّهِ ۚ وَمَن يَفْعَلْ ذَٰلِكَ فَأُولَـٰئِكَ هُمُ الْخَاسِرُونَ"],[10,"وَأَنفِقُوا مِن مَّا رَزَقْنَاكُم مِّن قَبْلِ أَن يَأْتِيَ أَحَدَكُمُ الْمَوْتُ فَيَقُولَ رَبِّ لَوْلَا أَخَّرْتَنِي إِلَىٰ أَجَلٍ قَرِيبٍ فَأَصَّدَّقَ وَأَكُن مِّنَ الصَّالِحِينَ"],[11,"وَلَن يُؤَخِّرَ اللَّهُ نَفْسًا إِذَا جَاءَ أَجَلُهَا ۚ وَاللَّهُ خَبِيرٌ بِمَا تَعْمَلُونَ"]]
|
1
src/json/ar/64.json
Normal file
1
src/json/ar/64.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"يُسَبِّحُ لِلَّهِ مَا فِي السَّمَاوَاتِ وَمَا فِي الْأَرْضِ ۖ لَهُ الْمُلْكُ وَلَهُ الْحَمْدُ ۖ وَهُوَ عَلَىٰ كُلِّ شَيْءٍ قَدِيرٌ"],[2,"هُوَ الَّذِي خَلَقَكُمْ فَمِنكُمْ كَافِرٌ وَمِنكُم مُّؤْمِنٌ ۚ وَاللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌ"],[3,"خَلَقَ السَّمَاوَاتِ وَالْأَرْضَ بِالْحَقِّ وَصَوَّرَكُمْ فَأَحْسَنَ صُوَرَكُمْ ۖ وَإِلَيْهِ الْمَصِيرُ"],[4,"يَعْلَمُ مَا فِي السَّمَاوَاتِ وَالْأَرْضِ وَيَعْلَمُ مَا تُسِرُّونَ وَمَا تُعْلِنُونَ ۚ وَاللَّهُ عَلِيمٌ بِذَاتِ الصُّدُورِ"],[5,"أَلَمْ يَأْتِكُمْ نَبَأُ الَّذِينَ كَفَرُوا مِن قَبْلُ فَذَاقُوا وَبَالَ أَمْرِهِمْ وَلَهُمْ عَذَابٌ أَلِيمٌ"],[6,"ذَٰلِكَ بِأَنَّهُ كَانَت تَّأْتِيهِمْ رُسُلُهُم بِالْبَيِّنَاتِ فَقَالُوا أَبَشَرٌ يَهْدُونَنَا فَكَفَرُوا وَتَوَلَّوا ۚ وَّاسْتَغْنَى اللَّهُ ۚ وَاللَّهُ غَنِيٌّ حَمِيدٌ"],[7,"زَعَمَ الَّذِينَ كَفَرُوا أَن لَّن يُبْعَثُوا ۚ قُلْ بَلَىٰ وَرَبِّي لَتُبْعَثُنَّ ثُمَّ لَتُنَبَّؤُنَّ بِمَا عَمِلْتُمْ ۚ وَذَٰلِكَ عَلَى اللَّهِ يَسِيرٌ"],[8,"فَآمِنُوا بِاللَّهِ وَرَسُولِهِ وَالنُّورِ الَّذِي أَنزَلْنَا ۚ وَاللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌ"],[9,"يَوْمَ يَجْمَعُكُمْ لِيَوْمِ الْجَمْعِ ۖ ذَٰلِكَ يَوْمُ التَّغَابُنِ ۗ وَمَن يُؤْمِن بِاللَّهِ وَيَعْمَلْ صَالِحًا يُكَفِّرْ عَنْهُ سَيِّئَاتِهِ وَيُدْخِلْهُ جَنَّاتٍ تَجْرِي مِن تَحْتِهَا الْأَنْهَارُ خَالِدِينَ فِيهَا أَبَدًا ۚ ذَٰلِكَ الْفَوْزُ الْعَظِيمُ"],[10,"وَالَّذِينَ كَفَرُوا وَكَذَّبُوا بِآيَاتِنَا أُولَـٰئِكَ أَصْحَابُ النَّارِ خَالِدِينَ فِيهَا ۖ وَبِئْسَ الْمَصِيرُ"],[11,"مَا أَصَابَ مِن مُّصِيبَةٍ إِلَّا بِإِذْنِ اللَّهِ ۗ وَمَن يُؤْمِن بِاللَّهِ يَهْدِ قَلْبَهُ ۚ وَاللَّهُ بِكُلِّ شَيْءٍ عَلِيمٌ"],[12,"وَأَطِيعُوا اللَّهَ وَأَطِيعُوا الرَّسُولَ ۚ فَإِن تَوَلَّيْتُمْ فَإِنَّمَا عَلَىٰ رَسُولِنَا الْبَلَاغُ الْمُبِينُ"],[13,"اللَّهُ لَا إِلَـٰهَ إِلَّا هُوَ ۚ وَعَلَى اللَّهِ فَلْيَتَوَكَّلِ الْمُؤْمِنُونَ"],[14,"يَا أَيُّهَا الَّذِينَ آمَنُوا إِنَّ مِنْ أَزْوَاجِكُمْ وَأَوْلَادِكُمْ عَدُوًّا لَّكُمْ فَاحْذَرُوهُمْ ۚ وَإِن تَعْفُوا وَتَصْفَحُوا وَتَغْفِرُوا فَإِنَّ اللَّهَ غَفُورٌ رَّحِيمٌ"],[15,"إِنَّمَا أَمْوَالُكُمْ وَأَوْلَادُكُمْ فِتْنَةٌ ۚ وَاللَّهُ عِندَهُ أَجْرٌ عَظِيمٌ"],[16,"فَاتَّقُوا اللَّهَ مَا اسْتَطَعْتُمْ وَاسْمَعُوا وَأَطِيعُوا وَأَنفِقُوا خَيْرًا لِّأَنفُسِكُمْ ۗ وَمَن يُوقَ شُحَّ نَفْسِهِ فَأُولَـٰئِكَ هُمُ الْمُفْلِحُونَ"],[17,"إِن تُقْرِضُوا اللَّهَ قَرْضًا حَسَنًا يُضَاعِفْهُ لَكُمْ وَيَغْفِرْ لَكُمْ ۚ وَاللَّهُ شَكُورٌ حَلِيمٌ"],[18,"عَالِمُ الْغَيْبِ وَالشَّهَادَةِ الْعَزِيزُ الْحَكِيمُ"]]
|
1
src/json/ar/65.json
Normal file
1
src/json/ar/65.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"يَا أَيُّهَا النَّبِيُّ إِذَا طَلَّقْتُمُ النِّسَاءَ فَطَلِّقُوهُنَّ لِعِدَّتِهِنَّ وَأَحْصُوا الْعِدَّةَ ۖ وَاتَّقُوا اللَّهَ رَبَّكُمْ ۖ لَا تُخْرِجُوهُنَّ مِن بُيُوتِهِنَّ وَلَا يَخْرُجْنَ إِلَّا أَن يَأْتِينَ بِفَاحِشَةٍ مُّبَيِّنَةٍ ۚ وَتِلْكَ حُدُودُ اللَّهِ ۚ وَمَن يَتَعَدَّ حُدُودَ اللَّهِ فَقَدْ ظَلَمَ نَفْسَهُ ۚ لَا تَدْرِي لَعَلَّ اللَّهَ يُحْدِثُ بَعْدَ ذَٰلِكَ أَمْرًا"],[2,"فَإِذَا بَلَغْنَ أَجَلَهُنَّ فَأَمْسِكُوهُنَّ بِمَعْرُوفٍ أَوْ فَارِقُوهُنَّ بِمَعْرُوفٍ وَأَشْهِدُوا ذَوَيْ عَدْلٍ مِّنكُمْ وَأَقِيمُوا الشَّهَادَةَ لِلَّهِ ۚ ذَٰلِكُمْ يُوعَظُ بِهِ مَن كَانَ يُؤْمِنُ بِاللَّهِ وَالْيَوْمِ الْآخِرِ ۚ وَمَن يَتَّقِ اللَّهَ يَجْعَل لَّهُ مَخْرَجًا"],[3,"وَيَرْزُقْهُ مِنْ حَيْثُ لَا يَحْتَسِبُ ۚ وَمَن يَتَوَكَّلْ عَلَى اللَّهِ فَهُوَ حَسْبُهُ ۚ إِنَّ اللَّهَ بَالِغُ أَمْرِهِ ۚ قَدْ جَعَلَ اللَّهُ لِكُلِّ شَيْءٍ قَدْرًا"],[4,"وَاللَّائِي يَئِسْنَ مِنَ الْمَحِيضِ مِن نِّسَائِكُمْ إِنِ ارْتَبْتُمْ فَعِدَّتُهُنَّ ثَلَاثَةُ أَشْهُرٍ وَاللَّائِي لَمْ يَحِضْنَ ۚ وَأُولَاتُ الْأَحْمَالِ أَجَلُهُنَّ أَن يَضَعْنَ حَمْلَهُنَّ ۚ وَمَن يَتَّقِ اللَّهَ يَجْعَل لَّهُ مِنْ أَمْرِهِ يُسْرًا"],[5,"ذَٰلِكَ أَمْرُ اللَّهِ أَنزَلَهُ إِلَيْكُمْ ۚ وَمَن يَتَّقِ اللَّهَ يُكَفِّرْ عَنْهُ سَيِّئَاتِهِ وَيُعْظِمْ لَهُ أَجْرًا"],[6,"أَسْكِنُوهُنَّ مِنْ حَيْثُ سَكَنتُم مِّن وُجْدِكُمْ وَلَا تُضَارُّوهُنَّ لِتُضَيِّقُوا عَلَيْهِنَّ ۚ وَإِن كُنَّ أُولَاتِ حَمْلٍ فَأَنفِقُوا عَلَيْهِنَّ حَتَّىٰ يَضَعْنَ حَمْلَهُنَّ ۚ فَإِنْ أَرْضَعْنَ لَكُمْ فَآتُوهُنَّ أُجُورَهُنَّ ۖ وَأْتَمِرُوا بَيْنَكُم بِمَعْرُوفٍ ۖ وَإِن تَعَاسَرْتُمْ فَسَتُرْضِعُ لَهُ أُخْرَىٰ"],[7,"لِيُنفِقْ ذُو سَعَةٍ مِّن سَعَتِهِ ۖ وَمَن قُدِرَ عَلَيْهِ رِزْقُهُ فَلْيُنفِقْ مِمَّا آتَاهُ اللَّهُ ۚ لَا يُكَلِّفُ اللَّهُ نَفْسًا إِلَّا مَا آتَاهَا ۚ سَيَجْعَلُ اللَّهُ بَعْدَ عُسْرٍ يُسْرًا"],[8,"وَكَأَيِّن مِّن قَرْيَةٍ عَتَتْ عَنْ أَمْرِ رَبِّهَا وَرُسُلِهِ فَحَاسَبْنَاهَا حِسَابًا شَدِيدًا وَعَذَّبْنَاهَا عَذَابًا نُّكْرًا"],[9,"فَذَاقَتْ وَبَالَ أَمْرِهَا وَكَانَ عَاقِبَةُ أَمْرِهَا خُسْرًا"],[10,"أَعَدَّ اللَّهُ لَهُمْ عَذَابًا شَدِيدًا ۖ فَاتَّقُوا اللَّهَ يَا أُولِي الْأَلْبَابِ الَّذِينَ آمَنُوا ۚ قَدْ أَنزَلَ اللَّهُ إِلَيْكُمْ ذِكْرًا"],[11,"رَّسُولًا يَتْلُو عَلَيْكُمْ آيَاتِ اللَّهِ مُبَيِّنَاتٍ لِّيُخْرِجَ الَّذِينَ آمَنُوا وَعَمِلُوا الصَّالِحَاتِ مِنَ الظُّلُمَاتِ إِلَى النُّورِ ۚ وَمَن يُؤْمِن بِاللَّهِ وَيَعْمَلْ صَالِحًا يُدْخِلْهُ جَنَّاتٍ تَجْرِي مِن تَحْتِهَا الْأَنْهَارُ خَالِدِينَ فِيهَا أَبَدًا ۖ قَدْ أَحْسَنَ اللَّهُ لَهُ رِزْقًا"],[12,"اللَّهُ الَّذِي خَلَقَ سَبْعَ سَمَاوَاتٍ وَمِنَ الْأَرْضِ مِثْلَهُنَّ يَتَنَزَّلُ الْأَمْرُ بَيْنَهُنَّ لِتَعْلَمُوا أَنَّ اللَّهَ عَلَىٰ كُلِّ شَيْءٍ قَدِيرٌ وَأَنَّ اللَّهَ قَدْ أَحَاطَ بِكُلِّ شَيْءٍ عِلْمًا"]]
|
1
src/json/ar/66.json
Normal file
1
src/json/ar/66.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"يَا أَيُّهَا النَّبِيُّ لِمَ تُحَرِّمُ مَا أَحَلَّ اللَّهُ لَكَ ۖ تَبْتَغِي مَرْضَاتَ أَزْوَاجِكَ ۚ وَاللَّهُ غَفُورٌ رَّحِيمٌ"],[2,"قَدْ فَرَضَ اللَّهُ لَكُمْ تَحِلَّةَ أَيْمَانِكُمْ ۚ وَاللَّهُ مَوْلَاكُمْ ۖ وَهُوَ الْعَلِيمُ الْحَكِيمُ"],[3,"وَإِذْ أَسَرَّ النَّبِيُّ إِلَىٰ بَعْضِ أَزْوَاجِهِ حَدِيثًا فَلَمَّا نَبَّأَتْ بِهِ وَأَظْهَرَهُ اللَّهُ عَلَيْهِ عَرَّفَ بَعْضَهُ وَأَعْرَضَ عَن بَعْضٍ ۖ فَلَمَّا نَبَّأَهَا بِهِ قَالَتْ مَنْ أَنبَأَكَ هَـٰذَا ۖ قَالَ نَبَّأَنِيَ الْعَلِيمُ الْخَبِيرُ"],[4,"إِن تَتُوبَا إِلَى اللَّهِ فَقَدْ صَغَتْ قُلُوبُكُمَا ۖ وَإِن تَظَاهَرَا عَلَيْهِ فَإِنَّ اللَّهَ هُوَ مَوْلَاهُ وَجِبْرِيلُ وَصَالِحُ الْمُؤْمِنِينَ ۖ وَالْمَلَائِكَةُ بَعْدَ ذَٰلِكَ ظَهِيرٌ"],[5,"عَسَىٰ رَبُّهُ إِن طَلَّقَكُنَّ أَن يُبْدِلَهُ أَزْوَاجًا خَيْرًا مِّنكُنَّ مُسْلِمَاتٍ مُّؤْمِنَاتٍ قَانِتَاتٍ تَائِبَاتٍ عَابِدَاتٍ سَائِحَاتٍ ثَيِّبَاتٍ وَأَبْكَارًا"],[6,"يَا أَيُّهَا الَّذِينَ آمَنُوا قُوا أَنفُسَكُمْ وَأَهْلِيكُمْ نَارًا وَقُودُهَا النَّاسُ وَالْحِجَارَةُ عَلَيْهَا مَلَائِكَةٌ غِلَاظٌ شِدَادٌ لَّا يَعْصُونَ اللَّهَ مَا أَمَرَهُمْ وَيَفْعَلُونَ مَا يُؤْمَرُونَ"],[7,"يَا أَيُّهَا الَّذِينَ كَفَرُوا لَا تَعْتَذِرُوا الْيَوْمَ ۖ إِنَّمَا تُجْزَوْنَ مَا كُنتُمْ تَعْمَلُونَ"],[8,"يَا أَيُّهَا الَّذِينَ آمَنُوا تُوبُوا إِلَى اللَّهِ تَوْبَةً نَّصُوحًا عَسَىٰ رَبُّكُمْ أَن يُكَفِّرَ عَنكُمْ سَيِّئَاتِكُمْ وَيُدْخِلَكُمْ جَنَّاتٍ تَجْرِي مِن تَحْتِهَا الْأَنْهَارُ يَوْمَ لَا يُخْزِي اللَّهُ النَّبِيَّ وَالَّذِينَ آمَنُوا مَعَهُ ۖ نُورُهُمْ يَسْعَىٰ بَيْنَ أَيْدِيهِمْ وَبِأَيْمَانِهِمْ يَقُولُونَ رَبَّنَا أَتْمِمْ لَنَا نُورَنَا وَاغْفِرْ لَنَا ۖ إِنَّكَ عَلَىٰ كُلِّ شَيْءٍ قَدِيرٌ"],[9,"يَا أَيُّهَا النَّبِيُّ جَاهِدِ الْكُفَّارَ وَالْمُنَافِقِينَ وَاغْلُظْ عَلَيْهِمْ ۚ وَمَأْوَاهُمْ جَهَنَّمُ ۖ وَبِئْسَ الْمَصِيرُ"],[10,"ضَرَبَ اللَّهُ مَثَلًا لِّلَّذِينَ كَفَرُوا امْرَأَتَ نُوحٍ وَامْرَأَتَ لُوطٍ ۖ كَانَتَا تَحْتَ عَبْدَيْنِ مِنْ عِبَادِنَا صَالِحَيْنِ فَخَانَتَاهُمَا فَلَمْ يُغْنِيَا عَنْهُمَا مِنَ اللَّهِ شَيْئًا وَقِيلَ ادْخُلَا النَّارَ مَعَ الدَّاخِلِينَ"],[11,"وَضَرَبَ اللَّهُ مَثَلًا لِّلَّذِينَ آمَنُوا امْرَأَتَ فِرْعَوْنَ إِذْ قَالَتْ رَبِّ ابْنِ لِي عِندَكَ بَيْتًا فِي الْجَنَّةِ وَنَجِّنِي مِن فِرْعَوْنَ وَعَمَلِهِ وَنَجِّنِي مِنَ الْقَوْمِ الظَّالِمِينَ"],[12,"وَمَرْيَمَ ابْنَتَ عِمْرَانَ الَّتِي أَحْصَنَتْ فَرْجَهَا فَنَفَخْنَا فِيهِ مِن رُّوحِنَا وَصَدَّقَتْ بِكَلِمَاتِ رَبِّهَا وَكُتُبِهِ وَكَانَتْ مِنَ الْقَانِتِينَ"]]
|
1
src/json/ar/67.json
Normal file
1
src/json/ar/67.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/68.json
Normal file
1
src/json/ar/68.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/69.json
Normal file
1
src/json/ar/69.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"الْحَاقَّةُ"],[2,"مَا الْحَاقَّةُ"],[3,"وَمَا أَدْرَاكَ مَا الْحَاقَّةُ"],[4,"كَذَّبَتْ ثَمُودُ وَعَادٌ بِالْقَارِعَةِ"],[5,"فَأَمَّا ثَمُودُ فَأُهْلِكُوا بِالطَّاغِيَةِ"],[6,"وَأَمَّا عَادٌ فَأُهْلِكُوا بِرِيحٍ صَرْصَرٍ عَاتِيَةٍ"],[7,"سَخَّرَهَا عَلَيْهِمْ سَبْعَ لَيَالٍ وَثَمَانِيَةَ أَيَّامٍ حُسُومًا فَتَرَى الْقَوْمَ فِيهَا صَرْعَىٰ كَأَنَّهُمْ أَعْجَازُ نَخْلٍ خَاوِيَةٍ"],[8,"فَهَلْ تَرَىٰ لَهُم مِّن بَاقِيَةٍ"],[9,"وَجَاءَ فِرْعَوْنُ وَمَن قَبْلَهُ وَالْمُؤْتَفِكَاتُ بِالْخَاطِئَةِ"],[10,"فَعَصَوْا رَسُولَ رَبِّهِمْ فَأَخَذَهُمْ أَخْذَةً رَّابِيَةً"],[11,"إِنَّا لَمَّا طَغَى الْمَاءُ حَمَلْنَاكُمْ فِي الْجَارِيَةِ"],[12,"لِنَجْعَلَهَا لَكُمْ تَذْكِرَةً وَتَعِيَهَا أُذُنٌ وَاعِيَةٌ"],[13,"فَإِذَا نُفِخَ فِي الصُّورِ نَفْخَةٌ وَاحِدَةٌ"],[14,"وَحُمِلَتِ الْأَرْضُ وَالْجِبَالُ فَدُكَّتَا دَكَّةً وَاحِدَةً"],[15,"فَيَوْمَئِذٍ وَقَعَتِ الْوَاقِعَةُ"],[16,"وَانشَقَّتِ السَّمَاءُ فَهِيَ يَوْمَئِذٍ وَاهِيَةٌ"],[17,"وَالْمَلَكُ عَلَىٰ أَرْجَائِهَا ۚ وَيَحْمِلُ عَرْشَ رَبِّكَ فَوْقَهُمْ يَوْمَئِذٍ ثَمَانِيَةٌ"],[18,"يَوْمَئِذٍ تُعْرَضُونَ لَا تَخْفَىٰ مِنكُمْ خَافِيَةٌ"],[19,"فَأَمَّا مَنْ أُوتِيَ كِتَابَهُ بِيَمِينِهِ فَيَقُولُ هَاؤُمُ اقْرَءُوا كِتَابِيَهْ"],[20,"إِنِّي ظَنَنتُ أَنِّي مُلَاقٍ حِسَابِيَهْ"],[21,"فَهُوَ فِي عِيشَةٍ رَّاضِيَةٍ"],[22,"فِي جَنَّةٍ عَالِيَةٍ"],[23,"قُطُوفُهَا دَانِيَةٌ"],[24,"كُلُوا وَاشْرَبُوا هَنِيئًا بِمَا أَسْلَفْتُمْ فِي الْأَيَّامِ الْخَالِيَةِ"],[25,"وَأَمَّا مَنْ أُوتِيَ كِتَابَهُ بِشِمَالِهِ فَيَقُولُ يَا لَيْتَنِي لَمْ أُوتَ كِتَابِيَهْ"],[26,"وَلَمْ أَدْرِ مَا حِسَابِيَهْ"],[27,"يَا لَيْتَهَا كَانَتِ الْقَاضِيَةَ"],[28,"مَا أَغْنَىٰ عَنِّي مَالِيَهْ ۜ"],[29,"هَلَكَ عَنِّي سُلْطَانِيَهْ"],[30,"خُذُوهُ فَغُلُّوهُ"],[31,"ثُمَّ الْجَحِيمَ صَلُّوهُ"],[32,"ثُمَّ فِي سِلْسِلَةٍ ذَرْعُهَا سَبْعُونَ ذِرَاعًا فَاسْلُكُوهُ"],[33,"إِنَّهُ كَانَ لَا يُؤْمِنُ بِاللَّهِ الْعَظِيمِ"],[34,"وَلَا يَحُضُّ عَلَىٰ طَعَامِ الْمِسْكِينِ"],[35,"فَلَيْسَ لَهُ الْيَوْمَ هَاهُنَا حَمِيمٌ"],[36,"وَلَا طَعَامٌ إِلَّا مِنْ غِسْلِينٍ"],[37,"لَّا يَأْكُلُهُ إِلَّا الْخَاطِئُونَ"],[38,"فَلَا أُقْسِمُ بِمَا تُبْصِرُونَ"],[39,"وَمَا لَا تُبْصِرُونَ"],[40,"إِنَّهُ لَقَوْلُ رَسُولٍ كَرِيمٍ"],[41,"وَمَا هُوَ بِقَوْلِ شَاعِرٍ ۚ قَلِيلًا مَّا تُؤْمِنُونَ"],[42,"وَلَا بِقَوْلِ كَاهِنٍ ۚ قَلِيلًا مَّا تَذَكَّرُونَ"],[43,"تَنزِيلٌ مِّن رَّبِّ الْعَالَمِينَ"],[44,"وَلَوْ تَقَوَّلَ عَلَيْنَا بَعْضَ الْأَقَاوِيلِ"],[45,"لَأَخَذْنَا مِنْهُ بِالْيَمِينِ"],[46,"ثُمَّ لَقَطَعْنَا مِنْهُ الْوَتِينَ"],[47,"فَمَا مِنكُم مِّنْ أَحَدٍ عَنْهُ حَاجِزِينَ"],[48,"وَإِنَّهُ لَتَذْكِرَةٌ لِّلْمُتَّقِينَ"],[49,"وَإِنَّا لَنَعْلَمُ أَنَّ مِنكُم مُّكَذِّبِينَ"],[50,"وَإِنَّهُ لَحَسْرَةٌ عَلَى الْكَافِرِينَ"],[51,"وَإِنَّهُ لَحَقُّ الْيَقِينِ"],[52,"فَسَبِّحْ بِاسْمِ رَبِّكَ الْعَظِيمِ"]]
|
1
src/json/ar/7.json
Normal file
1
src/json/ar/7.json
Normal file
File diff suppressed because one or more lines are too long
1
src/json/ar/70.json
Normal file
1
src/json/ar/70.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"سَأَلَ سَائِلٌ بِعَذَابٍ وَاقِعٍ"],[2,"لِّلْكَافِرِينَ لَيْسَ لَهُ دَافِعٌ"],[3,"مِّنَ اللَّهِ ذِي الْمَعَارِجِ"],[4,"تَعْرُجُ الْمَلَائِكَةُ وَالرُّوحُ إِلَيْهِ فِي يَوْمٍ كَانَ مِقْدَارُهُ خَمْسِينَ أَلْفَ سَنَةٍ"],[5,"فَاصْبِرْ صَبْرًا جَمِيلًا"],[6,"إِنَّهُمْ يَرَوْنَهُ بَعِيدًا"],[7,"وَنَرَاهُ قَرِيبًا"],[8,"يَوْمَ تَكُونُ السَّمَاءُ كَالْمُهْلِ"],[9,"وَتَكُونُ الْجِبَالُ كَالْعِهْنِ"],[10,"وَلَا يَسْأَلُ حَمِيمٌ حَمِيمًا"],[11,"يُبَصَّرُونَهُمْ ۚ يَوَدُّ الْمُجْرِمُ لَوْ يَفْتَدِي مِنْ عَذَابِ يَوْمِئِذٍ بِبَنِيهِ"],[12,"وَصَاحِبَتِهِ وَأَخِيهِ"],[13,"وَفَصِيلَتِهِ الَّتِي تُؤْوِيهِ"],[14,"وَمَن فِي الْأَرْضِ جَمِيعًا ثُمَّ يُنجِيهِ"],[15,"كَلَّا ۖ إِنَّهَا لَظَىٰ"],[16,"نَزَّاعَةً لِّلشَّوَىٰ"],[17,"تَدْعُو مَنْ أَدْبَرَ وَتَوَلَّىٰ"],[18,"وَجَمَعَ فَأَوْعَىٰ"],[19," ۞ إِنَّ الْإِنسَانَ خُلِقَ هَلُوعًا"],[20,"إِذَا مَسَّهُ الشَّرُّ جَزُوعًا"],[21,"وَإِذَا مَسَّهُ الْخَيْرُ مَنُوعًا"],[22,"إِلَّا الْمُصَلِّينَ"],[23,"الَّذِينَ هُمْ عَلَىٰ صَلَاتِهِمْ دَائِمُونَ"],[24,"وَالَّذِينَ فِي أَمْوَالِهِمْ حَقٌّ مَّعْلُومٌ"],[25,"لِّلسَّائِلِ وَالْمَحْرُومِ"],[26,"وَالَّذِينَ يُصَدِّقُونَ بِيَوْمِ الدِّينِ"],[27,"وَالَّذِينَ هُم مِّنْ عَذَابِ رَبِّهِم مُّشْفِقُونَ"],[28,"إِنَّ عَذَابَ رَبِّهِمْ غَيْرُ مَأْمُونٍ"],[29,"وَالَّذِينَ هُمْ لِفُرُوجِهِمْ حَافِظُونَ"],[30,"إِلَّا عَلَىٰ أَزْوَاجِهِمْ أَوْ مَا مَلَكَتْ أَيْمَانُهُمْ فَإِنَّهُمْ غَيْرُ مَلُومِينَ"],[31,"فَمَنِ ابْتَغَىٰ وَرَاءَ ذَٰلِكَ فَأُولَـٰئِكَ هُمُ الْعَادُونَ"],[32,"وَالَّذِينَ هُمْ لِأَمَانَاتِهِمْ وَعَهْدِهِمْ رَاعُونَ"],[33,"وَالَّذِينَ هُم بِشَهَادَاتِهِمْ قَائِمُونَ"],[34,"وَالَّذِينَ هُمْ عَلَىٰ صَلَاتِهِمْ يُحَافِظُونَ"],[35,"أُولَـٰئِكَ فِي جَنَّاتٍ مُّكْرَمُونَ"],[36,"فَمَالِ الَّذِينَ كَفَرُوا قِبَلَكَ مُهْطِعِينَ"],[37,"عَنِ الْيَمِينِ وَعَنِ الشِّمَالِ عِزِينَ"],[38,"أَيَطْمَعُ كُلُّ امْرِئٍ مِّنْهُمْ أَن يُدْخَلَ جَنَّةَ نَعِيمٍ"],[39,"كَلَّا ۖ إِنَّا خَلَقْنَاهُم مِّمَّا يَعْلَمُونَ"],[40,"فَلَا أُقْسِمُ بِرَبِّ الْمَشَارِقِ وَالْمَغَارِبِ إِنَّا لَقَادِرُونَ"],[41,"عَلَىٰ أَن نُّبَدِّلَ خَيْرًا مِّنْهُمْ وَمَا نَحْنُ بِمَسْبُوقِينَ"],[42,"فَذَرْهُمْ يَخُوضُوا وَيَلْعَبُوا حَتَّىٰ يُلَاقُوا يَوْمَهُمُ الَّذِي يُوعَدُونَ"],[43,"يَوْمَ يَخْرُجُونَ مِنَ الْأَجْدَاثِ سِرَاعًا كَأَنَّهُمْ إِلَىٰ نُصُبٍ يُوفِضُونَ"],[44,"خَاشِعَةً أَبْصَارُهُمْ تَرْهَقُهُمْ ذِلَّةٌ ۚ ذَٰلِكَ الْيَوْمُ الَّذِي كَانُوا يُوعَدُونَ"]]
|
1
src/json/ar/71.json
Normal file
1
src/json/ar/71.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"إِنَّا أَرْسَلْنَا نُوحًا إِلَىٰ قَوْمِهِ أَنْ أَنذِرْ قَوْمَكَ مِن قَبْلِ أَن يَأْتِيَهُمْ عَذَابٌ أَلِيمٌ"],[2,"قَالَ يَا قَوْمِ إِنِّي لَكُمْ نَذِيرٌ مُّبِينٌ"],[3,"أَنِ اعْبُدُوا اللَّهَ وَاتَّقُوهُ وَأَطِيعُونِ"],[4,"يَغْفِرْ لَكُم مِّن ذُنُوبِكُمْ وَيُؤَخِّرْكُمْ إِلَىٰ أَجَلٍ مُّسَمًّى ۚ إِنَّ أَجَلَ اللَّهِ إِذَا جَاءَ لَا يُؤَخَّرُ ۖ لَوْ كُنتُمْ تَعْلَمُونَ"],[5,"قَالَ رَبِّ إِنِّي دَعَوْتُ قَوْمِي لَيْلًا وَنَهَارًا"],[6,"فَلَمْ يَزِدْهُمْ دُعَائِي إِلَّا فِرَارًا"],[7,"وَإِنِّي كُلَّمَا دَعَوْتُهُمْ لِتَغْفِرَ لَهُمْ جَعَلُوا أَصَابِعَهُمْ فِي آذَانِهِمْ وَاسْتَغْشَوْا ثِيَابَهُمْ وَأَصَرُّوا وَاسْتَكْبَرُوا اسْتِكْبَارًا"],[8,"ثُمَّ إِنِّي دَعَوْتُهُمْ جِهَارًا"],[9,"ثُمَّ إِنِّي أَعْلَنتُ لَهُمْ وَأَسْرَرْتُ لَهُمْ إِسْرَارًا"],[10,"فَقُلْتُ اسْتَغْفِرُوا رَبَّكُمْ إِنَّهُ كَانَ غَفَّارًا"],[11,"يُرْسِلِ السَّمَاءَ عَلَيْكُم مِّدْرَارًا"],[12,"وَيُمْدِدْكُم بِأَمْوَالٍ وَبَنِينَ وَيَجْعَل لَّكُمْ جَنَّاتٍ وَيَجْعَل لَّكُمْ أَنْهَارًا"],[13,"مَّا لَكُمْ لَا تَرْجُونَ لِلَّهِ وَقَارًا"],[14,"وَقَدْ خَلَقَكُمْ أَطْوَارًا"],[15,"أَلَمْ تَرَوْا كَيْفَ خَلَقَ اللَّهُ سَبْعَ سَمَاوَاتٍ طِبَاقًا"],[16,"وَجَعَلَ الْقَمَرَ فِيهِنَّ نُورًا وَجَعَلَ الشَّمْسَ سِرَاجًا"],[17,"وَاللَّهُ أَنبَتَكُم مِّنَ الْأَرْضِ نَبَاتًا"],[18,"ثُمَّ يُعِيدُكُمْ فِيهَا وَيُخْرِجُكُمْ إِخْرَاجًا"],[19,"وَاللَّهُ جَعَلَ لَكُمُ الْأَرْضَ بِسَاطًا"],[20,"لِّتَسْلُكُوا مِنْهَا سُبُلًا فِجَاجًا"],[21,"قَالَ نُوحٌ رَّبِّ إِنَّهُمْ عَصَوْنِي وَاتَّبَعُوا مَن لَّمْ يَزِدْهُ مَالُهُ وَوَلَدُهُ إِلَّا خَسَارًا"],[22,"وَمَكَرُوا مَكْرًا كُبَّارًا"],[23,"وَقَالُوا لَا تَذَرُنَّ آلِهَتَكُمْ وَلَا تَذَرُنَّ وَدًّا وَلَا سُوَاعًا وَلَا يَغُوثَ وَيَعُوقَ وَنَسْرًا"],[24,"وَقَدْ أَضَلُّوا كَثِيرًا ۖ وَلَا تَزِدِ الظَّالِمِينَ إِلَّا ضَلَالًا"],[25,"مِّمَّا خَطِيئَاتِهِمْ أُغْرِقُوا فَأُدْخِلُوا نَارًا فَلَمْ يَجِدُوا لَهُم مِّن دُونِ اللَّهِ أَنصَارًا"],[26,"وَقَالَ نُوحٌ رَّبِّ لَا تَذَرْ عَلَى الْأَرْضِ مِنَ الْكَافِرِينَ دَيَّارًا"],[27,"إِنَّكَ إِن تَذَرْهُمْ يُضِلُّوا عِبَادَكَ وَلَا يَلِدُوا إِلَّا فَاجِرًا كَفَّارًا"],[28,"رَّبِّ اغْفِرْ لِي وَلِوَالِدَيَّ وَلِمَن دَخَلَ بَيْتِيَ مُؤْمِنًا وَلِلْمُؤْمِنِينَ وَالْمُؤْمِنَاتِ وَلَا تَزِدِ الظَّالِمِينَ إِلَّا تَبَارًا"]]
|
1
src/json/ar/72.json
Normal file
1
src/json/ar/72.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"قُلْ أُوحِيَ إِلَيَّ أَنَّهُ اسْتَمَعَ نَفَرٌ مِّنَ الْجِنِّ فَقَالُوا إِنَّا سَمِعْنَا قُرْآنًا عَجَبًا"],[2,"يَهْدِي إِلَى الرُّشْدِ فَآمَنَّا بِهِ ۖ وَلَن نُّشْرِكَ بِرَبِّنَا أَحَدًا"],[3,"وَأَنَّهُ تَعَالَىٰ جَدُّ رَبِّنَا مَا اتَّخَذَ صَاحِبَةً وَلَا وَلَدًا"],[4,"وَأَنَّهُ كَانَ يَقُولُ سَفِيهُنَا عَلَى اللَّهِ شَطَطًا"],[5,"وَأَنَّا ظَنَنَّا أَن لَّن تَقُولَ الْإِنسُ وَالْجِنُّ عَلَى اللَّهِ كَذِبًا"],[6,"وَأَنَّهُ كَانَ رِجَالٌ مِّنَ الْإِنسِ يَعُوذُونَ بِرِجَالٍ مِّنَ الْجِنِّ فَزَادُوهُمْ رَهَقًا"],[7,"وَأَنَّهُمْ ظَنُّوا كَمَا ظَنَنتُمْ أَن لَّن يَبْعَثَ اللَّهُ أَحَدًا"],[8,"وَأَنَّا لَمَسْنَا السَّمَاءَ فَوَجَدْنَاهَا مُلِئَتْ حَرَسًا شَدِيدًا وَشُهُبًا"],[9,"وَأَنَّا كُنَّا نَقْعُدُ مِنْهَا مَقَاعِدَ لِلسَّمْعِ ۖ فَمَن يَسْتَمِعِ الْآنَ يَجِدْ لَهُ شِهَابًا رَّصَدًا"],[10,"وَأَنَّا لَا نَدْرِي أَشَرٌّ أُرِيدَ بِمَن فِي الْأَرْضِ أَمْ أَرَادَ بِهِمْ رَبُّهُمْ رَشَدًا"],[11,"وَأَنَّا مِنَّا الصَّالِحُونَ وَمِنَّا دُونَ ذَٰلِكَ ۖ كُنَّا طَرَائِقَ قِدَدًا"],[12,"وَأَنَّا ظَنَنَّا أَن لَّن نُّعْجِزَ اللَّهَ فِي الْأَرْضِ وَلَن نُّعْجِزَهُ هَرَبًا"],[13,"وَأَنَّا لَمَّا سَمِعْنَا الْهُدَىٰ آمَنَّا بِهِ ۖ فَمَن يُؤْمِن بِرَبِّهِ فَلَا يَخَافُ بَخْسًا وَلَا رَهَقًا"],[14,"وَأَنَّا مِنَّا الْمُسْلِمُونَ وَمِنَّا الْقَاسِطُونَ ۖ فَمَنْ أَسْلَمَ فَأُولَـٰئِكَ تَحَرَّوْا رَشَدًا"],[15,"وَأَمَّا الْقَاسِطُونَ فَكَانُوا لِجَهَنَّمَ حَطَبًا"],[16,"وَأَن لَّوِ اسْتَقَامُوا عَلَى الطَّرِيقَةِ لَأَسْقَيْنَاهُم مَّاءً غَدَقًا"],[17,"لِّنَفْتِنَهُمْ فِيهِ ۚ وَمَن يُعْرِضْ عَن ذِكْرِ رَبِّهِ يَسْلُكْهُ عَذَابًا صَعَدًا"],[18,"وَأَنَّ الْمَسَاجِدَ لِلَّهِ فَلَا تَدْعُوا مَعَ اللَّهِ أَحَدًا"],[19,"وَأَنَّهُ لَمَّا قَامَ عَبْدُ اللَّهِ يَدْعُوهُ كَادُوا يَكُونُونَ عَلَيْهِ لِبَدًا"],[20,"قُلْ إِنَّمَا أَدْعُو رَبِّي وَلَا أُشْرِكُ بِهِ أَحَدًا"],[21,"قُلْ إِنِّي لَا أَمْلِكُ لَكُمْ ضَرًّا وَلَا رَشَدًا"],[22,"قُلْ إِنِّي لَن يُجِيرَنِي مِنَ اللَّهِ أَحَدٌ وَلَنْ أَجِدَ مِن دُونِهِ مُلْتَحَدًا"],[23,"إِلَّا بَلَاغًا مِّنَ اللَّهِ وَرِسَالَاتِهِ ۚ وَمَن يَعْصِ اللَّهَ وَرَسُولَهُ فَإِنَّ لَهُ نَارَ جَهَنَّمَ خَالِدِينَ فِيهَا أَبَدًا"],[24,"حَتَّىٰ إِذَا رَأَوْا مَا يُوعَدُونَ فَسَيَعْلَمُونَ مَنْ أَضْعَفُ نَاصِرًا وَأَقَلُّ عَدَدًا"],[25,"قُلْ إِنْ أَدْرِي أَقَرِيبٌ مَّا تُوعَدُونَ أَمْ يَجْعَلُ لَهُ رَبِّي أَمَدًا"],[26,"عَالِمُ الْغَيْبِ فَلَا يُظْهِرُ عَلَىٰ غَيْبِهِ أَحَدًا"],[27,"إِلَّا مَنِ ارْتَضَىٰ مِن رَّسُولٍ فَإِنَّهُ يَسْلُكُ مِن بَيْنِ يَدَيْهِ وَمِنْ خَلْفِهِ رَصَدًا"],[28,"لِّيَعْلَمَ أَن قَدْ أَبْلَغُوا رِسَالَاتِ رَبِّهِمْ وَأَحَاطَ بِمَا لَدَيْهِمْ وَأَحْصَىٰ كُلَّ شَيْءٍ عَدَدًا"]]
|
1
src/json/ar/73.json
Normal file
1
src/json/ar/73.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"يَا أَيُّهَا الْمُزَّمِّلُ"],[2,"قُمِ اللَّيْلَ إِلَّا قَلِيلًا"],[3,"نِّصْفَهُ أَوِ انقُصْ مِنْهُ قَلِيلًا"],[4,"أَوْ زِدْ عَلَيْهِ وَرَتِّلِ الْقُرْآنَ تَرْتِيلًا"],[5,"إِنَّا سَنُلْقِي عَلَيْكَ قَوْلًا ثَقِيلًا"],[6,"إِنَّ نَاشِئَةَ اللَّيْلِ هِيَ أَشَدُّ وَطْئًا وَأَقْوَمُ قِيلًا"],[7,"إِنَّ لَكَ فِي النَّهَارِ سَبْحًا طَوِيلًا"],[8,"وَاذْكُرِ اسْمَ رَبِّكَ وَتَبَتَّلْ إِلَيْهِ تَبْتِيلًا"],[9,"رَّبُّ الْمَشْرِقِ وَالْمَغْرِبِ لَا إِلَـٰهَ إِلَّا هُوَ فَاتَّخِذْهُ وَكِيلًا"],[10,"وَاصْبِرْ عَلَىٰ مَا يَقُولُونَ وَاهْجُرْهُمْ هَجْرًا جَمِيلًا"],[11,"وَذَرْنِي وَالْمُكَذِّبِينَ أُولِي النَّعْمَةِ وَمَهِّلْهُمْ قَلِيلًا"],[12,"إِنَّ لَدَيْنَا أَنكَالًا وَجَحِيمًا"],[13,"وَطَعَامًا ذَا غُصَّةٍ وَعَذَابًا أَلِيمًا"],[14,"يَوْمَ تَرْجُفُ الْأَرْضُ وَالْجِبَالُ وَكَانَتِ الْجِبَالُ كَثِيبًا مَّهِيلًا"],[15,"إِنَّا أَرْسَلْنَا إِلَيْكُمْ رَسُولًا شَاهِدًا عَلَيْكُمْ كَمَا أَرْسَلْنَا إِلَىٰ فِرْعَوْنَ رَسُولًا"],[16,"فَعَصَىٰ فِرْعَوْنُ الرَّسُولَ فَأَخَذْنَاهُ أَخْذًا وَبِيلًا"],[17,"فَكَيْفَ تَتَّقُونَ إِن كَفَرْتُمْ يَوْمًا يَجْعَلُ الْوِلْدَانَ شِيبًا"],[18,"السَّمَاءُ مُنفَطِرٌ بِهِ ۚ كَانَ وَعْدُهُ مَفْعُولًا"],[19,"إِنَّ هَـٰذِهِ تَذْكِرَةٌ ۖ فَمَن شَاءَ اتَّخَذَ إِلَىٰ رَبِّهِ سَبِيلًا"],[20," ۞ إِنَّ رَبَّكَ يَعْلَمُ أَنَّكَ تَقُومُ أَدْنَىٰ مِن ثُلُثَيِ اللَّيْلِ وَنِصْفَهُ وَثُلُثَهُ وَطَائِفَةٌ مِّنَ الَّذِينَ مَعَكَ ۚ وَاللَّهُ يُقَدِّرُ اللَّيْلَ وَالنَّهَارَ ۚ عَلِمَ أَن لَّن تُحْصُوهُ فَتَابَ عَلَيْكُمْ ۖ فَاقْرَءُوا مَا تَيَسَّرَ مِنَ الْقُرْآنِ ۚ عَلِمَ أَن سَيَكُونُ مِنكُم مَّرْضَىٰ ۙ وَآخَرُونَ يَضْرِبُونَ فِي الْأَرْضِ يَبْتَغُونَ مِن فَضْلِ اللَّهِ ۙ وَآخَرُونَ يُقَاتِلُونَ فِي سَبِيلِ اللَّهِ ۖ فَاقْرَءُوا مَا تَيَسَّرَ مِنْهُ ۚ وَأَقِيمُوا الصَّلَاةَ وَآتُوا الزَّكَاةَ وَأَقْرِضُوا اللَّهَ قَرْضًا حَسَنًا ۚ وَمَا تُقَدِّمُوا لِأَنفُسِكُم مِّنْ خَيْرٍ تَجِدُوهُ عِندَ اللَّهِ هُوَ خَيْرًا وَأَعْظَمَ أَجْرًا ۚ وَاسْتَغْفِرُوا اللَّهَ ۖ إِنَّ اللَّهَ غَفُورٌ رَّحِيمٌ"]]
|
1
src/json/ar/74.json
Normal file
1
src/json/ar/74.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"يَا أَيُّهَا الْمُدَّثِّرُ"],[2,"قُمْ فَأَنذِرْ"],[3,"وَرَبَّكَ فَكَبِّرْ"],[4,"وَثِيَابَكَ فَطَهِّرْ"],[5,"وَالرُّجْزَ فَاهْجُرْ"],[6,"وَلَا تَمْنُن تَسْتَكْثِرُ"],[7,"وَلِرَبِّكَ فَاصْبِرْ"],[8,"فَإِذَا نُقِرَ فِي النَّاقُورِ"],[9,"فَذَٰلِكَ يَوْمَئِذٍ يَوْمٌ عَسِيرٌ"],[10,"عَلَى الْكَافِرِينَ غَيْرُ يَسِيرٍ"],[11,"ذَرْنِي وَمَنْ خَلَقْتُ وَحِيدًا"],[12,"وَجَعَلْتُ لَهُ مَالًا مَّمْدُودًا"],[13,"وَبَنِينَ شُهُودًا"],[14,"وَمَهَّدتُّ لَهُ تَمْهِيدًا"],[15,"ثُمَّ يَطْمَعُ أَنْ أَزِيدَ"],[16,"كَلَّا ۖ إِنَّهُ كَانَ لِآيَاتِنَا عَنِيدًا"],[17,"سَأُرْهِقُهُ صَعُودًا"],[18,"إِنَّهُ فَكَّرَ وَقَدَّرَ"],[19,"فَقُتِلَ كَيْفَ قَدَّرَ"],[20,"ثُمَّ قُتِلَ كَيْفَ قَدَّرَ"],[21,"ثُمَّ نَظَرَ"],[22,"ثُمَّ عَبَسَ وَبَسَرَ"],[23,"ثُمَّ أَدْبَرَ وَاسْتَكْبَرَ"],[24,"فَقَالَ إِنْ هَـٰذَا إِلَّا سِحْرٌ يُؤْثَرُ"],[25,"إِنْ هَـٰذَا إِلَّا قَوْلُ الْبَشَرِ"],[26,"سَأُصْلِيهِ سَقَرَ"],[27,"وَمَا أَدْرَاكَ مَا سَقَرُ"],[28,"لَا تُبْقِي وَلَا تَذَرُ"],[29,"لَوَّاحَةٌ لِّلْبَشَرِ"],[30,"عَلَيْهَا تِسْعَةَ عَشَرَ"],[31,"وَمَا جَعَلْنَا أَصْحَابَ النَّارِ إِلَّا مَلَائِكَةً ۙ وَمَا جَعَلْنَا عِدَّتَهُمْ إِلَّا فِتْنَةً لِّلَّذِينَ كَفَرُوا لِيَسْتَيْقِنَ الَّذِينَ أُوتُوا الْكِتَابَ وَيَزْدَادَ الَّذِينَ آمَنُوا إِيمَانًا ۙ وَلَا يَرْتَابَ الَّذِينَ أُوتُوا الْكِتَابَ وَالْمُؤْمِنُونَ ۙ وَلِيَقُولَ الَّذِينَ فِي قُلُوبِهِم مَّرَضٌ وَالْكَافِرُونَ مَاذَا أَرَادَ اللَّهُ بِهَـٰذَا مَثَلًا ۚ كَذَٰلِكَ يُضِلُّ اللَّهُ مَن يَشَاءُ وَيَهْدِي مَن يَشَاءُ ۚ وَمَا يَعْلَمُ جُنُودَ رَبِّكَ إِلَّا هُوَ ۚ وَمَا هِيَ إِلَّا ذِكْرَىٰ لِلْبَشَرِ"],[32,"كَلَّا وَالْقَمَرِ"],[33,"وَاللَّيْلِ إِذْ أَدْبَرَ"],[34,"وَالصُّبْحِ إِذَا أَسْفَرَ"],[35,"إِنَّهَا لَإِحْدَى الْكُبَرِ"],[36,"نَذِيرًا لِّلْبَشَرِ"],[37,"لِمَن شَاءَ مِنكُمْ أَن يَتَقَدَّمَ أَوْ يَتَأَخَّرَ"],[38,"كُلُّ نَفْسٍ بِمَا كَسَبَتْ رَهِينَةٌ"],[39,"إِلَّا أَصْحَابَ الْيَمِينِ"],[40,"فِي جَنَّاتٍ يَتَسَاءَلُونَ"],[41,"عَنِ الْمُجْرِمِينَ"],[42,"مَا سَلَكَكُمْ فِي سَقَرَ"],[43,"قَالُوا لَمْ نَكُ مِنَ الْمُصَلِّينَ"],[44,"وَلَمْ نَكُ نُطْعِمُ الْمِسْكِينَ"],[45,"وَكُنَّا نَخُوضُ مَعَ الْخَائِضِينَ"],[46,"وَكُنَّا نُكَذِّبُ بِيَوْمِ الدِّينِ"],[47,"حَتَّىٰ أَتَانَا الْيَقِينُ"],[48,"فَمَا تَنفَعُهُمْ شَفَاعَةُ الشَّافِعِينَ"],[49,"فَمَا لَهُمْ عَنِ التَّذْكِرَةِ مُعْرِضِينَ"],[50,"كَأَنَّهُمْ حُمُرٌ مُّسْتَنفِرَةٌ"],[51,"فَرَّتْ مِن قَسْوَرَةٍ"],[52,"بَلْ يُرِيدُ كُلُّ امْرِئٍ مِّنْهُمْ أَن يُؤْتَىٰ صُحُفًا مُّنَشَّرَةً"],[53,"كَلَّا ۖ بَل لَّا يَخَافُونَ الْآخِرَةَ"],[54,"كَلَّا إِنَّهُ تَذْكِرَةٌ"],[55,"فَمَن شَاءَ ذَكَرَهُ"],[56,"وَمَا يَذْكُرُونَ إِلَّا أَن يَشَاءَ اللَّهُ ۚ هُوَ أَهْلُ التَّقْوَىٰ وَأَهْلُ الْمَغْفِرَةِ"]]
|
1
src/json/ar/75.json
Normal file
1
src/json/ar/75.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"لَا أُقْسِمُ بِيَوْمِ الْقِيَامَةِ"],[2,"وَلَا أُقْسِمُ بِالنَّفْسِ اللَّوَّامَةِ"],[3,"أَيَحْسَبُ الْإِنسَانُ أَلَّن نَّجْمَعَ عِظَامَهُ"],[4,"بَلَىٰ قَادِرِينَ عَلَىٰ أَن نُّسَوِّيَ بَنَانَهُ"],[5,"بَلْ يُرِيدُ الْإِنسَانُ لِيَفْجُرَ أَمَامَهُ"],[6,"يَسْأَلُ أَيَّانَ يَوْمُ الْقِيَامَةِ"],[7,"فَإِذَا بَرِقَ الْبَصَرُ"],[8,"وَخَسَفَ الْقَمَرُ"],[9,"وَجُمِعَ الشَّمْسُ وَالْقَمَرُ"],[10,"يَقُولُ الْإِنسَانُ يَوْمَئِذٍ أَيْنَ الْمَفَرُّ"],[11,"كَلَّا لَا وَزَرَ"],[12,"إِلَىٰ رَبِّكَ يَوْمَئِذٍ الْمُسْتَقَرُّ"],[13,"يُنَبَّأُ الْإِنسَانُ يَوْمَئِذٍ بِمَا قَدَّمَ وَأَخَّرَ"],[14,"بَلِ الْإِنسَانُ عَلَىٰ نَفْسِهِ بَصِيرَةٌ"],[15,"وَلَوْ أَلْقَىٰ مَعَاذِيرَهُ"],[16,"لَا تُحَرِّكْ بِهِ لِسَانَكَ لِتَعْجَلَ بِهِ"],[17,"إِنَّ عَلَيْنَا جَمْعَهُ وَقُرْآنَهُ"],[18,"فَإِذَا قَرَأْنَاهُ فَاتَّبِعْ قُرْآنَهُ"],[19,"ثُمَّ إِنَّ عَلَيْنَا بَيَانَهُ"],[20,"كَلَّا بَلْ تُحِبُّونَ الْعَاجِلَةَ"],[21,"وَتَذَرُونَ الْآخِرَةَ"],[22,"وُجُوهٌ يَوْمَئِذٍ نَّاضِرَةٌ"],[23,"إِلَىٰ رَبِّهَا نَاظِرَةٌ"],[24,"وَوُجُوهٌ يَوْمَئِذٍ بَاسِرَةٌ"],[25,"تَظُنُّ أَن يُفْعَلَ بِهَا فَاقِرَةٌ"],[26,"كَلَّا إِذَا بَلَغَتِ التَّرَاقِيَ"],[27,"وَقِيلَ مَنْ ۜ رَاقٍ"],[28,"وَظَنَّ أَنَّهُ الْفِرَاقُ"],[29,"وَالْتَفَّتِ السَّاقُ بِالسَّاقِ"],[30,"إِلَىٰ رَبِّكَ يَوْمَئِذٍ الْمَسَاقُ"],[31,"فَلَا صَدَّقَ وَلَا صَلَّىٰ"],[32,"وَلَـٰكِن كَذَّبَ وَتَوَلَّىٰ"],[33,"ثُمَّ ذَهَبَ إِلَىٰ أَهْلِهِ يَتَمَطَّىٰ"],[34,"أَوْلَىٰ لَكَ فَأَوْلَىٰ"],[35,"ثُمَّ أَوْلَىٰ لَكَ فَأَوْلَىٰ"],[36,"أَيَحْسَبُ الْإِنسَانُ أَن يُتْرَكَ سُدًى"],[37,"أَلَمْ يَكُ نُطْفَةً مِّن مَّنِيٍّ يُمْنَىٰ"],[38,"ثُمَّ كَانَ عَلَقَةً فَخَلَقَ فَسَوَّىٰ"],[39,"فَجَعَلَ مِنْهُ الزَّوْجَيْنِ الذَّكَرَ وَالْأُنثَىٰ"],[40,"أَلَيْسَ ذَٰلِكَ بِقَادِرٍ عَلَىٰ أَن يُحْيِيَ الْمَوْتَىٰ"]]
|
1
src/json/ar/76.json
Normal file
1
src/json/ar/76.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"هَلْ أَتَىٰ عَلَى الْإِنسَانِ حِينٌ مِّنَ الدَّهْرِ لَمْ يَكُن شَيْئًا مَّذْكُورًا"],[2,"إِنَّا خَلَقْنَا الْإِنسَانَ مِن نُّطْفَةٍ أَمْشَاجٍ نَّبْتَلِيهِ فَجَعَلْنَاهُ سَمِيعًا بَصِيرًا"],[3,"إِنَّا هَدَيْنَاهُ السَّبِيلَ إِمَّا شَاكِرًا وَإِمَّا كَفُورًا"],[4,"إِنَّا أَعْتَدْنَا لِلْكَافِرِينَ سَلَاسِلَ وَأَغْلَالًا وَسَعِيرًا"],[5,"إِنَّ الْأَبْرَارَ يَشْرَبُونَ مِن كَأْسٍ كَانَ مِزَاجُهَا كَافُورًا"],[6,"عَيْنًا يَشْرَبُ بِهَا عِبَادُ اللَّهِ يُفَجِّرُونَهَا تَفْجِيرًا"],[7,"يُوفُونَ بِالنَّذْرِ وَيَخَافُونَ يَوْمًا كَانَ شَرُّهُ مُسْتَطِيرًا"],[8,"وَيُطْعِمُونَ الطَّعَامَ عَلَىٰ حُبِّهِ مِسْكِينًا وَيَتِيمًا وَأَسِيرًا"],[9,"إِنَّمَا نُطْعِمُكُمْ لِوَجْهِ اللَّهِ لَا نُرِيدُ مِنكُمْ جَزَاءً وَلَا شُكُورًا"],[10,"إِنَّا نَخَافُ مِن رَّبِّنَا يَوْمًا عَبُوسًا قَمْطَرِيرًا"],[11,"فَوَقَاهُمُ اللَّهُ شَرَّ ذَٰلِكَ الْيَوْمِ وَلَقَّاهُمْ نَضْرَةً وَسُرُورًا"],[12,"وَجَزَاهُم بِمَا صَبَرُوا جَنَّةً وَحَرِيرًا"],[13,"مُّتَّكِئِينَ فِيهَا عَلَى الْأَرَائِكِ ۖ لَا يَرَوْنَ فِيهَا شَمْسًا وَلَا زَمْهَرِيرًا"],[14,"وَدَانِيَةً عَلَيْهِمْ ظِلَالُهَا وَذُلِّلَتْ قُطُوفُهَا تَذْلِيلًا"],[15,"وَيُطَافُ عَلَيْهِم بِآنِيَةٍ مِّن فِضَّةٍ وَأَكْوَابٍ كَانَتْ قَوَارِيرَا"],[16,"قَوَارِيرَ مِن فِضَّةٍ قَدَّرُوهَا تَقْدِيرًا"],[17,"وَيُسْقَوْنَ فِيهَا كَأْسًا كَانَ مِزَاجُهَا زَنجَبِيلًا"],[18,"عَيْنًا فِيهَا تُسَمَّىٰ سَلْسَبِيلًا"],[19," ۞ وَيَطُوفُ عَلَيْهِمْ وِلْدَانٌ مُّخَلَّدُونَ إِذَا رَأَيْتَهُمْ حَسِبْتَهُمْ لُؤْلُؤًا مَّنثُورًا"],[20,"وَإِذَا رَأَيْتَ ثَمَّ رَأَيْتَ نَعِيمًا وَمُلْكًا كَبِيرًا"],[21,"عَالِيَهُمْ ثِيَابُ سُندُسٍ خُضْرٌ وَإِسْتَبْرَقٌ ۖ وَحُلُّوا أَسَاوِرَ مِن فِضَّةٍ وَسَقَاهُمْ رَبُّهُمْ شَرَابًا طَهُورًا"],[22,"إِنَّ هَـٰذَا كَانَ لَكُمْ جَزَاءً وَكَانَ سَعْيُكُم مَّشْكُورًا"],[23,"إِنَّا نَحْنُ نَزَّلْنَا عَلَيْكَ الْقُرْآنَ تَنزِيلًا"],[24,"فَاصْبِرْ لِحُكْمِ رَبِّكَ وَلَا تُطِعْ مِنْهُمْ آثِمًا أَوْ كَفُورًا"],[25,"وَاذْكُرِ اسْمَ رَبِّكَ بُكْرَةً وَأَصِيلًا"],[26,"وَمِنَ اللَّيْلِ فَاسْجُدْ لَهُ وَسَبِّحْهُ لَيْلًا طَوِيلًا"],[27,"إِنَّ هَـٰؤُلَاءِ يُحِبُّونَ الْعَاجِلَةَ وَيَذَرُونَ وَرَاءَهُمْ يَوْمًا ثَقِيلًا"],[28,"نَّحْنُ خَلَقْنَاهُمْ وَشَدَدْنَا أَسْرَهُمْ ۖ وَإِذَا شِئْنَا بَدَّلْنَا أَمْثَالَهُمْ تَبْدِيلًا"],[29,"إِنَّ هَـٰذِهِ تَذْكِرَةٌ ۖ فَمَن شَاءَ اتَّخَذَ إِلَىٰ رَبِّهِ سَبِيلًا"],[30,"وَمَا تَشَاءُونَ إِلَّا أَن يَشَاءَ اللَّهُ ۚ إِنَّ اللَّهَ كَانَ عَلِيمًا حَكِيمًا"],[31,"يُدْخِلُ مَن يَشَاءُ فِي رَحْمَتِهِ ۚ وَالظَّالِمِينَ أَعَدَّ لَهُمْ عَذَابًا أَلِيمًا"]]
|
1
src/json/ar/77.json
Normal file
1
src/json/ar/77.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[1,"وَالْمُرْسَلَاتِ عُرْفًا"],[2,"فَالْعَاصِفَاتِ عَصْفًا"],[3,"وَالنَّاشِرَاتِ نَشْرًا"],[4,"فَالْفَارِقَاتِ فَرْقًا"],[5,"فَالْمُلْقِيَاتِ ذِكْرًا"],[6,"عُذْرًا أَوْ نُذْرًا"],[7,"إِنَّمَا تُوعَدُونَ لَوَاقِعٌ"],[8,"فَإِذَا النُّجُومُ طُمِسَتْ"],[9,"وَإِذَا السَّمَاءُ فُرِجَتْ"],[10,"وَإِذَا الْجِبَالُ نُسِفَتْ"],[11,"وَإِذَا الرُّسُلُ أُقِّتَتْ"],[12,"لِأَيِّ يَوْمٍ أُجِّلَتْ"],[13,"لِيَوْمِ الْفَصْلِ"],[14,"وَمَا أَدْرَاكَ مَا يَوْمُ الْفَصْلِ"],[15,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[16,"أَلَمْ نُهْلِكِ الْأَوَّلِينَ"],[17,"ثُمَّ نُتْبِعُهُمُ الْآخِرِينَ"],[18,"كَذَٰلِكَ نَفْعَلُ بِالْمُجْرِمِينَ"],[19,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[20,"أَلَمْ نَخْلُقكُّم مِّن مَّاءٍ مَّهِينٍ"],[21,"فَجَعَلْنَاهُ فِي قَرَارٍ مَّكِينٍ"],[22,"إِلَىٰ قَدَرٍ مَّعْلُومٍ"],[23,"فَقَدَرْنَا فَنِعْمَ الْقَادِرُونَ"],[24,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[25,"أَلَمْ نَجْعَلِ الْأَرْضَ كِفَاتًا"],[26,"أَحْيَاءً وَأَمْوَاتًا"],[27,"وَجَعَلْنَا فِيهَا رَوَاسِيَ شَامِخَاتٍ وَأَسْقَيْنَاكُم مَّاءً فُرَاتًا"],[28,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[29,"انطَلِقُوا إِلَىٰ مَا كُنتُم بِهِ تُكَذِّبُونَ"],[30,"انطَلِقُوا إِلَىٰ ظِلٍّ ذِي ثَلَاثِ شُعَبٍ"],[31,"لَّا ظَلِيلٍ وَلَا يُغْنِي مِنَ اللَّهَبِ"],[32,"إِنَّهَا تَرْمِي بِشَرَرٍ كَالْقَصْرِ"],[33,"كَأَنَّهُ جِمَالَتٌ صُفْرٌ"],[34,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[35,"هَـٰذَا يَوْمُ لَا يَنطِقُونَ"],[36,"وَلَا يُؤْذَنُ لَهُمْ فَيَعْتَذِرُونَ"],[37,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[38,"هَـٰذَا يَوْمُ الْفَصْلِ ۖ جَمَعْنَاكُمْ وَالْأَوَّلِينَ"],[39,"فَإِن كَانَ لَكُمْ كَيْدٌ فَكِيدُونِ"],[40,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[41,"إِنَّ الْمُتَّقِينَ فِي ظِلَالٍ وَعُيُونٍ"],[42,"وَفَوَاكِهَ مِمَّا يَشْتَهُونَ"],[43,"كُلُوا وَاشْرَبُوا هَنِيئًا بِمَا كُنتُمْ تَعْمَلُونَ"],[44,"إِنَّا كَذَٰلِكَ نَجْزِي الْمُحْسِنِينَ"],[45,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[46,"كُلُوا وَتَمَتَّعُوا قَلِيلًا إِنَّكُم مُّجْرِمُونَ"],[47,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[48,"وَإِذَا قِيلَ لَهُمُ ارْكَعُوا لَا يَرْكَعُونَ"],[49,"وَيْلٌ يَوْمَئِذٍ لِّلْمُكَذِّبِينَ"],[50,"فَبِأَيِّ حَدِيثٍ بَعْدَهُ يُؤْمِنُونَ"]]
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue