SHOWING: First 60
msgstr "سيتم اختيار الصفقة التي تقدم UTXO يحتوي على أقدم ساتوشي، أي الذي يحمل أقل رقم، من بين جميع الـ UTXO المقدمة كالفائزة."
#: src\bounty/1.md:10
msgid "The bounty is open for submissions until block 753984—the first block of difficulty adjustment period 374. Submissions included in block 753984 or later will not be considered."
msgstr "الجائزة متاحة للتقديم حتى الكتلة رقم 753984—، وهي أول كتلة في فترة ضبط الصعوبة رقم 374. لن يتم النظر في التقديمات المدرجة في الكتلة رقم 753984 أو فيما بعدها ."
#: src\bounty/1.md:17
msgid "200,000 sats"
msgstr ""
#: src\bounty/1.md:22
msgid "[`145Z7PFHyVrwiMWwEcUmDgFbmUbQSU9aap`](https://mempool.space/address/145Z7PFHyVrwiMWwEcUmDgFbmUbQSU9aap)"
msgstr ""
#: src\bounty/1.md:27
msgid "Claimed by [@ordinalsindex](https://twitter.com/rodarmor/status/1569883266508853251)!"
msgstr "تم الاستحواذ عليها من قِبَل [@ordinalsindex](https://twitter.com/rodarmor/status/1569883266508853251)!"
#: src\bounty/2.md:1
msgid "Ordinal Bounty 2"
msgstr "جائزة أوردينال 2"
#: src\bounty/2.md:7
#45,003,240textmsgstr "ملف `frequency.tsv` هو ملف يحتوي على قيم مفصولة بعلامات التبويب. العمود الأول هو الكلمة، والعمود الثاني هو عدد مرات ظهورها في النص. القيم مرتبة من أقل تكرار إلى أعلى تكرار."
#: src\bounty/3.md:29
msgid "`frequency.tsv` was compiled using [this program](https://github.com/casey/onegrams)."
msgstr "تم تجميع `frequency.tsv` باستخدام هذا [this program](https://github.com/casey/onegrams)."
#: src\bounty/3.md:32
msgid "To search an `ord` wallet for sats with a name in `frequency.tsv`, use the following [`ord`](https://github.com/ordinals/ord) command:"
msgstr "للبحث في محفظة ord عن ساتوشي بأسماء موجودة في `frequency.tsv`، استخدم أمر [`ord`](https://github.com/ordinals/ord) التالي:"
#: src\bounty/3.md:35
msgid ""
"```\n"
"ord wallet sats --tsv frequency.tsv\n"
"```"
msgstr ""
#: src\bounty/3.md:39
msgid "This command requires the sat index, so `--index-sats` must be passed to ord when first creating the index."
msgstr "هذا الأمر يتطلب فهرسة الساتوشي، لذا يجب تمرير`index-sats--` إلى ord عند إنشاء الفهرس للمرة الأولى."
#45,003,131textconsidered to have an implicit input equal in size to the subsidy, followed by
an input for every fee-paying transaction in the block, in the order that those
transactions appear in the block. The implicit subsidy input carries the
block's newly created sats. The implicit fee inputs carry the sats that were
paid as fees in the block's transactions.
Underpaying the subsidy does not change the ordinal numbers of sats mined
in subsequent blocks. Ordinals depend only on how many sats could have been
mined, not how many actually were.
=== Specification ===
Sats are numbered and transferred with the following algorithm:
<pre>
# subsidy of block at given height
def subsidy(height):
return 50 * 100_000_000 >> height // 210_000
# first ordinal of subsidy of block at given height
def first_ordinal(height):
start = 0
for height in range(height):
start += subsidy(height)
return start
# assign ordinals in given block
def assign_ordinals(block):
first = first_ordinal(block.height)
last = first + subsidy(block.height)#45,003,129text
#: src\bounty/3.md:1
msgid "Ordinal Bounty 3"
msgstr "جائزة أوردينال 3"
#: src\bounty/3.md:7
msgid ""
"Ordinal bounty 3 has two parts, both of which are based on _ordinal names_. Ordinal names are a modified base-26 encoding of ordinal numbers. To avoid locking short names inside the unspendable genesis block coinbase reward, ordinal names get _shorter_ as the ordinal "
"number gets _longer_. The name of sat 0, the first sat to be mined is `nvtdijuwxlp` and the name of sat 2,099,999,997,689,999, the last sat to be mined, is `a`."
msgstr ""
"جائزة أوردينال 3 لها جزأين، وكليهما مستندان إلى أسماء أوردينالس._أسماء أوردينالس_. هي ترميز معدل بنظام الـ 26 استنادًا إلى أرقامهم . لتجنب قفل الأسماء القصيرة داخل مكافأة كوينبيس genesis block التي لا يمكن إنفاقها، تقصر أسماء Ordinal كلما زاد الرقم Ordinal في الطول. اسم "
"السات 0، وهو أول سات تم تعدينه، هو `nvtdijuwxlp`، واسم سات 2,099,999,997,689,999، وهو آخر سات سيتم تعدينه، هو `a`."
#: src\bounty/3.md:14
msgid "The bounty is open for submissions until block 840000—the first block after the fourth halvening. Submissions included in block 840000 or later will not be considered."
#45,001,737text