unstructured/examples/training/0-Core Concepts.ipynb

1594 lines
159 KiB
Plaintext
Raw Normal View History

{
"cells": [
{
"cell_type": "markdown",
"id": "2db148f4",
"metadata": {},
"source": [
"# Unstructured Core Concepts\n",
"\n",
"The goal of this notebook is to introduce users to the core concepts in the `unstructured` library. At the conclusion of this notebook, you should be able to do the following:\n",
"\n",
"- [Partition a document.](#partition)\n",
"- [Understand how documents are structured in the `unstructured` library.](#elements)\n",
"- [Convert the document to a dictionary.](#dict)"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "a326d600",
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"import pathlib\n",
"\n",
"DIRECTORY = os.path.abspath(\"\")\n",
"EXAMPLE_DOCS_DIRECTORY = os.path.join(DIRECTORY, \"..\", \"..\", \"example-docs\")"
]
},
{
"cell_type": "markdown",
"id": "e46cc852",
"metadata": {},
"source": [
"## Partitioning a document <a id=\"partition\"></a>\n",
"\n",
"In this section, we'll cut right to the chase and get to the most important part of the library: partitioning a document. The goal of document partitioning is to read in a source document, split the document into sections, categorize those sections, and extract the text associated with those sections. Depending on the document type, `unstructured` uses different methods for partitioning a document. We'll cover those in a later training notebook. For now, we'll use the simplest API in the library, the `partition` function. The `partition` function will detect the filetype of the source document and route it to the appropriate partitioning function. You can try out the `partition` function by running the cell below."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "015a9385",
"metadata": {},
"outputs": [],
"source": [
"from unstructured.partition.auto import partition\n",
"\n",
"filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, \"layout-parser-paper-fast.pdf\")\n",
"elements = partition(filename=filename)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "a4e7a5bc",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[<unstructured.documents.elements.Title at 0x28894a6a0>,\n",
" <unstructured.documents.elements.NarrativeText at 0x1034476a0>,\n",
" <unstructured.documents.elements.ListItem at 0x1036e5100>,\n",
" <unstructured.documents.elements.ListItem at 0x16e1e5f10>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd623d0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd625b0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd625e0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd62370>,\n",
" <unstructured.documents.elements.NarrativeText at 0x1036c76d0>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bd62520>,\n",
" <unstructured.documents.elements.Title at 0x16bd62310>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bd624c0>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bd62460>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bd62040>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bd620a0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd620d0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd62280>,\n",
" <unstructured.documents.elements.ListItem at 0x16bd62190>,\n",
" <unstructured.documents.elements.ListItem at 0x16ba8ec10>,\n",
" <unstructured.documents.elements.ListItem at 0x16bbc35e0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bbc3430>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bd62070>,\n",
" <unstructured.documents.elements.NarrativeText at 0x16bbc3760>]"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"elements"
]
},
{
"cell_type": "markdown",
"id": "e8009e7b",
"metadata": {},
"source": [
"You can also partition a document from a file-like object instead of a filename as follows:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "dd54b5b0",
"metadata": {},
"outputs": [],
"source": [
"with open(filename, \"rb\") as f:\n",
" elements = partition(file=f)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "97a7274b",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[<unstructured.documents.elements.Title at 0x17ab3cc70>,\n",
" <unstructured.documents.elements.NarrativeText at 0x1030268b0>,\n",
" <unstructured.documents.elements.ListItem at 0x16b33e0a0>,\n",
" <unstructured.documents.elements.ListItem at 0x2889790a0>,\n",
" <unstructured.documents.elements.ListItem at 0x2889793d0>,\n",
" <unstructured.documents.elements.ListItem at 0x2889794f0>,\n",
" <unstructured.documents.elements.ListItem at 0x288979220>,\n",
" <unstructured.documents.elements.ListItem at 0x288979430>,\n",
" <unstructured.documents.elements.NarrativeText at 0x1375d3190>,\n",
" <unstructured.documents.elements.NarrativeText at 0x288979280>,\n",
" <unstructured.documents.elements.Title at 0x2889792e0>,\n",
" <unstructured.documents.elements.NarrativeText at 0x288979370>,\n",
" <unstructured.documents.elements.NarrativeText at 0x288979310>,\n",
" <unstructured.documents.elements.NarrativeText at 0x288979160>,\n",
" <unstructured.documents.elements.NarrativeText at 0x288979070>,\n",
" <unstructured.documents.elements.ListItem at 0x1772dde80>,\n",
" <unstructured.documents.elements.ListItem at 0x1772ddf10>,\n",
" <unstructured.documents.elements.ListItem at 0x1772ddfa0>,\n",
" <unstructured.documents.elements.ListItem at 0x16bb6ee50>,\n",
" <unstructured.documents.elements.ListItem at 0x1771086d0>,\n",
" <unstructured.documents.elements.ListItem at 0x177108430>,\n",
" <unstructured.documents.elements.NarrativeText at 0x1772dd0a0>,\n",
" <unstructured.documents.elements.NarrativeText at 0x1771087f0>]"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"elements"
]
},
{
"cell_type": "markdown",
"id": "832144c6",
"metadata": {},
"source": [
"#### Troubleshooting Note:\n",
"\n",
"- Filetype detection in the `partition` function relies on the `libmagic` library. If you don't have that installed on your system, `partition` will throw an error.\n",
"- For `partition` to work on PDFs and images, you'll need to have installed `unstructured[local-inference]` along with the `detectron2` model. See the `README` for a full list of install instructions."
]
},
{
"cell_type": "markdown",
"id": "d5d63fc9",
"metadata": {},
"source": [
"## `unstructured` document elements <a id=\"elements\"><a>\n",
"\n",
"When we partition a document, the output is a list of document `Element` objects. These element objects represent different components of the source document. Currently, the `unstructured` library supports the following element types:\n",
" \n",
"- `Element`\n",
" - `Text`\n",
" - `FigureCaption`\n",
" - `NarrativeText`\n",
" - `ListItem`\n",
" - `Title`\n",
" - `Address`\n",
" - `CheckBox`\n",
" - `Image`\n",
" - `PageBreak`\n",
" \n",
"Other element types that we will add in the future include tables and figures. Different partitioning functions use different methods for determining the element type and extracting the associated content. Document elements have a `str` representation. You can print them using the snippet below."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "76a2e17a",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"UNITED STATES\n",
"\n",
"\n",
"SECURITIES AND EXCHANGE COMMISSION\n",
"\n",
"\n",
"Washington, D.C. 20549\n",
"\n",
"\n",
"FORM 10-K\n",
"\n",
"\n",
"ANNUAL REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934\n",
"\n",
"\n"
]
}
],
"source": [
"filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, \"example-10k.html\")\n",
"elements = partition(filename=filename)\n",
"\n",
"for element in elements[:5]:\n",
" print(element)\n",
" print(\"\\n\")"
]
},
{
"cell_type": "markdown",
"id": "9d8ab7d6",
"metadata": {},
"source": [
"One helpful aspect of document elements is that they allow you to cut a document down to the elements that you need for your particular use case. For example, if you're training a summarization model you may only want to include narrative text for model training. You'll notice that the output above includes a lot of titles and other content that may not be suitable for a summarization model. The following code shows how you can limit your output to only narrative text with at least two sentences. As you can see, the output now only contains narrative text."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "96c11b32",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Indicate by check mark whether the registrant has filed a report on and attestation to its managements assessment of the effectiveness of its internal control over financial reporting under Section 404(b) of the Sarbanes-Oxley Act (15 U.S.C. 7262(b)) by the registered public accounting firm that prepared or issued its audit report.  ☐\n",
"\n",
"\n",
"This report contains statements that do not relate to historical or current facts but are “forward-looking” statements. These statements relate to analyses and other information based on forecasts of future results and estimates of amounts not yet determinable. These statements may also relate to future events or trends, our future prospects and proposed new products, services, developments or business strategies, among other things. These statements can generally (although not always) be identified by their use of terms and phrases such as anticipate, appear, believe, could, would, estimate, expect, indicate, intent, may, plan, predict, project, pursue, will continue and other similar terms and phrases, as well as the use of the future tense.\n",
"\n",
"\n",
"Actual results could differ materially from those expressed or implied in our forward-looking statements. Our future financial condition and results of operations, as well as any forward-looking statements, are subject to change and to inherent known and unknown risks and uncertainties. You should not assume at any point in the future that the forward-looking statements in this report are still valid. We do not intend, and undertake no obligation, to update our forward-looking statements to reflect future events or circumstances.\n",
"\n",
"\n"
]
}
],
"source": [
"from unstructured.documents.elements import NarrativeText\n",
"from unstructured.partition.text_type import sentence_count\n",
"\n",
"for element in elements[:100]:\n",
" if isinstance(element, NarrativeText) and sentence_count(element.text) > 2:\n",
" print(element)\n",
" print(\"\\n\")"
]
},
{
"cell_type": "markdown",
"id": "6b06a398",
"metadata": {},
"source": [
"## Converting to a dictionary <a id=\"dict\"></a>\n",
"\n",
"The final step in the process for most users is to convert the output to JSON. You can convert a list of document elements to a list of dictionaries using the `convert_to_dict` function. The workflow for using `convert_to_dict` appears below."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "45d5b5f4",
"metadata": {},
"outputs": [],
"source": [
"from unstructured.staging.base import convert_to_dict"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "5d13fc38",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[{'text': 'UNITED STATES', 'type': 'Title'},\n",
" {'text': 'SECURITIES AND EXCHANGE COMMISSION', 'type': 'Title'},\n",
" {'text': 'Washington, D.C. 20549', 'type': 'Title'},\n",
" {'text': 'FORM 10-K', 'type': 'Title'},\n",
" {'text': 'ANNUAL REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934',\n",
" 'type': 'Uncategorized'},\n",
" {'text': 'For the fiscal year ended\\xa0December\\xa031, 2021',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'TRANSITION REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934',\n",
" 'type': 'Uncategorized'},\n",
" {'text': 'For the transition period from\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0to',\n",
" 'type': 'Title'},\n",
" {'text': 'Commission file number:\\xa0000-30653', 'type': 'Title'},\n",
" {'text': 'Galaxy Gaming, Inc.', 'type': 'Title'},\n",
" {'text': '(Exact name of small business issuer as specified in its charter)',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Nevada', 'type': 'Title'},\n",
" {'text': '20-8143439', 'type': 'Uncategorized'},\n",
" {'text': '(State or other jurisdiction of incorporation or organization)',\n",
" 'type': 'Title'},\n",
" {'text': '(IRS Employer Identification No.)', 'type': 'Title'},\n",
" {'text': '6480 Cameron Street Ste. 305 Las Vegas, NV 89118',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '(Address of principal executive offices)', 'type': 'Title'},\n",
" {'text': '(702) 939-3254', 'type': 'Uncategorized'},\n",
" {'text': '(Registrants telephone number)', 'type': 'Title'},\n",
" {'text': 'Securities registered under Section\\xa012(b) of the Act:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Title of each class', 'type': 'Title'},\n",
" {'text': 'Trading symbol', 'type': 'Title'},\n",
" {'text': 'Name of exchange on which registered', 'type': 'NarrativeText'},\n",
" {'text': 'Common stock', 'type': 'Title'},\n",
" {'text': 'GLXZ', 'type': 'Uncategorized'},\n",
" {'text': 'OTCQB marketplace', 'type': 'Title'},\n",
" {'text': 'Indicate by check mark if the registrant is a well-known seasoned issuer, as defined in Rule 405 of the Securities Act.\\xa0\\xa0\\xa0\\xa0Yes\\xa0\\xa0☐\\xa0\\xa0\\xa0\\xa0No\\xa0\\xa0☑',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate by check mark if the registrant is not required to file reports pursuant to Section\\xa013 or Section\\xa015(d) of the Act. \\xa0\\xa0\\xa0\\xa0Yes\\xa0\\xa0☐\\xa0\\xa0\\xa0\\xa0No\\xa0\\xa0☑',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate by checkmark whether the registrant (1)\\xa0has filed all reports required to be filed by Section\\xa013 or 15(d) of the Securities Exchange Act of 1934 during the preceding 12 months (or for such shorter period that the registrant was required to file such reports), and (2)\\xa0has been subject to such filing requirements for the past 90 days.\\xa0\\xa0\\xa0\\xa0Yes\\xa0\\xa0☑\\xa0\\xa0\\xa0\\xa0No\\xa0\\xa0☐',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate by check mark whether the issuer has submitted electronically every Interactive Data File required to be submitted pursuant to Rule 405 of Regulation S-T (§232.405 of this chapter) during the preceding 12 months (or for such shorter period that the registrant was required to submit such files). \\xa0\\xa0\\xa0\\xa0Yes\\xa0\\xa0☑\\xa0\\xa0\\xa0\\xa0No\\xa0\\xa0☐',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate by check mark whether the registrant is a large accelerated filer, an accelerated filer, a non-accelerated filer, a smaller reporting company, or an emerging growth company. See the definitions of “large accelerated filer,” “accelerated filer,” “smaller reporting company,” and “emerging growth company” in Rule 12b-2 of the Exchange Act.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '☐ Accelerated filer', 'type': 'Title'},\n",
" {'text': '☐ Smaller reporting company', 'type': 'Title'},\n",
" {'text': 'Emerging growth Company', 'type': 'Title'},\n",
" {'text': 'If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standard provided pursuant to Section 13(a) of the Exchange Act.\\xa0\\xa0☐',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate by check mark whether the registrant has filed a report on and attestation to its managements assessment of the effectiveness of its internal control over financial reporting under Section 404(b) of the Sarbanes-Oxley Act (15 U.S.C. 7262(b)) by the registered public accounting firm that prepared or issued its audit report.\\xa0\\xa0☐',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate by check mark whether the registrant is a shell company (as defined in Rule 12b-2 of the Exchange Act).\\xa0\\xa0\\xa0\\xa0Yes\\xa0\\xa0☐\\xa0\\xa0\\xa0\\xa0No\\xa0\\xa0☑',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'State the aggregate market value of the voting and non-voting common equity held by non-affiliates computed by reference to the price at which the common equity was last sold, or the average bid and asked price of such common equity, as of the last business day of the registrants second fiscal quarter. $70,923,698.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Indicate the number of shares outstanding of each of the registrants classes of common stock, as of the latest practicable date: 23,718,968 common shares as of March 28, 2022.',\n",
" 'type': 'Uncategorized'},\n",
" {'text': 'GALAXY GAMING, INC.', 'type': 'Title'},\n",
" {'text': 'ANNUAL REPORT ON FORM 10-K FOR THE YEAR ENDED DECEMBER 31, 2021',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'TABLE OF CONTENTS', 'type': 'Title'},\n",
" {'text': 'PART I', 'type': 'Title'},\n",
" {'text': 'Item 1.', 'type': 'Title'},\n",
" {'text': 'Business', 'type': 'Title'},\n",
" {'text': 'Item 1A.', 'type': 'Title'},\n",
" {'text': 'Risk Factors', 'type': 'Title'},\n",
" {'text': 'Item 1B.', 'type': 'Title'},\n",
" {'text': 'Unresolved Staff Comments', 'type': 'Title'},\n",
" {'text': 'Item 2.', 'type': 'Title'},\n",
" {'text': 'Properties', 'type': 'Title'},\n",
" {'text': 'Item 3.', 'type': 'Title'},\n",
" {'text': 'Legal Proceedings', 'type': 'Title'},\n",
" {'text': 'Item 4.', 'type': 'Title'},\n",
" {'text': 'Mine Safety Disclosures', 'type': 'Title'},\n",
" {'text': 'PART II', 'type': 'Title'},\n",
" {'text': 'Item 5.', 'type': 'Title'},\n",
" {'text': 'Market for Registrants Common Equity and Related Stockholder Matters',\n",
" 'type': 'Title'},\n",
" {'text': '10', 'type': 'Uncategorized'},\n",
" {'text': 'Item 7.', 'type': 'Title'},\n",
" {'text': 'Managements Discussion and Analysis of Financial Condition and Results of Operations',\n",
" 'type': 'Title'},\n",
" {'text': '12', 'type': 'Uncategorized'},\n",
" {'text': 'Item 7A.', 'type': 'Title'},\n",
" {'text': 'Quantitative and Qualitative Disclosures about Market Risk',\n",
" 'type': 'Title'},\n",
" {'text': '14', 'type': 'Uncategorized'},\n",
" {'text': 'Item 8.', 'type': 'Title'},\n",
" {'text': 'Financial Statements and Supplementary Financial Information',\n",
" 'type': 'Title'},\n",
" {'text': '15', 'type': 'Uncategorized'},\n",
" {'text': 'Item 9.', 'type': 'Title'},\n",
" {'text': 'Changes in and Disagreements with Accountants on Accounting and Financial Disclosure',\n",
" 'type': 'Title'},\n",
" {'text': '35', 'type': 'Uncategorized'},\n",
" {'text': 'Item\\xa09A.', 'type': 'Title'},\n",
" {'text': 'Controls and Procedures', 'type': 'Title'},\n",
" {'text': '35', 'type': 'Uncategorized'},\n",
" {'text': 'Item 9B.', 'type': 'Title'},\n",
" {'text': 'Other Information', 'type': 'Title'},\n",
" {'text': '35', 'type': 'Uncategorized'},\n",
" {'text': 'PART III', 'type': 'Title'},\n",
" {'text': 'Item 10.', 'type': 'Title'},\n",
" {'text': 'Directors, Executive Officers and Corporate Governance',\n",
" 'type': 'Title'},\n",
" {'text': '36', 'type': 'Uncategorized'},\n",
" {'text': 'Item 11.', 'type': 'Title'},\n",
" {'text': 'Executive Compensation', 'type': 'Title'},\n",
" {'text': '39', 'type': 'Uncategorized'},\n",
" {'text': 'Item 12.', 'type': 'Title'},\n",
" {'text': 'Security Ownership of Certain Beneficial Owners and Management, and Related Stockholder Matters',\n",
" 'type': 'Title'},\n",
" {'text': '41', 'type': 'Uncategorized'},\n",
" {'text': 'Item 13.', 'type': 'Title'},\n",
" {'text': 'Certain Relationships and Related Transactions, and Director Independence',\n",
" 'type': 'Title'},\n",
" {'text': '41', 'type': 'Uncategorized'},\n",
" {'text': 'Item 14.', 'type': 'Title'},\n",
" {'text': 'Principal Accounting Fees and Services', 'type': 'Title'},\n",
" {'text': '41', 'type': 'Uncategorized'},\n",
" {'text': 'PART IV', 'type': 'Title'},\n",
" {'text': 'Item 15.', 'type': 'Title'},\n",
" {'text': 'Exhibits and Financial Statement Schedules', 'type': 'Title'},\n",
" {'text': '42', 'type': 'Uncategorized'},\n",
" {'text': 'SPECIAL NOTE REGARDING FORWARD-LOOKING STATEMENTS',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'This report contains statements that do not relate to historical or current facts but are “forward-looking” statements. These statements relate to analyses and other information based on forecasts of future results and estimates of amounts not yet determinable. These statements may also relate to future events or trends, our future prospects and proposed new products, services, developments or business strategies, among other things. These statements can generally (although not always) be identified by their use of terms and phrases such as anticipate, appear, believe, could, would, estimate, expect, indicate, intent, may, plan, predict, project, pursue, will continue and other similar terms and phrases, as well as the use of the future tense.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Actual results could differ materially from those expressed or implied in our forward-looking statements. Our future financial condition and results of operations, as well as any forward-looking statements, are subject to change and to inherent known and unknown risks and uncertainties. You should not assume at any point in the future that the forward-looking statements in this report are still valid. We do not intend, and undertake no obligation, to update our forward-looking statements to reflect future events or circumstances.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'PART I', 'type': 'Title'},\n",
" {'text': 'ITEM\\xa01.\\xa0BUSINESS', 'type': 'Title'},\n",
" {'text': 'BUSINESS', 'type': 'Title'},\n",
" {'text': 'Unless the context indicates otherwise, references to “Galaxy Gaming, Inc.,” “we,” “us,” “our,” or the “Company,” refer to Galaxy Gaming, Inc., a Nevada corporation (“Galaxy Gaming”).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We are an established global gaming company specializing in the design, development, acquisition, assembly, marketing and licensing of proprietary casino table games and associated technology, platforms and systems for the casino gaming industry. Casinos use our proprietary products and services to enhance their gaming operations and improve their profitability, productivity and security, as well as to offer popular cutting-edge gaming entertainment content and technology to their players. We market our products and services to online casinos worldwide and to land-based casino gaming companies in North America, the Caribbean, Central America, the United Kingdom, Europe and Africa and to cruise ship companies. We license our products and services for use solely in legalized gaming markets. We also license our content and distribute content from other companies to iGaming operators throughout the world.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Products and Services', 'type': 'Title'},\n",
" {'text': 'Proprietary Table Games. Casinos use Proprietary Table Games together with or in lieu of other games in the public domain (e.g. Blackjack, Craps, Roulette, etc.) because of their popularity with players and to increase profitability. Typically, Proprietary Table Games are grouped into two product types referred to as “Side Bets” and “Premium Games.” Side Bets are proprietary features and wagering options typically added to public domain games such as baccarat, pai gow poker, craps and blackjack table games. Examples of our Side Bets include 21+3®, Lucky Ladies® and Bonus Craps™. Premium Games are unique stand-alone games with their own set of rules and strategies. Examples of our Premium Games include Heads Up Hold em®, High Card Flush®, Cajun Stud® and Three Card Poker®. Generally, Premium Games generate higher revenue per table placement than the Side Bet games.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Enhanced Table Systems. Enhanced Table Systems are electronic enhancements used on casino table games to add to player appeal and to enhance game security. An example in this category is our Bonus Jackpot System (“BJS”), an advanced electronic system installed on gaming tables designed to collect data by detecting player wagers and other game activities. This information is processed and used to improve casino operations by evaluating game play, to improve dealer efficiency and to reward players through the offering of jackpots and other bonusing mechanisms. Typically, the BJS system includes an electronic video display, known as TableVision, which shows game information designed to generate player interest and to promote various aspects of the game. The BJS system can also be used to network numerous gaming tables together into a common system either within a casino or through the interconnection of multiple casinos, which we refer to as our Inter-Casino Link System. In 2022, we plan to introduce a new table system called Triton™. Triton is designed to be a platform on which we can build a suite of enhanced table game features and services, the first of which will be the progressive jackpot wagers currently provided by BJS. Triton is built using off-the-shelf electronic components and software in order to minimize field service issues.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'iGaming. On August 21, 2020, we completed the acquisition of 100% of the member interests in Progressive Games Partners, LLC (“PGP”). PGP holds the exclusive worldwide rights to a number of games titles (including ours) for relicensing to operators of online gaming systems principally in Europe, the United Kingdom, and, more recently, the United States. Prior to the acquisition, PGP had been the exclusive distributor of our games to the online gaming sector; by making the acquisition of PGP, we effectively eliminated the distributor fee that PGP charged us, and we now also receive the revenue PGP earns on the content of other licensors (to whom we pay a royalty fee). In many cases, these online operators provide “white label” gaming infrastructure for many separate online casino brands with the result that the content that PGP licenses can appear on hundreds of online gaming sites. PGPs contracts with online operators prohibit those operators from deploying the content in markets where it is not legal to do so.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Product Strategy. In the physical casino market, we have a “three-dimensional” growth strategy. First, we seek to increase the number of casinos we serve with our games. Second, within a casino, we seek to increase the number of tables on which we have placements. Our current product placements are concentrated around blackjack, and we have developed side bets and other game content to address other table game categories such as baccarat, roulette and craps. Finally, by adding our enhanced systems to tables that already have our content, we can increase the billable units per table. For example, on a blackjack table that has one of our side bets we can add a second side bet and a progressive jackpot for each side bet thereby increasing the billable units for that table from one to four. As of December 31, 2021, we served 515 casinos worldwide, had content on 4,500 tables in those casinos and had a total of 6,709 billable units in those casinos.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Our strategy in iGaming is similar in that it seeks to have our content on as many online tables as possible. However, the structure of the iGaming business is different in that many of our customers are iGaming platform providers that offer a turnkey online gaming solution to online operators who deploy those online offerings directly to the gaming player. To a lesser extent, we license our content to online operators who have their own platform and serve gaming customers directly. The online analog to a casino is called a “skin”',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'where a skin is a separately branded and marketed URL. Online operators often offer multiple skins targeting different markets and using different themes. Our strategy is 1) to have our content on as many skins as possible and 2) to have as many of our games as possible on each skin. As of December 31, 2021, we had content on',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'over', 'type': 'Title'},\n",
" {'text': '1,000', 'type': 'Uncategorized'},\n",
" {'text': 'skins worldwide and', 'type': 'NarrativeText'},\n",
" {'text': 'approximately four to six', 'type': 'Title'},\n",
" {'text': 'game placements on', 'type': 'Title'},\n",
" {'text': 'each of', 'type': 'Title'},\n",
" {'text': 'those skins.', 'type': 'Title'},\n",
" {'text': 'Finally, we expect that additional states in the U',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'will legalize online gaming, allowing our online clients to offer games to a significantly bigger audience.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Recurring Revenue and Gross Profit', 'type': 'Title'},\n",
" {'text': 'A majority of our clients contract with us to use our products and services on a month-to-month basis with typically a 3045 day termination notice requirement. We invoice our clients monthly, either in advance for unlimited use or in arrears for actual use, depending on the product or contract terms. Such recurring revenues accounted for substantially all of our total revenues in 2021 and 2020. Our license revenues have few direct costs thereby generating high gross profit margins. We do not report “gross profit” in our statements of operations included in this report. Instead, gross profit would be comparable to “revenues” minus “cost of ancillary products and assembled components,” both of which are presented in our statements of operations.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'For more information about our revenues, operating income and assets, see “Item 7. Managements Discussion and Analysis of Financial Condition and Results of Operations” and “Item 8. Financial Statements and Supplementary Financial Information” included in this report.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'STRATEGY', 'type': 'Title'},\n",
" {'text': 'Our long-term business strategy focuses on increasing our value to casino clients by offering them enhanced services and support, and by producing innovative products and game play methodologies that their players enjoy. We believe that by increasing the value of our products and services to clients, we can continue to build our recurring revenues in both existing and new markets. To achieve this objective, we employ the following strategies:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '•\\n\\nIncrease our per unit revenues by leveraging our Enhanced Table Systems;',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Expand our portfolio of services, products and technologies;',\n",
" 'type': 'ListItem'},\n",
" {'text': '•\\n\\nExpand the number of markets we serve;', 'type': 'ListItem'},\n",
" {'text': 'Increase our per unit revenues by leveraging our Enhanced Table Systems;',\n",
" 'type': 'ListItem'},\n",
" {'text': '•\\n\\nGrow our iGaming content and partner base; and',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Expand the number of markets we serve;', 'type': 'ListItem'},\n",
" {'text': '•\\n\\nPromote the use of our game content in adjacent gaming markets.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Grow our iGaming content and partner base; and',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Expand our portfolio of services, products and technologies. Our strategy is to be an important vendor to casino operators by offering a complete and comprehensive portfolio of services, games, products, systems, technologies and methodologies for casino table games. We continuously develop and/or seek to acquire new proprietary table games to complement our existing offerings and to extend our penetration of proprietary table games on the casino floor. We believe we have a significant opportunity to replicate the success we have had with blackjack side bets by developing content for the other significant public domain casino games of baccarat, roulette and craps.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Promote the use of our game content in adjacent gaming markets.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Expand our portfolio of services, products and technologies. Our strategy is to be an important vendor to casino operators by offering a complete and comprehensive portfolio of services, games, products, systems, technologies and methodologies for casino table games. We continuously develop and/or seek to acquire new proprietary table games to complement our existing offerings and to extend our penetration of proprietary table games on the casino floor. We believe we have a significant opportunity to replicate the success we have had with blackjack side bets by developing content for the other significant public domain casino games of baccarat, roulette and craps.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Increase our revenue per unit by leveraging our Enhanced Table Systems. Our Enhanced Table Systems are placed on tables where we already have our side bet or premium game content deployed. By adding our Enhanced Table Systems, we significantly increase the revenue we earn from that table. Gaming operators deploy the Enhanced Table Systems because they generally increase the win for the casino by an amount that significantly exceeds the cost to license the system from us.\\xa0Our product strategy includes making Electronic Table Systems that support a multitude of side bets and premium games across several casino game segments (e.g., blackjack, craps, roulette, baccarat, etc.).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Expand the number of markets we serve. In the past, there were table games markets in North America that we could not serve or in which we could not offer our full suite of products and services. In general, this was because we were not licensed to serve casinos in that market or the license we have limits the products and services we can provide. We believe that the redemption transaction we undertook in 2019 (discussed below in the “Significant Business Developments” section) has helped us with our licensing activities in existing and new markets, and will continue to help us, including table games markets outside of the United States. Since the redemption transaction, we have received new or expanded licenses in 21 jurisdictions in North America.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Grow our iGaming content and partner base. We have licensed our content to the iGaming segment for several years through our distributor, PGP.\\xa0In 2020, we acquired PGP in order to improve our financial results from the iGaming segment by eliminating the distribution fee to PGP and by adding the revenue that PGP earns from licensing the content owned by itself and others.\\xa0The COVID pandemic has resulted in a significant increase in jurisdictions considering legalizing iGaming, in many cases in concert with legalizing sports wagering. We intend to increase our revenues from iGaming in several ways.\\xa0First, we expect that our existing licensees will see growth in their current markets while adding new markets in the U.S. and elsewhere.\\xa0Second, we intend to add new licensees in the iGaming segment.\\xa0And finally, we intend to add to the number of games that we license to both existing and new licensees.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Promote the use of our game content in adjacent gaming markets. We have game content that is well-known and popular in physical casinos and online casinos. One example is the Electronic Table Games (“ETG”) market, which offers table game content on touch-',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'screen video devices. As casinos face rising labor costs, table games can become unprofitable at low bet minimums',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'and', 'type': 'Title'},\n",
" {'text': 'we believe', 'type': 'NarrativeText'},\n",
" {'text': 'casinos', 'type': 'Title'},\n",
" {'text': 'may', 'type': 'Title'},\n",
" {'text': 'seek to expand the use of ETGs to address this shortfall. Another example',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'is', 'type': 'NarrativeText'},\n",
" {'text': 'lotteries (both ticket lotteries and', 'type': 'Title'},\n",
" {'text': 'iLotteries', 'type': 'Uncategorized'},\n",
" {'text': '), where our well-known game content may attract patrons to lotteries as another way to enjoy it. There may be regulatory restrictions on the use of casino gaming content in certain lottery markets, but the addressable market is large even excluding these markets.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'COMPETITION', 'type': 'Title'},\n",
" {'text': 'We compete with several companies that develop and provide proprietary table games, electronic gaming platforms, game enhancements and related services. We believe that the principal competitive factors in our market include products and services that appeal to casinos and players, jurisdictional approvals and a well-developed sales and distribution network.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We believe that our success will depend upon our ability to remain competitive in our field.\\xa0Competition can be based on price, brand recognition, player appeal and the strength of underlying intellectual property and superior customer service. Larger competitors may have longer operating histories, greater brand recognition, more firmly established supply relationships, superior capital resources, distribution and product inventory than we do. Smaller competitors may be more able to participate in developing and marketing table games, compared to other gaming products, because of the lower cost and complexity associated with the development of these products and a generally less stringent regulatory environment. We compete with others in efforts to obtain or create innovative products, obtain financing, acquire other gaming companies, and license and distribute products. We compete on these bases, as well as on the strength of our sales, service and distribution channels.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Our competitors include, but are not limited to, Scientific Games Corporation; Play AGS, Inc.; TCS/John Huxley; and Masque Publishing. Most of these competitors are larger than we are, have more financial resources than we do, and have more business segments than we do. In addition, we expect additional competitors to emerge in the future. There can be no assurances that we will be able to compete effectively in the future and failure to compete successfully in the market could have a material adverse effect on our business.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'SUPPLIERS', 'type': 'Title'},\n",
" {'text': 'We own outright the content for most of our Side Bets and Premium Games and therefore do not depend on suppliers for the majority of our revenues from these games. However, there are some games that we have licensed from others and to whom we pay royalty fees when we license those games to others (including in the online gaming sector). We generally have multi-year licensing agreements for this content. With respect to our Enhanced Table Systems, we obtain most of the parts for our products from third-party suppliers, including both off-the-shelf items as well as components manufactured to our specifications. We also assemble a small number of parts in-house that are used both for product assembly and for servicing existing products. We generally perform warehousing, quality control, final assembly and shipping functions from our facilities in Las Vegas, Nevada, although small inventories are maintained, and repairs are performed by our field service employees. We believe that our sources of supply for components and raw materials are adequate and that alternative sources of materials are available.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'In our iGaming business, we license some of our game content from other providers for re-licensing to online operators along with the content we own outright. We pay royalties to the owners of the content that we license from them.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'RESEARCH AND DEVELOPMENT', 'type': 'Title'},\n",
" {'text': 'We seek to develop and maintain a robust pipeline of new products and services to bring to market. We employ a staff of hardware and software engineers, graphic artists and game developers at our corporate offices to support, improve and upgrade our products and to develop and explore other potential table game products, technologies, methodologies and services. We also will use outside services for research and development from time to time.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'INTELLECTUAL PROPERTY', 'type': 'Title'},\n",
" {'text': 'Our products and the intellectual property associated with them are typically protected by patents, trademarks, copyrights and non-compete agreements. However, there can be no assurance that the steps we have taken to protect our intellectual property will be sufficient. Further, in the United States certain court rulings may make it difficult to enforce patents around the math relating to casino games, which makes us more dependent on copyrights and trademarks for protection. In addition, the laws of some foreign countries do not protect intellectual property to the same extent as the laws of the United States, which could increase the likelihood of infringement. Furthermore, other companies could develop similar or superior products without violating our intellectual property rights. If we resort to legal proceedings to enforce our intellectual property rights, the proceedings could be burdensome, disruptive and expensive, and distract the attention of management, and there can be no assurance that we would prevail.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We have been subject to litigation claiming that we have infringed the rights of others and/or that certain of our patents and other intellectual property are invalid or unenforceable. We have also brought actions against others to protect our rights.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'GOVERNMENT REGULATION', 'type': 'Title'},\n",
" {'text': 'We are subject to regulation by governmental authorities in most jurisdictions in which we offer our products. The development and distribution of casino games, gaming equipment, systems technology and related services, as well as the operation of casinos, are all subject to regulation by a variety of federal, state, international, tribal, and local agencies with the majority of oversight provided by individual state gaming control boards. While the regulatory requirements vary by jurisdiction, most require:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '•\\n\\nDocumentation of qualification, including evidence of financial stability;',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Findings of suitability for the Company, individual officers, directors, key employees and major shareholders;',\n",
" 'type': 'ListItem'},\n",
" {'text': '•\\n\\nSpecific product approvals for games and gaming equipment; and',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Documentation of qualification, including evidence of financial stability;',\n",
" 'type': 'ListItem'},\n",
" {'text': '•\\n\\nLicenses, registrations and/or permits.', 'type': 'ListItem'},\n",
" {'text': 'Specific product approvals for games and gaming equipment; and',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Gaming regulatory requirements vary from jurisdiction to jurisdiction, and obtaining licenses, registrations, findings of suitability for our officers, directors, and principal stockholders and other required approvals with respect to us, our personnel and our products are time consuming and expensive. Generally, gaming regulatory authorities have broad discretionary powers and may deny applications for or revoke approvals on any basis they deem reasonable. We have approvals that enable us to conduct our business in numerous jurisdictions, subject in each case to the conditions of the particular approvals. These conditions may include limitations as to the type of game or product we may sell or lease, as well as limitations on the type of facility, such as riverboats, and the territory within which we may operate, such as tribal nations. Gaming laws and regulations serve to protect the public interest and ensure gambling related activity is conducted honestly, competitively and free of corruption. Regulatory oversight additionally ensures that the local authorities receive the appropriate amount of gaming tax revenues. As such, our financial systems and reporting functions must demonstrate high levels of detail and integrity.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Licenses, registrations and/or permits.', 'type': 'ListItem'},\n",
" {'text': 'Gaming regulatory requirements vary from jurisdiction to jurisdiction, and obtaining licenses, registrations, findings of suitability for our officers, directors, and principal stockholders and other required approvals with respect to us, our personnel and our products are time consuming and expensive. Generally, gaming regulatory authorities have broad discretionary powers and may deny applications for or revoke approvals on any basis they deem reasonable. We have approvals that enable us to conduct our business in numerous jurisdictions, subject in each case to the conditions of the particular approvals. These conditions may include limitations as to the type of game or product we may sell or lease, as well as limitations on the type of facility, such as riverboats, and the territory within which we may operate, such as tribal nations. Gaming laws and regulations serve to protect the public interest and ensure gambling related activity is conducted honestly, competitively and free of corruption. Regulatory oversight additionally ensures that the local authorities receive the appropriate amount of gaming tax revenues. As such, our financial systems and reporting functions must demonstrate high levels of detail and integrity.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We also have authorizations with certain Native American tribes throughout the United States that have compacts with the states in which their tribal dominions are located or operate or propose to operate casinos. These tribes generally require suppliers of gaming and gaming-related equipment to obtain authorizations. Gaming on Native American lands within the United States is governed by the Federal Indian Gaming Regulatory Act of 1988 (“IGRA”) and specific tribal ordinances and regulations. Class\\xa0III gaming (table games and slot machines, for example), as defined under IGRA, also requires a Tribal-State Compact, which is a written agreement between a specific tribe and the respective state. This compact authorizes the type of Class\\xa0III gaming activity and the standards, procedures and controls under which the Class\\xa0III gaming activity must be conducted.\\xa0The National Indian Gaming Commission (“NIGC”) has oversight authority over gaming on Native American lands and generally monitors tribal gaming, including the establishment and enforcement of required minimum internal control standards.\\xa0Each tribe is sovereign and must have a tribal gaming commission or office established to regulate tribal gaming activity to ensure compliance with IGRA, NIGC, and its Tribal-State Compact.\\xa0We have complied with each of the numerous vendor licensing, specific product approvals and shipping notification requirements imposed by Tribal-State Compacts and enforced by tribal and/or state gaming agencies under IGRA in the Native American lands in which we do business.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The nature of the industry and our worldwide operations make the license application process very time consuming and require extensive resources. We engage legal resources familiar with local customs in certain jurisdictions to assist in keeping us compliant with applicable regulations worldwide. Through this process, we seek to assure both regulators and investors that all our operations maintain the highest levels of integrity and avoid any appearance of impropriety.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We have obtained or applied for all required government licenses, permits, registrations, findings of suitability and approvals necessary to develop and distribute gaming products in all jurisdictions where we directly operate. Although many regulations at each level are similar or overlapping, we must satisfy all conditions individually for each jurisdiction. Additionally, in certain jurisdictions we license our products through distributors authorized to do business in those jurisdictions.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'In addition to what may be required of our officers, board members, key employees and substantial interest holders, any of our stakeholders, including but not limited to investors, may be subject to regulatory requests and suitability findings. Failure to comply with regulatory requirements or obtaining a finding of unsuitability by a regulatory body could result in a substantial or total loss of investment.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'In the future, we intend to seek the necessary registrations, licenses, approvals, and findings of suitability for us, our products, and our personnel in other jurisdictions throughout the world. However, we may be unable to obtain such necessary items, or if such items are obtained, may be revoked, suspended, or conditioned. In addition, we may be unable to obtain on a timely basis, or to obtain at all, the necessary approvals of our future products as they are developed, even in those jurisdictions in which we already have existing products licensed or approved. If the necessary registrations are not sought after or the required approvals not received, we may be prohibited from selling our products in that jurisdiction or may be required to sell our products through other licensed entities at a reduced profit.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'EMPLOYEES', 'type': 'Title'},\n",
" {'text': 'We have 36 full-time employees, including executive officers, management personnel, accounting personnel, office staff, sales staff, service technicians and research and development personnel. As needed, we also employ part-time and temporary employees and pay for the services of independent contractors.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Significant 2020 and 2021 Business Developments', 'type': 'Title'},\n",
" {'text': \"Share Redemption. On May 6, 2019, we redeemed all 23,271,667 shares of our common stock held by Triangulum Partners, LLC (“Triangulum”), an entity controlled by Robert B. Saucier (“Saucier”), Galaxy Gaming's founder, and, prior to the redemption, the holder of a majority of our outstanding common stock. Our Articles of Incorporation (the “Articles”) provide that if certain events occur in relation to a stockholder that is required to undergo a gaming suitability review or similar investigative process, we have the option to purchase all or any part of such stockholders shares at a price per share that is equal to the average closing share price over the thirty calendar days preceding the purchase. The average closing share price over the thirty calendar days preceding the redemption was $1.68 per share.\",\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The consideration owed to Triangulum for the redemption is $39,096,401 (the “Redemption Consideration Obligation”). The litigation between the Company and Triangulum related to the redemption and other matters was settled pursuant to a settlement agreement by a payment from the Company of $39,507,717 to Triangulum on November 15, 2021. See Note 10 and Note 11 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Credit Agreement Amendments. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details of amendments made to the Companys credit agreement.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Fortress Credit Agreement. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details of the entry into the Fortress Credit Agreement.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Membership Interest Purchase Agreement. On February 25, 2020, Galaxy Gaming entered into a Membership Interest Purchase Agreement, dated February 25, 2020 (the “Purchase Agreement”), between the Company and the membership interest holders of PGP.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'On August 21, 2020, the Company entered into a First Amendment to the Purchase Agreement between the Company and the membership interest holders of PGP. The First Amendment, among other things, fixed the cash portion of the purchase price at $6.425 million and established that the stock portion would be satisfied through the issuance of 3,141,361 shares of the Companys common stock with a value of $1.27 per share on the date of the acquisition.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'On August 21, 2020, the Company completed the acquisition of 100% of the member interests in PGP. The entirety of the purchase price ($10,414,528) has been allocated to customer relationships and is included in Other intangible assets, net, on the Companys balance sheet. See Note 7 to our audited financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details. The Company also acquired certain receivables and payables in the net amount of $581,885, which was to be remitted to the sellers of PGP as the receivables and payables were settled. The remaining balance owed to the sellers at December 31, 2020 was paid on May 7, 2021.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'COVID-19. On March 11, 2020, the World Health Organization declared a pandemic related to the COVID-19 outbreak, which led to a global health emergency.\\xa0The public-health impact of the outbreak continues to remain largely unknown and still evolving. The related health crisis could continue to adversely affect the global economy, resulting in continued economic downturn that could impact demand for our products.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'On March 17, 2020, the Company announced that it suspended billing to customers who had closed their doors due to the COVID-19 outbreak. As a result, we did not earn revenue for the use of our games by our physical casino customers during the time that they were closed. In general, the online gaming customers who license our games through our distributor remained and continue to remain in operation in spite of the COVID-19 crisis. We earned revenue from them during the crisis and expect to continue to do so, but potentially at levels that may be lower than we previously received.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'As of the date of this filing, virtually all land-based casinos have re-opened, although operations have not returned to pre-COVID-19 levels.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We also rely on third-party suppliers and manufacturers in China, many of whom were shut down or severely cut back production during the initial COVID-19 shutdown. Although this did not have a material effect on our supply chain, any future disruption of our suppliers and their contract manufacturers may impact our sales and operating results going forward.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Because of the uncertainties of COVID-19, the Company drew on its Revolving Loan in the amount of $1,000,000 on March 12, 2020. Also, on April 17, 2020, the Company obtained an unsecured loan of $835,300 through Zions Bancorporation, N.A. dba Nevada State Bank under the Paycheck Protection Program (the “PPP Loan”) pursuant to the Coronavirus Aid, Relief, and Economic Security Act (the “CARES Act”) and the Paycheck Protection Program Flexibility Act (the “Flexibility Act”). On July 16, 2020, the Company filed an application and supporting documentation for forgiveness in full of the PPP Loan. On November 21, 2020, the Company received notification the PPP Loan had been forgiven in full. Pursuant to the CARES Act, the Federal Reserve created the Main Street Priority Loan Program (“MSPLP”) to provide financing for small and medium-sized businesses. On October 26, 2020, the Company borrowed $4 million from Zions Bancorporation N.A., dba Nevada State Bank under this program. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The COVID-19 crisis may change the behavior of gaming patrons. Most of our clients operate places of public accommodation, and their patrons may reduce visitation and play as a precaution. Further, governmental authorities may continue to impose reduced hours of operation or limit the capacity of such places of public accommodation. A long-term reduction in play could have a material adverse impact on our results of operations. Depending on the length and severity of any such adverse impact, we may fail to comply with our obligations, including covenants in our credit agreement, and we may need to reassess the carrying value of our assets.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ITEM\\xa01A. RISK FACTORS', 'type': 'Title'},\n",
" {'text': 'A smaller reporting company is not required to provide the information required by this Item.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ITEM\\xa01B. UNRESOLVED STAFF COMMENTS', 'type': 'Title'},\n",
" {'text': 'A smaller reporting company is not required to provide the information required by this Item.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ITEM\\xa02. PROPERTIES', 'type': 'Title'},\n",
" {'text': 'We do not own any real property used in the operation of our current business.\\xa0We maintain our corporate office at 6480 Cameron Street, Suite 305, Las Vegas, Nevada, where we currently occupy approximately 14,000 square feet of combined office and warehouse space. We also maintain a small warehouse and service facility in Kent, Washington and a small office in Richland, Washington. See Note 9 to our audited financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ITEM\\xa03. LEGAL PROCEEDINGS', 'type': 'Title'},\n",
" {'text': 'We have been named in and have brought lawsuits in the normal course of business. See Note 11 to our audited financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ITEM\\xa04. MINE SAFETY DISCLOSURES', 'type': 'Title'},\n",
" {'text': 'A smaller reporting company is not required to provide the information required by this Item.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'PART II', 'type': 'Title'},\n",
" {'text': 'ITEM\\xa05. MARKET FOR REGISTRANTS COMMON EQUITY AND RELATED STOCKHOLDER MATTERS',\n",
" 'type': 'Title'},\n",
" {'text': 'Our common stock is quoted on the OTCQB marketplace (“OTCQB”) under the ticker symbol GLXZ.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The following table sets forth the range of high and low closing sale prices for our common stock for each of the periods indicated as reported by the OTCQB.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Quarter Ended', 'type': 'Title'},\n",
" {'text': 'High ($)', 'type': 'Title'},\n",
" {'text': 'Low ($)', 'type': 'Title'},\n",
" {'text': 'High ($)', 'type': 'Title'},\n",
" {'text': 'Low ($)', 'type': 'Title'},\n",
" {'text': 'March 31,', 'type': 'Uncategorized'},\n",
" {'text': '3.02', 'type': 'Uncategorized'},\n",
" {'text': '1.72', 'type': 'Uncategorized'},\n",
" {'text': '1.95', 'type': 'Uncategorized'},\n",
" {'text': '0.70', 'type': 'Uncategorized'},\n",
" {'text': 'June 30,', 'type': 'Uncategorized'},\n",
" {'text': '3.70', 'type': 'Uncategorized'},\n",
" {'text': '2.70', 'type': 'Uncategorized'},\n",
" {'text': '1.36', 'type': 'Uncategorized'},\n",
" {'text': '0.73', 'type': 'Uncategorized'},\n",
" {'text': 'September 30,', 'type': 'Uncategorized'},\n",
" {'text': '4.64', 'type': 'Uncategorized'},\n",
" {'text': '3.68', 'type': 'Uncategorized'},\n",
" {'text': '1.36', 'type': 'Uncategorized'},\n",
" {'text': '1.08', 'type': 'Uncategorized'},\n",
" {'text': 'December 31,', 'type': 'Uncategorized'},\n",
" {'text': '4.45', 'type': 'Uncategorized'},\n",
" {'text': '3.67', 'type': 'Uncategorized'},\n",
" {'text': '1.95', 'type': 'Uncategorized'},\n",
" {'text': '0.95', 'type': 'Uncategorized'},\n",
" {'text': 'The Securities and Exchange Commission (the “SEC”) has adopted rules that regulate broker-dealer practices in connection with transactions in penny stocks. Penny stocks are generally equity securities with a market price of less than $5.00, other than securities registered on certain national securities exchanges or quoted on the NASDAQ system, provided that current price and volume information with respect to transactions in such securities is provided by the exchange or system. The penny stock rules require a broker-dealer, prior to a transaction in a penny stock, to deliver a standardized risk disclosure document prepared by the SEC, that: (a)\\xa0contains a description of the nature and level of risk in the market for penny stocks in both public offerings and secondary trading; (b)\\xa0contains a description of the brokers or dealers duties to the customer and of the rights and remedies available to the customer with respect to a violation of such duties or other requirements of the securities laws; (c)\\xa0contains a brief, clear, narrative description of a dealer market, including bid and ask prices for penny stocks and the significance of the spread between the bid and ask price; (d)\\xa0contains a toll-free telephone number for inquiries on disciplinary actions; (e)\\xa0defines significant terms in the disclosure document or in the conduct of trading in penny stocks; and (f)\\xa0contains such other information and is in such form, including language, type size and format, as the SEC shall require by rule or regulation.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The broker-dealer also must provide, prior to effecting any transaction in a penny stock, the customer with (a)\\xa0bid and offer quotations for the penny stock; (b)\\xa0the compensation of the broker-dealer and its salesperson in the transaction; (c)\\xa0the number of shares to which such bid and ask prices apply, or other comparable information relating to the depth and liquidity of the market for such stock; and (d)\\xa0a monthly account statement showing the market value of each penny stock held in the customers account.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'In addition, the penny stock rules require that prior to a transaction in a penny stock not otherwise exempt from those rules, the broker-dealer must make a special written determination that the penny stock is a suitable investment for the purchaser and receive the purchasers written acknowledgment of the receipt of a risk disclosure statement, a written agreement as to transactions involving penny stocks, and a signed and dated copy of a written suitability statement.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'These disclosure requirements may have the effect of reducing the trading activity for our common stock. Therefore, stockholders may have difficulty buying or selling our securities.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'HOLDERS OF OUR COMMON STOCK', 'type': 'Title'},\n",
" {'text': 'As of March 28, 2022, we had 23,718,968 shares of our common stock issued and outstanding and 40 shareholders of record.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'DIVIDEND POLICY', 'type': 'Title'},\n",
" {'text': 'There are no restrictions in our articles of incorporation or bylaws that prevent us from declaring dividends.\\xa0The Nevada Revised Statutes, however, do prohibit us from declaring dividends where after giving effect to the distribution of the dividend:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '•\\n\\nOur total assets would be less than the sum of our total liabilities plus the amount that would be needed to satisfy the rights of shareholders who have preferential rights superior to those receiving the distribution.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'We would not be able to pay our debts as they become due in the usual course of business; or',\n",
" 'type': 'ListItem'},\n",
" {'text': 'We have not declared any dividends, and we do not plan to declare any dividends in the foreseeable future. Even though we repaid in full the borrowings we made in 2020 from the MSPLP, we are prohibited from paying dividends or making share repurchases for one year after the repayment (until November 15, 2022). We are prohibited from paying dividends while our MSPLP is outstanding and for one year thereafter. In addition, the Fortress Credit Agreement imposes significant restrictions on our ability to pay dividends. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Our total assets would be less than the sum of our total liabilities plus the amount that would be needed to satisfy the rights of shareholders who have preferential rights superior to those receiving the distribution.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'We have not declared any dividends, and we do not plan to declare any dividends in the foreseeable future. Even though we repaid in full the borrowings we made in 2020 from the MSPLP, we are prohibited from paying dividends or making share repurchases for one year after the repayment (until November 15, 2022). We are prohibited from paying dividends while our MSPLP is outstanding and for one year thereafter. In addition, the Fortress Credit Agreement imposes significant restrictions on our ability to pay dividends. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '10', 'type': 'Uncategorized'},\n",
" {'text': 'TRANSFER AGENT', 'type': 'Title'},\n",
" {'text': 'Our stock transfer agent and registrar is Philadelphia Stock Transfer, Inc. located at 2320 Haverford Street, Ardmore, PA 19003. Their telephone number is (484) 416-3124.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '11', 'type': 'Uncategorized'},\n",
" {'text': 'ITEM\\xa07. MANAGEMENTS DISCUSSION AND ANALYSIS OF FINANCIAL CONDITION AND RESULTS OF OPERATIONS',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The following is a discussion and analysis of our financial condition, results of operations and liquidity and capital resources as of and for the years ended December\\xa031, 2021 and 2020. This discussion should be read together with our audited consolidated financial statements and related notes included in Item\\xa08. Financial Statements and Supplementary Financial Information. Some of the information contained in this discussion includes forward-looking statements that involve risks and uncertainties; therefore our “Special Note Regarding Forward-Looking Statements” should be reviewed\\xa0for a discussion of important factors that could cause actual results to differ materially from the results described in, or implied by, such forward-looking statements.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'OVERVIEW', 'type': 'Title'},\n",
" {'text': 'We develop, acquire, assemble and market technology and entertainment-based products and services for the gaming industry for placement on casino floors and on legal internet gaming sites.\\xa0Our products and services primarily relate to licensed casino operators table games activities and focus on either increasing their profitability, productivity and security or expanding their gaming entertainment offerings in the form of proprietary table games, electronically enhanced table game platforms, fully-automated electronic tables and other ancillary equipment. In addition, we license intellectual property to legal internet gaming operators. Our products and services are offered in highly regulated markets throughout the world.\\xa0Our products are assembled at our headquarters in Las Vegas, Nevada, as well as outsourced for certain sub-assemblies in the United States.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Results of operations for the years ended December\\xa031, 2021 and 2020. For the year ended December\\xa031, 2021, we generated gross revenues of $19,984,378 compared to $10,230,316 in 2020, representing an increase of $9,754,062, or 95.3%.\\xa0This increase was directly attributable to the re-opening of a significant portion of our land-based customers after the restrictions due to the COVID-19 crisis were lifted. Also, our online gaming revenues increased significantly due primarily to the acquisition of PGP in August of 2020 as well as to the opening of new markets in the U.S.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Selling, general and administrative expenses were $10,646,524 in 2021 compared to $8,964,930 in 2020, representing an increase of $1,681,594, or 18.8%. This increase was due to the 2021 employee bonus accrual being included in the current year as compared to no bonus accrual being included in the comparable prior-year period. Also, higher expenses were incurred in the current period directly related to the opening of jurisdictions throughout 2021 as COVID-19 restrictions were lifted (sales commissions, royalty expenses and repairs and maintenance of BJS units). Lastly, higher insurance payments were incurred in the current period as compared to the comparable prior-year period related to the financed Directors & Officers (“D&O) policy. These increased expenses incurred were offset by a decrease in legal fees related to the Triangulum Lawsuit and a decrease in distributor fees related to the acquisition of PGP in August 2020.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Research and development expenses were $520,449 in 2021 compared to $487,679\\xa0in 2020, representing an increase of $32,770, or 6.7%. This increase was primarily due to the 2021 employee bonus accrual. Prior year did not include an employee bonus accrual.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Share-based compensation expenses were $1,532,455 in 2021 compared to $737,991 in 2020, representing an increase of $794,464, or 107.7%. This increase was due to the quarterly restricted shares granted to our Board members being issued at a higher stock price than the comparable prior-year period. The increase was also due to increased amortization related to more shares being granted in the current period than the comparable prior-year period (two employees, a contractor and an additional Board member).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'As a result of the changes described above, income from operations was $4,345,126 in 2021 compared to a loss from operations of $(2,255,010) in 2020, an increase of $6,600,136, or 292.7%.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Total interest expense was $1,505,386 in 2021 compared to $683,357 in 2020, an increase of $822,029, or 120.3%. The increase was attributable to the Fortress Credit Agreement entered into on November 15, 2021. Loan fees related to the MSPLP, the NSB Term Loan and the Revolving Loan were written off in November 2021. Also, the Fortress Credit Agreement bears a higher interest rate than the NSB Term Loan, the Revolving Loan, the MSPLP and the Triangulum promissory note, along with higher amortization on loan fees and warrants issued. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Share redemption consideration was $682,469 in 2021 compared to $781,928 in 2020, a decrease of $99,459, or 12.7%. The decrease was attributable to the settlement of the Triangulum litigation on November 15, 2021. A total of $411,316 in accrued interest through November 15, 2021 was paid in connection with the settlement. See Note 11 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The income tax expense was $48,637 in 2021 based on an effective rate of 2.25 percent compared to the benefit of ($605,936) in 2020 based on an effective rate of 17.42 percent. The 2.25 percent effective tax rate for 2021 differed from the statutory federal income tax rate of 21.0 percent and was primarily attributable to (i) increased tax benefit from the exercise of stock options; (ii) the increased foreign rate differential and (iii) the Company maintaining a valuation allowance against its deferred tax assets.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '12', 'type': 'Uncategorized'},\n",
" {'text': 'Adjusted', 'type': 'Title'},\n",
" {'text': 'Earnings Before Interest, Taxes, Depreciation and Amortization (“',\n",
" 'type': 'Title'},\n",
" {'text': 'EBITDA', 'type': 'Uncategorized'},\n",
" {'text': '”)', 'type': 'Uncategorized'},\n",
" {'text': 'Adjusted EBITDA includes adjustment', 'type': 'NarrativeText'},\n",
" {'text': 'to net', 'type': 'NarrativeText'},\n",
" {'text': 'income', 'type': 'Title'},\n",
" {'text': '(loss)', 'type': 'Title'},\n",
" {'text': 'to exclude interest,', 'type': 'NarrativeText'},\n",
" {'text': 'income', 'type': 'Title'},\n",
" {'text': 'taxes, depreciation, amortization, share based compensation,',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'foreign currency exchange', 'type': 'Title'},\n",
" {'text': 'loss', 'type': 'Title'},\n",
" {'text': 'change in fair value of', 'type': 'Title'},\n",
" {'text': 'interest rate swap liability', 'type': 'Title'},\n",
" {'text': 'and', 'type': 'Title'},\n",
" {'text': 'severance and other expenses related to litigation',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Adjusted', 'type': 'Title'},\n",
" {'text': 'EBITDA is not a measure of performance defined in accordance with',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'U.S.', 'type': 'Uncategorized'},\n",
" {'text': 'Generally Accepted Accounting Principles (“', 'type': 'Title'},\n",
" {'text': 'GAAP', 'type': 'Uncategorized'},\n",
" {'text': '”)', 'type': 'Uncategorized'},\n",
" {'text': '. However', 'type': 'Title'},\n",
" {'text': ', Adjusted EBITDA is used by management to evaluate our operating performance. Management believes that disclosure of the Adjusted EBITDA metric offers investors,',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'regulators', 'type': 'Title'},\n",
" {'text': 'and other stakeholders a view of our operations in the same manner management evaluates our performance. When combined with U.S. GAAP results, management believes Adjusted EBITDA provides a comprehensive understanding of our financial results. Adjusted EBITDA should not be considered as an alternative to net income or',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'loss', 'type': 'Title'},\n",
" {'text': 'to net cash provided by operating activities as a measure of operating results or of liquidity. It may not be comparable to similarly titled measures used by other companies, and it excludes financial information that some may consider important in evaluating our performance. A reconciliation of U.S. GAAP net income to Adjusted EBITDA is as follows:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Years ended December 31,', 'type': 'NarrativeText'},\n",
" {'text': 'Adjusted EBITDA Reconciliation:', 'type': 'Title'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Net income (loss)', 'type': 'Title'},\n",
" {'text': '2,111,812', 'type': 'Uncategorized'},\n",
" {'text': '(2,208,887', 'type': 'Uncategorized'},\n",
" {'text': 'Interest expense', 'type': 'Title'},\n",
" {'text': '1,505,386', 'type': 'Uncategorized'},\n",
" {'text': '683,357', 'type': 'Uncategorized'},\n",
" {'text': 'Share redemption consideration', 'type': 'Title'},\n",
" {'text': '682,469', 'type': 'Uncategorized'},\n",
" {'text': '781,928', 'type': 'Uncategorized'},\n",
" {'text': 'Interest income', 'type': 'Title'},\n",
" {'text': '(2,048', 'type': 'Uncategorized'},\n",
" {'text': '(25,702', 'type': 'Uncategorized'},\n",
" {'text': 'Depreciation and amortization', 'type': 'Title'},\n",
" {'text': '2,858,991', 'type': 'Uncategorized'},\n",
" {'text': '2,222,042', 'type': 'Uncategorized'},\n",
" {'text': 'Share-based compensation', 'type': 'Title'},\n",
" {'text': '1,532,455', 'type': 'Uncategorized'},\n",
" {'text': '737,991', 'type': 'Uncategorized'},\n",
" {'text': 'Foreign currency exchange loss', 'type': 'Title'},\n",
" {'text': '64,879', 'type': 'Uncategorized'},\n",
" {'text': '34,961', 'type': 'Uncategorized'},\n",
" {'text': 'Change in fair value of interest rate swap liability',\n",
" 'type': 'Title'},\n",
" {'text': '(66,009', 'type': 'Uncategorized'},\n",
" {'text': '(74,487', 'type': 'Uncategorized'},\n",
" {'text': 'Provision (benefit) for income taxes', 'type': 'Title'},\n",
" {'text': '48,637', 'type': 'Uncategorized'},\n",
" {'text': '(605,937', 'type': 'Uncategorized'},\n",
" {'text': 'Paycheck Protection Program Loan forgiveness', 'type': 'Title'},\n",
" {'text': '(840,243', 'type': 'Uncategorized'},\n",
" {'text': 'Severance expense', 'type': 'Title'},\n",
" {'text': '12,596', 'type': 'Uncategorized'},\n",
" {'text': '20,058', 'type': 'Uncategorized'},\n",
" {'text': 'Special project expense(1)', 'type': 'Title'},\n",
" {'text': '(15,338', 'type': 'Uncategorized'},\n",
" {'text': '652,198', 'type': 'Uncategorized'},\n",
" {'text': 'Adjusted EBITDA', 'type': 'Title'},\n",
" {'text': '8,733,830', 'type': 'Uncategorized'},\n",
" {'text': '1,377,279', 'type': 'Uncategorized'},\n",
" {'text': '(1)', 'type': 'Uncategorized'},\n",
" {'text': 'Includes expenses associated with the Triangulum Lawsuit in both 2021 and 2020. There is a credit balance in 2021 due to $720,000 in D&O insurance claim payments received in 2021.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Liquidity and capital resources. We have generally been able to fund our continuing operations, our investments, and the obligations under our existing borrowings through cash flow from operations. In 2020, as a result of the COVID-19 crisis, we were required to raise funds from financing sources in order to maintain operations. In addition to our normal operations, we may make acquisitions of products, technologies or entire businesses.\\xa0Our ability to access capital for operations or for acquisitions will depend on conditions in the capital markets and investors perceptions of our business prospects and such conditions and perceptions may not always favor us.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'As of December\\xa031, 2021, we had total current assets of $23,890,122 and total assets of $40,452,705. This compares to $11,562,833 and $30,574,594, respectively, as of December\\xa031, 2020. The increase in total current assets as of December\\xa031, 2021 was primarily due to an increase in the accounts receivable balance, resulting from higher billings and lower collections directly related to the COVID-19 crisis. Also, the Company entered into the Fortress Credit Agreement on November 15, 2021, which provided $5,273,464 in cash to the Company, after settlement of the NSB Term Loan, the Revolving Loan, the MSPLP and the Triangulum promissory note. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details. The increase in total assets as of December\\xa031, 2021 was offset by amortization on the Companys long-term other intangible assets.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Our total current liabilities as of December\\xa031, 2021 increased to $4,401,071 from $4,247,794 as of December 31, 2020, primarily due to the Company accruing for 2021 employee bonuses and an increase in accrued royalties in our online gaming business. These increases were offset by a decrease in current portion of long-term debt which was repaid in connection with the Fortress Credit agreement. See Note 10 to our audited consolidated financial statements included in Item 8 “Financial Statements and Supplementary Financial Information” for further details.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Despite the continuing effects of the COVID-19 crisis, our business was profitable and cash-flow positive in 2021. Based on our current forecast of operations, we believe we will have sufficient liquidity to fund our operations and to meet the obligations under our financing arrangements as they come due over at least the next 12 months.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We continue to file applications for new or enhanced licenses in several jurisdictions, which may result in significant future legal and regulatory expenses. A significant increase in such expenses may require us to postpone growth initiatives or investments in personnel, inventory and research and development of our products. It is our intention to continue such initiatives and investments. However, to the extent we are not able to achieve our growth objectives or raise additional capital, we will need to evaluate the reduction of operating expenses.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '13', 'type': 'Uncategorized'},\n",
" {'text': 'Our operating activities', 'type': 'Title'},\n",
" {'text': 'provided', 'type': 'NarrativeText'},\n",
" {'text': '6,003,576', 'type': 'Uncategorized'},\n",
" {'text': 'in cash', 'type': 'Title'},\n",
" {'text': 'for the year ended', 'type': 'NarrativeText'},\n",
" {'text': 'December\\xa031, 2021', 'type': 'Title'},\n",
" {'text': ', compared to', 'type': 'NarrativeText'},\n",
" {'text': 'cash', 'type': 'Title'},\n",
" {'text': 'used', 'type': 'NarrativeText'},\n",
" {'text': 'of', 'type': 'Title'},\n",
" {'text': '$1,633,132', 'type': 'Uncategorized'},\n",
" {'text': 'for the year ended', 'type': 'NarrativeText'},\n",
" {'text': 'December\\xa031, 2020', 'type': 'Title'},\n",
" {'text': 'The increase in operating cash flow was primarily due to higher net income for the period',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'as a result of', 'type': 'Title'},\n",
" {'text': 'the re-opening of a significant portion of our land-based customers after the restrictions due to the COVID-19 crisis were lifted. Also, higher depreciation and amortization and share-based compensation contributed to the higher operating cash flow. These increases were partially offset by changes in operating assets and liabilities such as',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ccounts', 'type': 'Uncategorized'},\n",
" {'text': 'eceivable', 'type': 'Uncategorized'},\n",
" {'text': 'and', 'type': 'Title'},\n",
" {'text': 'ccrued', 'type': 'Uncategorized'},\n",
" {'text': 'xpenses.', 'type': 'Uncategorized'},\n",
" {'text': 'Investing activities used cash of $233,734 for the year December\\xa031, 2021, compared to cash used of $6,456,714 for the year ended December\\xa031, 2020. This decrease was primarily due to closing of the acquisition of PGP in August 2020.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Cash provided by financing activities for the year ended December\\xa031, 2021 was $4,362,293. This compares to $4,389,234 cash provided by financing activities for the comparable prior-year period. The cash inflow in the current year was due to the Fortress Credit Agreement, offset by the pay-off of the Nevada State Bank (“NSB”) Term Loan, the Revolving Loan, the MSPLP and the Triangulum promissory note.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Critical Accounting Policies. Our consolidated financial statements have been prepared in accordance with U.S. GAAP. We consider the following accounting policies to be the most important to understanding and evaluating our financial results:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Revenue recognition.\\xa0We account for our revenue in accordance with Accounting Standards Codification Topic 606,\\xa0Revenue from Contracts with Customers. We generate revenue primarily from the licensing of our intellectual property. We recognize revenue under recurring fee license contracts monthly as we satisfy our performance obligation, which consists of granting the customer the right to use our intellectual property. Amounts billed are determined based on flat rates or usage rates stipulated in the customer contract.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Goodwill and other intangible assets.\\xa0Goodwill and other intangible assets are assessed for impairment at least annually\\xa0or at other times during the year if events or circumstances indicate that it is more-likely-than-not that the fair value of a reporting asset is below the carrying amount. If found to be impaired, the carrying amounts will be reduced, and an impairment loss will be recognized.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Recently issued accounting pronouncements. We do not expect the adoption of recently issued accounting pronouncements to have a significant impact on our results of operations, financial position or cash flow.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'ITEM\\xa07A. QUANTITATIVE AND QUALITATIVE DISCLOSURES ABOUT MARKET RISK',\n",
" 'type': 'Title'},\n",
" {'text': 'A smaller reporting company is not required to provide the information required by this Item.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '14', 'type': 'Uncategorized'},\n",
" {'text': 'ITEM\\xa08. FINANCIAL STATEMENTS AND SUPPLEMENTARY FINANCIAL INFORMATION',\n",
" 'type': 'Title'},\n",
" {'text': 'INDEX TO FINANCIAL STATEMENTS', 'type': 'Title'},\n",
" {'text': 'Report of Independent Registered Public Accounting Firm, (Moss Adams LLP, San Diego, CA, PCAOB ID: 659)',\n",
" 'type': 'Uncategorized'},\n",
" {'text': '16', 'type': 'Uncategorized'},\n",
" {'text': 'Consolidated Balance Sheets as of December\\xa031, 2021\\xa0and 2020',\n",
" 'type': 'Title'},\n",
" {'text': '17', 'type': 'Uncategorized'},\n",
" {'text': 'Consolidated Statements of Operations and Comprehensive Income for the years ended December\\xa031, 2021 and 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '18', 'type': 'Uncategorized'},\n",
" {'text': 'Consolidated Statements of Changes in Stockholders Deficit for the years ended December\\xa031, 2021 and 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '19', 'type': 'Uncategorized'},\n",
" {'text': 'Consolidated Statements of Cash Flows for the years ended December\\xa031, 2021 and 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '20', 'type': 'Uncategorized'},\n",
" {'text': 'Notes to Consolidated Financial Statements', 'type': 'Title'},\n",
" {'text': '21', 'type': 'Uncategorized'},\n",
" {'text': '15', 'type': 'Uncategorized'},\n",
" {'text': 'REPORT OF INDEPENDENT REGISTERED PUBLIC ACCOUNTING FIRM',\n",
" 'type': 'Title'},\n",
" {'text': 'To the Shareholders and the Board of Directors', 'type': 'Title'},\n",
" {'text': 'Galaxy Gaming, Inc.', 'type': 'Title'},\n",
" {'text': 'Opinion on the Financial Statements', 'type': 'Title'},\n",
" {'text': 'We have audited the accompanying consolidated balance sheets of Galaxy Gaming, Inc. (the “Company”) as of December 31, 2021 and 2020, the related consolidated statements of operations and comprehensive income, stockholders deficit, and cash flows for the years then ended, and the related notes (collectively referred to as the “consolidated financial statements”). In our opinion, the consolidated financial statements present fairly, in all material respects, the consolidated financial position of the Company as of December 31, 2021 and 2020, and the consolidated results of its operations and its cash flows for the years then ended, in conformity with accounting principles generally accepted in the United States of America.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Basis for Opinion', 'type': 'Title'},\n",
" {'text': 'These consolidated financial statements are the responsibility of the Companys management. Our responsibility is to express an opinion on the Companys consolidated financial statements based on our audits. We are a public accounting firm registered with the Public Company Accounting Oversight Board (United States) (PCAOB) and are required to be independent with respect to the Company in accordance with the U.S. federal securities laws and the applicable rules and regulations of the Securities and Exchange Commission and the PCAOB.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We conducted our audits in accordance with the standards of the PCAOB. Those standards require that we plan and perform the audit to obtain reasonable assurance about whether the consolidated financial statements are free of material misstatement, whether due to error or fraud. The Company is not required to have, nor were we engaged to perform, an audit of its internal control over financial reporting. As part of our audits we are required to obtain an understanding of internal control over financial reporting but not for the purpose of expressing an opinion on the effectiveness of the Companys internal control over financial reporting. Accordingly, we express no such opinion.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Our audits included performing procedures to assess the risks of material misstatement of the consolidated financial statements, whether due to error or fraud, and performing procedures to respond to those risks. Such procedures included examining, on a test basis, evidence regarding the amounts and disclosures in the consolidated financial statements. Our audits also included evaluating the accounting principles used and significant estimates made by management, as well as evaluating the overall presentation of the consolidated financial statements. We believe that our audits provide a reasonable basis for our opinion.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Critical Audit Matters', 'type': 'Title'},\n",
" {'text': 'Critical audit matters are matters arising from the current period audit of the consolidated financial statements that were communicated or required to be communicated to the audit committee and that (1) relate to accounts or disclosures that are material to the financial statements and (2) involved our especially challenging, subjective, or complex judgments. We determined that there are no critical audit matters.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '/s/ Moss Adams LLP', 'type': 'Title'},\n",
" {'text': 'San Diego, California', 'type': 'Title'},\n",
" {'text': 'March 30, 2022', 'type': 'Uncategorized'},\n",
" {'text': 'We have served as the Companys auditor since 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '16', 'type': 'Uncategorized'},\n",
" {'text': 'GALAXY GAMING, INC.', 'type': 'Title'},\n",
" {'text': 'CONSOLIDATED BALANCE SHEETS', 'type': 'Title'},\n",
" {'text': 'DECEMBER\\xa031, 2021 AND 2020', 'type': 'Title'},\n",
" {'text': 'ASSETS', 'type': 'Title'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Current assets:', 'type': 'Title'},\n",
" {'text': 'Cash and cash equivalents', 'type': 'Title'},\n",
" {'text': '16,058,714', 'type': 'Uncategorized'},\n",
" {'text': '5,993,388', 'type': 'Uncategorized'},\n",
" {'text': 'Accounts receivable, net of allowance of $348,695 and $145,000, respectively',\n",
" 'type': 'Title'},\n",
" {'text': '4,377,165', 'type': 'Uncategorized'},\n",
" {'text': '2,493,254', 'type': 'Uncategorized'},\n",
" {'text': 'Inventory', 'type': 'Title'},\n",
" {'text': '770,248', 'type': 'Uncategorized'},\n",
" {'text': '668,525', 'type': 'Uncategorized'},\n",
" {'text': 'Income tax receivable', 'type': 'Title'},\n",
" {'text': '1,536,682', 'type': 'Uncategorized'},\n",
" {'text': '1,229,795', 'type': 'Uncategorized'},\n",
" {'text': 'Prepaid expenses', 'type': 'Title'},\n",
" {'text': '1,125,777', 'type': 'Uncategorized'},\n",
" {'text': '1,167,068', 'type': 'Uncategorized'},\n",
" {'text': 'Other current assets', 'type': 'Title'},\n",
" {'text': '21,536', 'type': 'Uncategorized'},\n",
" {'text': '10,803', 'type': 'Uncategorized'},\n",
" {'text': 'Total current assets', 'type': 'Title'},\n",
" {'text': '23,890,122', 'type': 'Uncategorized'},\n",
" {'text': '11,562,833', 'type': 'Uncategorized'},\n",
" {'text': 'Property and equipment, net', 'type': 'Title'},\n",
" {'text': '98,594', 'type': 'Uncategorized'},\n",
" {'text': '116,724', 'type': 'Uncategorized'},\n",
" {'text': 'Operating lease right-of-use assets', 'type': 'NarrativeText'},\n",
" {'text': '1,167,903', 'type': 'Uncategorized'},\n",
" {'text': '1,367,821', 'type': 'Uncategorized'},\n",
" {'text': 'Assets deployed at client locations, net', 'type': 'NarrativeText'},\n",
" {'text': '360,735', 'type': 'Uncategorized'},\n",
" {'text': '232,156', 'type': 'Uncategorized'},\n",
" {'text': 'Goodwill', 'type': 'Title'},\n",
" {'text': '1,091,000', 'type': 'Uncategorized'},\n",
" {'text': '1,091,000', 'type': 'Uncategorized'},\n",
" {'text': 'Other intangible assets, net', 'type': 'Title'},\n",
" {'text': '13,677,264', 'type': 'Uncategorized'},\n",
" {'text': '16,086,896', 'type': 'Uncategorized'},\n",
" {'text': 'Other assets, net', 'type': 'Title'},\n",
" {'text': '167,087', 'type': 'Uncategorized'},\n",
" {'text': '117,164', 'type': 'Uncategorized'},\n",
" {'text': 'Total assets', 'type': 'Title'},\n",
" {'text': '40,452,705', 'type': 'Uncategorized'},\n",
" {'text': '30,574,594', 'type': 'Uncategorized'},\n",
" {'text': 'LIABILITIES AND STOCKHOLDERS DEFICIT', 'type': 'NarrativeText'},\n",
" {'text': 'Current liabilities:', 'type': 'Title'},\n",
" {'text': 'Accounts payable', 'type': 'Title'},\n",
" {'text': '374,323', 'type': 'Uncategorized'},\n",
" {'text': '467,792', 'type': 'Uncategorized'},\n",
" {'text': 'Accrued expenses', 'type': 'NarrativeText'},\n",
" {'text': '2,666,073', 'type': 'Uncategorized'},\n",
" {'text': '1,333,032', 'type': 'Uncategorized'},\n",
" {'text': 'Revenue contract liability', 'type': 'Title'},\n",
" {'text': '37,500', 'type': 'Uncategorized'},\n",
" {'text': '29,167', 'type': 'Uncategorized'},\n",
" {'text': 'Current portion of long-term debt', 'type': 'Title'},\n",
" {'text': '1,100,369', 'type': 'Uncategorized'},\n",
" {'text': '2,222,392', 'type': 'Uncategorized'},\n",
" {'text': 'Current portion of operating lease liabilities', 'type': 'Title'},\n",
" {'text': '222,806', 'type': 'Uncategorized'},\n",
" {'text': '195,411', 'type': 'Uncategorized'},\n",
" {'text': 'Total current liabilities', 'type': 'Title'},\n",
" {'text': '4,401,071', 'type': 'Uncategorized'},\n",
" {'text': '4,247,794', 'type': 'Uncategorized'},\n",
" {'text': 'Long-term operating lease liabilities', 'type': 'Title'},\n",
" {'text': '1,019,029', 'type': 'Uncategorized'},\n",
" {'text': '1,215,680', 'type': 'Uncategorized'},\n",
" {'text': 'Long-term debt and liabilities, net', 'type': 'Title'},\n",
" {'text': '52,143,810', 'type': 'Uncategorized'},\n",
" {'text': '49,691,184', 'type': 'Uncategorized'},\n",
" {'text': 'Interest rate swap liability', 'type': 'Title'},\n",
" {'text': '66,009', 'type': 'Uncategorized'},\n",
" {'text': 'Deferred tax liabilities, net', 'type': 'Title'},\n",
" {'text': '175,218', 'type': 'Uncategorized'},\n",
" {'text': '150,892', 'type': 'Uncategorized'},\n",
" {'text': 'Total liabilities', 'type': 'Title'},\n",
" {'text': '57,739,128', 'type': 'Uncategorized'},\n",
" {'text': '55,371,559', 'type': 'Uncategorized'},\n",
" {'text': 'Commitments and Contingencies (See Note 11)', 'type': 'Title'},\n",
" {'text': 'Stockholders deficit', 'type': 'NarrativeText'},\n",
" {'text': 'Preferred stock, 10,000,000 shares authorized, $0.001 par value;\\n\\xa0\\xa0 0 shares issued and outstanding, respectively',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Common stock, 65,000,000 shares authorized; $0.001 par value;\\n\\xa0\\xa0 23,523,969 and 21,970,638 shares issued and outstanding, respectively',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '23,524', 'type': 'Uncategorized'},\n",
" {'text': '21,971', 'type': 'Uncategorized'},\n",
" {'text': 'Additional paid-in capital', 'type': 'Title'},\n",
" {'text': '16,380,597', 'type': 'Uncategorized'},\n",
" {'text': '10,798,536', 'type': 'Uncategorized'},\n",
" {'text': 'Accumulated deficit', 'type': 'NarrativeText'},\n",
" {'text': '(33,543,351', 'type': 'Uncategorized'},\n",
" {'text': '(35,655,163', 'type': 'Uncategorized'},\n",
" {'text': 'Accumulated other comprehensive (loss) income',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '(147,193', 'type': 'Uncategorized'},\n",
" {'text': '37,691', 'type': 'Uncategorized'},\n",
" {'text': 'Total stockholders deficit', 'type': 'NarrativeText'},\n",
" {'text': '(17,286,423', 'type': 'Uncategorized'},\n",
" {'text': '(24,796,965', 'type': 'Uncategorized'},\n",
" {'text': 'Total liabilities and stockholders deficit',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '40,452,705', 'type': 'Uncategorized'},\n",
" {'text': '30,574,594', 'type': 'Uncategorized'},\n",
" {'text': 'The accompanying notes are an integral part of the consolidated financial statements.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '17', 'type': 'Uncategorized'},\n",
" {'text': 'GALAXY GAMING, INC.', 'type': 'Title'},\n",
" {'text': 'CONSOLIDATED STATEMENTS OF OPERATIONS AND COMPREHENSIVE INCOME (LOSS)',\n",
" 'type': 'Title'},\n",
" {'text': 'YEARS ENDED DECEMBER\\xa031, 2021 AND 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Revenue:', 'type': 'Title'},\n",
" {'text': 'Licensing fees', 'type': 'Title'},\n",
" {'text': '19,984,378', 'type': 'Uncategorized'},\n",
" {'text': '10,230,316', 'type': 'Uncategorized'},\n",
" {'text': 'Total revenue', 'type': 'Title'},\n",
" {'text': '19,984,378', 'type': 'Uncategorized'},\n",
" {'text': '10,230,316', 'type': 'Uncategorized'},\n",
" {'text': 'Costs and expenses:', 'type': 'Title'},\n",
" {'text': 'Cost of ancillary products and assembled components',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '80,833', 'type': 'Uncategorized'},\n",
" {'text': '72,684', 'type': 'Uncategorized'},\n",
" {'text': 'Selling, general and administrative', 'type': 'NarrativeText'},\n",
" {'text': '10,646,524', 'type': 'Uncategorized'},\n",
" {'text': '8,964,930', 'type': 'Uncategorized'},\n",
" {'text': 'Research and development', 'type': 'Title'},\n",
" {'text': '520,449', 'type': 'Uncategorized'},\n",
" {'text': '487,679', 'type': 'Uncategorized'},\n",
" {'text': 'Depreciation and amortization', 'type': 'Title'},\n",
" {'text': '2,858,991', 'type': 'Uncategorized'},\n",
" {'text': '2,222,042', 'type': 'Uncategorized'},\n",
" {'text': 'Share-based compensation', 'type': 'Title'},\n",
" {'text': '1,532,455', 'type': 'Uncategorized'},\n",
" {'text': '737,991', 'type': 'Uncategorized'},\n",
" {'text': 'Total costs and expenses', 'type': 'Title'},\n",
" {'text': '15,639,252', 'type': 'Uncategorized'},\n",
" {'text': '12,485,326', 'type': 'Uncategorized'},\n",
" {'text': 'Income (loss) from operations', 'type': 'Title'},\n",
" {'text': '4,345,126', 'type': 'Uncategorized'},\n",
" {'text': '(2,255,010', 'type': 'Uncategorized'},\n",
" {'text': 'Other income (expense):', 'type': 'Title'},\n",
" {'text': 'Interest income', 'type': 'Title'},\n",
" {'text': '2,048', 'type': 'Uncategorized'},\n",
" {'text': '25,702', 'type': 'Uncategorized'},\n",
" {'text': 'Interest expense', 'type': 'Title'},\n",
" {'text': '(1,505,386', 'type': 'Uncategorized'},\n",
" {'text': '(683,357', 'type': 'Uncategorized'},\n",
" {'text': 'Share redemption consideration', 'type': 'Title'},\n",
" {'text': '(682,469', 'type': 'Uncategorized'},\n",
" {'text': '(781,928', 'type': 'Uncategorized'},\n",
" {'text': 'Foreign currency exchange (loss)', 'type': 'Title'},\n",
" {'text': '(64,879', 'type': 'Uncategorized'},\n",
" {'text': '(34,961', 'type': 'Uncategorized'},\n",
" {'text': 'Change in estimated fair value of interest rate swap liability',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '66,009', 'type': 'Uncategorized'},\n",
" {'text': '74,487', 'type': 'Uncategorized'},\n",
" {'text': 'Paycheck Protection Program Loan forgiveness', 'type': 'Title'},\n",
" {'text': '840,243', 'type': 'Uncategorized'},\n",
" {'text': 'Total other expense', 'type': 'Title'},\n",
" {'text': '(2,184,677', 'type': 'Uncategorized'},\n",
" {'text': '(559,814', 'type': 'Uncategorized'},\n",
" {'text': 'Income (loss) before (provision) benefit for income taxes',\n",
" 'type': 'Title'},\n",
" {'text': '2,160,449', 'type': 'Uncategorized'},\n",
" {'text': '(2,814,824', 'type': 'Uncategorized'},\n",
" {'text': '(Provision) benefit for income taxes', 'type': 'Title'},\n",
" {'text': '(48,637', 'type': 'Uncategorized'},\n",
" {'text': '605,937', 'type': 'Uncategorized'},\n",
" {'text': 'Net income (loss)', 'type': 'Title'},\n",
" {'text': '2,111,812', 'type': 'Uncategorized'},\n",
" {'text': '(2,208,887', 'type': 'Uncategorized'},\n",
" {'text': 'Foreign currency translation adjustment', 'type': 'Title'},\n",
" {'text': '(184,884', 'type': 'Uncategorized'},\n",
" {'text': '37,691', 'type': 'Uncategorized'},\n",
" {'text': 'Comprehensive income (loss)', 'type': 'Title'},\n",
" {'text': '1,926,928', 'type': 'Uncategorized'},\n",
" {'text': '(2,171,196', 'type': 'Uncategorized'},\n",
" {'text': 'Net income (loss) per share:', 'type': 'Title'},\n",
" {'text': 'Basic', 'type': 'Title'},\n",
" {'text': '0.10', 'type': 'Uncategorized'},\n",
" {'text': '(0.12', 'type': 'Uncategorized'},\n",
" {'text': 'Diluted', 'type': 'Title'},\n",
" {'text': '0.10', 'type': 'Uncategorized'},\n",
" {'text': '(0.12', 'type': 'Uncategorized'},\n",
" {'text': 'Weighted-average shares outstanding:', 'type': 'Title'},\n",
" {'text': 'Basic', 'type': 'Title'},\n",
" {'text': '20,328,110', 'type': 'Uncategorized'},\n",
" {'text': '18,282,262', 'type': 'Uncategorized'},\n",
" {'text': 'Diluted', 'type': 'Title'},\n",
" {'text': '21,840,609', 'type': 'Uncategorized'},\n",
" {'text': '18,282,262', 'type': 'Uncategorized'},\n",
" {'text': 'The accompanying notes are an integral part of the consolidated financial statements.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '18', 'type': 'Uncategorized'},\n",
" {'text': 'GALAXY GAMING, INC.', 'type': 'Title'},\n",
" {'text': 'CONSOLIDATED STATEMENTS OF CHANGES IN STOCKHOLDERS DEFICIT',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'YEARS ENDED DECEMBER\\xa031, 2021 AND 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Common Stock', 'type': 'Title'},\n",
" {'text': 'Additional Paid in', 'type': 'Title'},\n",
" {'text': 'Accumulated (Deficit)', 'type': 'Title'},\n",
" {'text': 'Accumulated Other', 'type': 'Title'},\n",
" {'text': \"Total Shareholders'\", 'type': 'Title'},\n",
" {'text': 'Shares', 'type': 'Title'},\n",
" {'text': 'Amount', 'type': 'Title'},\n",
" {'text': 'Capital', 'type': 'Title'},\n",
" {'text': 'Earnings', 'type': 'Title'},\n",
" {'text': 'Comprehensive Income (Loss)', 'type': 'Title'},\n",
" {'text': 'Deficit', 'type': 'Title'},\n",
" {'text': 'Beginning balance, January 1, 2020', 'type': 'NarrativeText'},\n",
" {'text': '18,017,944', 'type': 'Uncategorized'},\n",
" {'text': '18,018', 'type': 'Uncategorized'},\n",
" {'text': '5,795,636', 'type': 'Uncategorized'},\n",
" {'text': '(33,446,276', 'type': 'Uncategorized'},\n",
" {'text': '(27,632,622', 'type': 'Uncategorized'},\n",
" {'text': 'Shares issued in connection with PGP asset acquisition',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '3,141,361', 'type': 'Uncategorized'},\n",
" {'text': '3,141', 'type': 'Uncategorized'},\n",
" {'text': '3,986,387', 'type': 'Uncategorized'},\n",
" {'text': '3,989,528', 'type': 'Uncategorized'},\n",
" {'text': 'Net loss', 'type': 'Title'},\n",
" {'text': '(2,208,887', 'type': 'Uncategorized'},\n",
" {'text': '(2,208,887', 'type': 'Uncategorized'},\n",
" {'text': 'Foreign currency translation', 'type': 'Title'},\n",
" {'text': '37,691', 'type': 'Uncategorized'},\n",
" {'text': '37,691', 'type': 'Uncategorized'},\n",
" {'text': 'Stock options exercised', 'type': 'NarrativeText'},\n",
" {'text': '558,000', 'type': 'Uncategorized'},\n",
" {'text': '559', 'type': 'Uncategorized'},\n",
" {'text': '278,775', 'type': 'Uncategorized'},\n",
" {'text': '279,334', 'type': 'Uncategorized'},\n",
" {'text': 'Share-based compensation', 'type': 'Title'},\n",
" {'text': '253,333', 'type': 'Uncategorized'},\n",
" {'text': '253', 'type': 'Uncategorized'},\n",
" {'text': '737,738', 'type': 'Uncategorized'},\n",
" {'text': '737,991', 'type': 'Uncategorized'},\n",
" {'text': 'Balance, December\\xa031, 2020', 'type': 'Title'},\n",
" {'text': '21,970,638', 'type': 'Uncategorized'},\n",
" {'text': '21,971', 'type': 'Uncategorized'},\n",
" {'text': '10,798,536', 'type': 'Uncategorized'},\n",
" {'text': '(35,655,163', 'type': 'Uncategorized'},\n",
" {'text': '37,691', 'type': 'Uncategorized'},\n",
" {'text': '(24,796,965', 'type': 'Uncategorized'},\n",
" {'text': 'Warrants issued in connection with Fortress credit agreement',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '3,149,002', 'type': 'Uncategorized'},\n",
" {'text': '3,149,002', 'type': 'Uncategorized'},\n",
" {'text': 'Net income', 'type': 'Title'},\n",
" {'text': '2,111,812', 'type': 'Uncategorized'},\n",
" {'text': '2,111,812', 'type': 'Uncategorized'},\n",
" {'text': 'Foreign currency translation', 'type': 'Title'},\n",
" {'text': '(184,884', 'type': 'Uncategorized'},\n",
" {'text': '(184,884', 'type': 'Uncategorized'},\n",
" {'text': 'Stock options exercised', 'type': 'NarrativeText'},\n",
" {'text': '1,094,998', 'type': 'Uncategorized'},\n",
" {'text': '1,095', 'type': 'Uncategorized'},\n",
" {'text': '901,062', 'type': 'Uncategorized'},\n",
" {'text': '902,157', 'type': 'Uncategorized'},\n",
" {'text': 'Share-based compensation', 'type': 'Title'},\n",
" {'text': '458,333', 'type': 'Uncategorized'},\n",
" {'text': '458', 'type': 'Uncategorized'},\n",
" {'text': '1,531,997', 'type': 'Uncategorized'},\n",
" {'text': '1,532,455', 'type': 'Uncategorized'},\n",
" {'text': 'Balance, December\\xa031, 2021', 'type': 'Title'},\n",
" {'text': '23,523,969', 'type': 'Uncategorized'},\n",
" {'text': '23,524', 'type': 'Uncategorized'},\n",
" {'text': '16,380,597', 'type': 'Uncategorized'},\n",
" {'text': '(33,543,351', 'type': 'Uncategorized'},\n",
" {'text': '(147,193', 'type': 'Uncategorized'},\n",
" {'text': '(17,286,423', 'type': 'Uncategorized'},\n",
" {'text': 'The accompanying notes are an integral part of the consolidated financial statements.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '19', 'type': 'Uncategorized'},\n",
" {'text': 'GALAXY GAMING, INC.', 'type': 'Title'},\n",
" {'text': 'CONSOLIDATED STATEMENTS OF CASH FLOWS', 'type': 'Title'},\n",
" {'text': 'YEARS ENDED December\\xa031, 2021 AND 2020', 'type': 'Title'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Cash flows from operating activities:', 'type': 'NarrativeText'},\n",
" {'text': 'Net income (loss)', 'type': 'Title'},\n",
" {'text': '2,111,812', 'type': 'Uncategorized'},\n",
" {'text': '(2,208,887', 'type': 'Uncategorized'},\n",
" {'text': 'Adjustments to reconcile net income (loss) to net cash provided by (used in) operating activities:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Depreciation and amortization', 'type': 'Title'},\n",
" {'text': '2,858,991', 'type': 'Uncategorized'},\n",
" {'text': '2,222,042', 'type': 'Uncategorized'},\n",
" {'text': 'Amortization of right-of-use assets', 'type': 'Title'},\n",
" {'text': '228,522', 'type': 'Uncategorized'},\n",
" {'text': '329,040', 'type': 'Uncategorized'},\n",
" {'text': 'Amortization of debt issuance costs and debt discount',\n",
" 'type': 'Title'},\n",
" {'text': '369,093', 'type': 'Uncategorized'},\n",
" {'text': '38,195', 'type': 'Uncategorized'},\n",
" {'text': 'Bad debt expense', 'type': 'Title'},\n",
" {'text': '358,160', 'type': 'Uncategorized'},\n",
" {'text': '226,691', 'type': 'Uncategorized'},\n",
" {'text': 'Change in estimated fair value of interest rate swap liability',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '(66,009', 'type': 'Uncategorized'},\n",
" {'text': '(74,487', 'type': 'Uncategorized'},\n",
" {'text': 'Gain on forgiveness of Paycheck Protection Program Loan',\n",
" 'type': 'Title'},\n",
" {'text': '(835,300', 'type': 'Uncategorized'},\n",
" {'text': 'Deferred income tax', 'type': 'Title'},\n",
" {'text': '24,326', 'type': 'Uncategorized'},\n",
" {'text': '596,874', 'type': 'Uncategorized'},\n",
" {'text': 'Share-based compensation', 'type': 'Title'},\n",
" {'text': '1,532,455', 'type': 'Uncategorized'},\n",
" {'text': '737,991', 'type': 'Uncategorized'},\n",
" {'text': 'Changes in operating assets and liabilities:', 'type': 'Title'},\n",
" {'text': 'Accounts receivable', 'type': 'Title'},\n",
" {'text': '(2,367,258', 'type': 'Uncategorized'},\n",
" {'text': '(236,890', 'type': 'Uncategorized'},\n",
" {'text': 'Inventory', 'type': 'Title'},\n",
" {'text': '(427,795', 'type': 'Uncategorized'},\n",
" {'text': '(51,709', 'type': 'Uncategorized'},\n",
" {'text': 'Income tax receivable/payable', 'type': 'Title'},\n",
" {'text': '(306,887', 'type': 'Uncategorized'},\n",
" {'text': '(893,930', 'type': 'Uncategorized'},\n",
" {'text': 'Prepaid expense and other current assets', 'type': 'Title'},\n",
" {'text': '680,663', 'type': 'Uncategorized'},\n",
" {'text': '259,616', 'type': 'Uncategorized'},\n",
" {'text': 'Other assets', 'type': 'Title'},\n",
" {'text': '(49,923', 'type': 'Uncategorized'},\n",
" {'text': 'Accounts payable', 'type': 'Title'},\n",
" {'text': '(91,242', 'type': 'Uncategorized'},\n",
" {'text': '(1,081,836', 'type': 'Uncategorized'},\n",
" {'text': 'Accrued expenses', 'type': 'NarrativeText'},\n",
" {'text': '1,338,195', 'type': 'Uncategorized'},\n",
" {'text': '(257,179', 'type': 'Uncategorized'},\n",
" {'text': 'Revenue contract liability', 'type': 'Title'},\n",
" {'text': '8,333', 'type': 'Uncategorized'},\n",
" {'text': 'Operating lease liabilities', 'type': 'NarrativeText'},\n",
" {'text': '(197,860', 'type': 'Uncategorized'},\n",
" {'text': '(403,363', 'type': 'Uncategorized'},\n",
" {'text': 'Net cash provided by (used in) operating activities',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '6,003,576', 'type': 'Uncategorized'},\n",
" {'text': '(1,633,132', 'type': 'Uncategorized'},\n",
" {'text': 'Cash flows from investing activities:', 'type': 'NarrativeText'},\n",
" {'text': 'Investment in intangible assets', 'type': 'Title'},\n",
" {'text': '(198,667', 'type': 'Uncategorized'},\n",
" {'text': 'Proceeds from sale of property and equipment', 'type': 'Title'},\n",
" {'text': '25,000', 'type': 'Uncategorized'},\n",
" {'text': 'Acquisition of PGP assets, net of cash acquired',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '(6,393,920', 'type': 'Uncategorized'},\n",
" {'text': 'Acquisition of property and equipment', 'type': 'Title'},\n",
" {'text': '(60,067', 'type': 'Uncategorized'},\n",
" {'text': '(62,794', 'type': 'Uncategorized'},\n",
" {'text': 'Net cash used in investing activities', 'type': 'NarrativeText'},\n",
" {'text': '(233,734', 'type': 'Uncategorized'},\n",
" {'text': '(6,456,714', 'type': 'Uncategorized'},\n",
" {'text': 'Cash flows from financing activities:', 'type': 'Title'},\n",
" {'text': 'Proceeds from draw on revolving loan', 'type': 'NarrativeText'},\n",
" {'text': '1,000,000', 'type': 'Uncategorized'},\n",
" {'text': 'Proceeds from Paycheck Protection Program', 'type': 'Title'},\n",
" {'text': '835,300', 'type': 'Uncategorized'},\n",
" {'text': 'Proceeds from Mainstreet Priority Loan Program', 'type': 'Title'},\n",
" {'text': '3,920,000', 'type': 'Uncategorized'},\n",
" {'text': 'Proceeds from stock option exercises', 'type': 'Title'},\n",
" {'text': '902,157', 'type': 'Uncategorized'},\n",
" {'text': '279,334', 'type': 'Uncategorized'},\n",
" {'text': 'Principal payments on long-term debt', 'type': 'Title'},\n",
" {'text': '(13,104,942', 'type': 'Uncategorized'},\n",
" {'text': '(1,645,400', 'type': 'Uncategorized'},\n",
" {'text': 'Proceeds from Fortress Credit Agreement, net', 'type': 'Title'},\n",
" {'text': '58,800,000', 'type': 'Uncategorized'},\n",
" {'text': 'Payments of debt issuance costs', 'type': 'Title'},\n",
" {'text': '(3,138,521', 'type': 'Uncategorized'},\n",
" {'text': 'Settlement of Redemption Consideration Obligation',\n",
" 'type': 'Title'},\n",
" {'text': '(39,096,401', 'type': 'Uncategorized'},\n",
" {'text': 'Net cash provided by financing activities',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '4,362,293', 'type': 'Uncategorized'},\n",
" {'text': '4,389,234', 'type': 'Uncategorized'},\n",
" {'text': 'Effect of exchange rate changes on cash', 'type': 'Title'},\n",
" {'text': '(66,809', 'type': 'Uncategorized'},\n",
" {'text': '7,302', 'type': 'Uncategorized'},\n",
" {'text': 'Net increase (decrease) in cash and cash equivalents',\n",
" 'type': 'Title'},\n",
" {'text': '10,065,326', 'type': 'Uncategorized'},\n",
" {'text': '(3,693,310', 'type': 'Uncategorized'},\n",
" {'text': 'Cash and cash equivalents beginning of period',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '5,993,388', 'type': 'Uncategorized'},\n",
" {'text': '9,686,698', 'type': 'Uncategorized'},\n",
" {'text': 'Cash and cash equivalents end of period', 'type': 'Title'},\n",
" {'text': '16,058,714', 'type': 'Uncategorized'},\n",
" {'text': '5,993,388', 'type': 'Uncategorized'},\n",
" {'text': 'Supplemental cash flow information:', 'type': 'Title'},\n",
" {'text': 'Cash paid for interest', 'type': 'NarrativeText'},\n",
" {'text': '940,097', 'type': 'Uncategorized'},\n",
" {'text': '612,840', 'type': 'Uncategorized'},\n",
" {'text': 'Cash paid for income taxes', 'type': 'NarrativeText'},\n",
" {'text': '319,967', 'type': 'Uncategorized'},\n",
" {'text': '75,786', 'type': 'Uncategorized'},\n",
" {'text': 'Supplemental schedule of non-cash activities:', 'type': 'Title'},\n",
" {'text': 'Shares issued in connection with PGP asset acquisition',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '3,989,528', 'type': 'Uncategorized'},\n",
" {'text': 'Gain on forgiveness of Paycheck Protection Program Loan',\n",
" 'type': 'Title'},\n",
" {'text': '835,300', 'type': 'Uncategorized'},\n",
" {'text': 'Fortress warrants issued', 'type': 'NarrativeText'},\n",
" {'text': '3,149,002', 'type': 'Uncategorized'},\n",
" {'text': 'Insurance acquired under note payable', 'type': 'NarrativeText'},\n",
" {'text': '653,521', 'type': 'Uncategorized'},\n",
" {'text': '678,108', 'type': 'Uncategorized'},\n",
" {'text': 'Right-of-use assets obtained in exchange for lease liabilities',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '28,604', 'type': 'Uncategorized'},\n",
" {'text': '1,390,002', 'type': 'Uncategorized'},\n",
" {'text': 'Inventory transferred to assets deployed at client locations',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '326,072', 'type': 'Uncategorized'},\n",
" {'text': '48,838', 'type': 'Uncategorized'},\n",
" {'text': 'The accompanying notes are an integral part of the consolidated financial statements.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '20', 'type': 'Uncategorized'},\n",
" {'text': 'GALAXY GAMING, INC.', 'type': 'Title'},\n",
" {'text': 'NOTES TO CONSOLIDATED FINANCIAL STATEMENTS', 'type': 'Title'},\n",
" {'text': 'YEARS ENDED DECEMBER\\xa031, 2021 AND 2020',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'NOTE 1. NATURE OF OPERATIONS', 'type': 'Title'},\n",
" {'text': 'Unless the context indicates otherwise, references to “Galaxy Gaming, Inc.,” “we,” “us,” “our,” or the “Company,” refer to Galaxy Gaming, Inc., a Nevada corporation (“Galaxy Gaming”).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We are an established global gaming company specializing in the design, development, acquisition, assembly, marketing and licensing of proprietary casino table games and associated technology, platforms and systems for the casino gaming industry. Casinos use our proprietary products and services to enhance their gaming operations and improve their profitability, productivity and security, as well as to offer popular cutting-edge gaming entertainment content and technology to their players. We market our products and services to online casinos worldwide and to land-based casino gaming companies in North America, the Caribbean, Central America, the United Kingdom, Europe and Africa and to cruise ship companies. We license our products and services for use solely in legalized gaming markets. We also license our content and distribute content from other companies to iGaming operators throughout the world.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': \"Share Redemption. On May 6, 2019, we redeemed all 23,271,667 shares of our common stock held by Triangulum Partners, LLC (“Triangulum”), an entity controlled by Robert B. Saucier, Galaxy Gaming's founder, and, prior to the redemption, the holder of a majority of our outstanding common stock. Our Articles of Incorporation (the “Articles”) provide that if certain events occur in relation to a stockholder that is required to undergo a gaming suitability review or similar investigative process, we have the option to purchase all or any part of such stockholders shares at a price per share that is equal to the average closing share price over the thirty calendar days preceding the purchase. The average closing share price over the thirty calendar days preceding the redemption was $1.68 per share.\",\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'The consideration owed to Triangulum for the redemption was $39,096,401 (the “Redemption Consideration Obligation”). See Note 10. All of the litigation related to the Redemption Consideration Obligation and other matters between the Company and Triangulum was resolved on November 15, 2021, when Galaxy made a settlement payment in the amount of $39,507,717 to Triangulum. See Note 10 and Note 11.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Membership Interest Purchase Agreement. On February 25, 2020, Galaxy Gaming entered into a Membership Interest Purchase Agreement, dated February 25, 2020 (the “Purchase Agreement”), between the Company and the membership interest holders of Progressive Games Partners, LLC (“PGP”).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'On August 21, 2020, the Company entered into a First Amendment to the Purchase Agreement between the Company and the membership interest holders of PGP. The First Amendment, among other things, fixed the cash portion of the purchase price at $6.425 million and established that the stock portion would be satisfied through the issuance of 3,141,361 shares of the Companys common stock with a value of $1.27 per share on the date of the acquisition. The shares issued are being held in escrow with Philadelphia Stock Transfer, Inc., the Companys stock transfer agent. The shares were released to the sellers in August 2021.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'On August 21, 2020, the Company completed the acquisition of 100% of the member interests in PGP. The entirety of the purchase price ($10,414,528) has been allocated to customer relationships and is included in Other intangible assets, net, on the Companys balance sheet. See Note 7. The Company also acquired certain receivables and payables in the net amount of $581,885, which was to be remitted to the sellers of PGP as the receivables and payables were settled. The remaining balance of $76,053 at December 31, 2020 was paid to the sellers on May 7, 2021.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Management has determined that, for accounting purposes, the PGP transaction does not meet the definition of a business combination and, therefore, has been accounted for as an asset acquisition.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'COVID-19. On March 11, 2020, the World Health Organization declared a pandemic related to the COVID-19 outbreak, which led to a global health emergency.\\xa0The public-health impact of the outbreak continues to remain largely unknown and still evolving as new strains of COVID-19 continue to evolve. The related health crisis could continue to adversely affect the global economy, resulting in continued economic downturn that could impact demand for our products. Virtually all of our land-based clients have reopened, although casino revenues have not returned to pre-COVID-19 levels.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'We rely on third-party suppliers and manufacturers in China, many of whom were shut down or severely cut back production during some portion of 2020, with supply shortages continuing into 2021. Although we have been able to maintain inventories adequate to our needs, any future disruption of our suppliers and their contract manufacturers may impact our sales and operating results going forward.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '21', 'type': 'Uncategorized'},\n",
" {'text': 'Because of the uncertainties of COVID-19, the Company drew on its Revolving Loan in the amount of $1,000,000 on March 12, 2020. Also, on April 17, 2020, the Company obtained the Paycheck Protection Program (the “PPP Loan”) pursuant to the Coronavirus Aid, Relief, and Economic Security Act (the “CARES Act”) and the Paycheck Protection Program Flexibility Act (the “Flexibility Act”). On July 16, 2020, the Company filed an application and supporting documentation for forgiveness in full of the PPP Loan. On November 21, 2020, the Company received notification the PPP Loan had been forgiven in full, including $4,943 in accrued interest. Pursuant to the CARES Act, the Federal Reserve created the Main Street Priority Loan Program (“MSPLP”) to provide financing for small and medium-sized businesses. On October 26, 2020, the Company borrowed $4 million from Zions Bancorporation N.A., dba Nevada State Bank under this program. All of the Companys obligations under the Nevada State Bank credit agreement were repaid on November 15, 2021. See Note 10.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Credit Agreement Amendments and Fortress Credit Agreement. See Note 10 for discussion of amendments made to the Companys credit agreement and the entry into the Fortress Credit Agreement.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'NOTE 2.\\xa0SIGNIFICANT ACCOUNTING POLICIES', 'type': 'Title'},\n",
" {'text': 'The accompanying consolidated financial statements have been prepared in accordance with',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'generally accepted accounting principles in the United States of America (“U.S. GAAP”)',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'and the rules of', 'type': 'Title'},\n",
" {'text': 'the Securities and Exchange Commission (“SEC”)', 'type': 'Title'},\n",
" {'text': '. In the opinion of management,', 'type': 'Uncategorized'},\n",
" {'text': 'the accompanying consolidated financial statements contain all necessary adjustments (including',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'all', 'type': 'Title'},\n",
" {'text': 'those of a recurring nature', 'type': 'Title'},\n",
" {'text': 'and those necessary in order for the financial statements to be not misleading)',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'and all disclosures to present fairly our financial position and the results of our operations and cash flows for the periods presented',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Basis of accounting. The consolidated financial statements have been prepared on the accrual basis of accounting in conformity with U.S. GAAP.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Use of estimates and assumptions. We are required to make estimates, judgments and assumptions that we believe are reasonable based on our historical experience, contract terms, observance of known trends in our Company and the industry as a whole, and information available from other outside sources. Our estimates affect reported amounts for assets, liabilities, revenues, expenses and related disclosures. Actual results may differ from initial estimates.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Consolidation. The financial statements are presented on a consolidated basis and include the results of the Company and its wholly owned subsidiary, PGP. All intercompany transactions and balances have been eliminated in consolidation.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Reclassifications. Certain accounts and financial statement captions in the prior period have been reclassified to conform to the current period financial statement presentations and had no effect on net income (loss).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Cash and cash equivalents.\\xa0We consider cash on hand and cash in banks as cash. We consider certificates of deposit and other short-term securities with maturities of three months or less when purchased as cash equivalents. Our cash in bank balances are deposited in insured banking institutions, which are insured up to $250,000\\xa0\\xa0per account. To date, we have not experienced uninsured losses, and we believe the risk of future loss is negligible.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Accounts receivable and allowance for doubtful accounts. Accounts receivable are stated at face value less an allowance for doubtful accounts. Accounts receivable are non-interest bearing. The Company reviews the accounts receivable on a monthly basis to determine if any receivables will potentially be uncollectible. The allowance for doubtful accounts is estimated based on specific customer reviews, historical collection trends and current economic and business conditions.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Inventory.\\xa0Inventory consists of ancillary products such as signs, layouts and bases for the various games and electronic devices and components to support all our electronic enhancements used on casino table games (“Enhanced Table Systems”), and we maintain inventory levels based on historical and industry trends.\\xa0We regularly assess inventory quantities for excess and obsolescence primarily based on forecasted product demand. Inventory is valued at the lower of net realizable value or cost, which is determined by the average cost method.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Assets deployed at client locations, net.\\xa0Our Enhanced Table Systems are assembled by us and accounted for as inventory until deployed at our casino clients premises (Note 6). Once deployed and placed into service at client locations, the assets are transferred from inventory and reported as assets deployed at client locations. These assets are stated at cost, net of accumulated depreciation. Depreciation on assets deployed at client locations\\xa0is calculated using the straight-line method over a three-year period.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Property and equipment, net.\\xa0Property and equipment are being depreciated over their estimated useful lives (three\\xa0to\\xa0five\\xa0years) using the straight-line method of depreciation (Note 5). Property and equipment are analyzed for potential impairment whenever events or changes in circumstances indicate the carrying value may not be recoverable and exceeds their fair value.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Goodwill.\\xa0Goodwill (Note 7) is assessed for impairment at least annually\\xa0or at other times during the year if events or circumstances indicate that it is more-likely-than-not that the fair value of a reporting asset is below the carrying amount. If found to be impaired, the carrying amount will be reduced, and an impairment loss will be recognized.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '22', 'type': 'Uncategorized'},\n",
" {'text': 'Other\\xa0intangible assets, net.\\xa0The following intangible assets have finite lives and are being amortized using the straight-line method over their estimated economic lives as follows:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Patents', 'type': 'Title'},\n",
" {'text': '4 - 20 years', 'type': 'Title'},\n",
" {'text': 'Client relationships', 'type': 'Title'},\n",
" {'text': '9 - 22 years', 'type': 'Title'},\n",
" {'text': 'Trademarks', 'type': 'Title'},\n",
" {'text': '12 - 30 years', 'type': 'Title'},\n",
" {'text': 'Non-compete agreements', 'type': 'Title'},\n",
" {'text': '9 years', 'type': 'Title'},\n",
" {'text': 'Software', 'type': 'Title'},\n",
" {'text': '3 years', 'type': 'Title'},\n",
" {'text': 'Other intangible assets (Note 7) are analyzed for potential impairment at least annually or whenever events or changes in circumstances indicate the carrying value may not be recoverable and exceeds the fair value, which is the sum of the undiscounted cash flows expected to result from the use and eventual disposition of the intangible assets. No impairment was recorded for the years ended December 31, 2021 or 2020.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Interest rates swap agreement. In May 2018, the Company entered into an interest rate swap agreement to reduce the impact of changes in interest rates on its floating rate long-term debt. The interest rate swap has not been designated a hedging instrument and is adjusted to fair value through earnings in the Companys statements of operations. The interest rate swap agreement matured on May 1, 2021.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Fair value of financial instruments.\\xa0We estimate fair value for financial assets and liabilities in accordance with Financial Accounting Standards Board (“FASB”) Accounting Standards Codification (“ASC”) Topic 820, Fair Value Measurement (“ASC 820”). ASC 820 defines fair value, provides guidance for measuring fair value, requires certain disclosures and discusses valuation techniques, such as the market approach (comparable market prices), the income approach (present value of future income or cash flow) and the cost approach (cost to replace the service capacity of an asset or replacement cost). ASC 820 utilizes a fair value hierarchy that prioritizes the inputs to valuation techniques used to measure fair value into three broad levels:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '•\\n\\nLevel 2: Inputs other than quoted prices that are observable for the asset or liability, either directly or indirectly. These include quoted prices for similar assets or liabilities in active markets and quoted prices for identical or similar assets or liabilities in markets that are not active.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Level 1: Observable inputs such as quoted prices (unadjusted) in active markets for identical assets or liabilities.',\n",
" 'type': 'ListItem'},\n",
" {'text': '•\\n\\nLevel 3: Unobservable inputs that reflect the reporting entitys own assumptions.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Level 2: Inputs other than quoted prices that are observable for the asset or liability, either directly or indirectly. These include quoted prices for similar assets or liabilities in active markets and quoted prices for identical or similar assets or liabilities in markets that are not active.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'The estimated fair values of cash equivalents, accounts receivable and accounts payable approximate their carrying amounts due to their short-term nature. The estimated fair value of our long-term debt approximates its carrying value based upon our expected borrowing rate for debt with similar remaining maturities and comparable risk. The Company currently has no financial instruments measured at estimated fair value on a recurring basis based on valuation reports provided by counterparties.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'Level 3: Unobservable inputs that reflect the reporting entitys own assumptions.',\n",
" 'type': 'ListItem'},\n",
" {'text': 'The estimated fair values of cash equivalents, accounts receivable and accounts payable approximate their carrying amounts due to their short-term nature. The estimated fair value of our long-term debt approximates its carrying value based upon our expected borrowing rate for debt with similar remaining maturities and comparable risk. The Company currently has no financial instruments measured at estimated fair value on a recurring basis based on valuation reports provided by counterparties.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Leases.\\xa0We account for lease components (such as rent payments) separately from non-lease components (such as common-area maintenance costs, real estate and sales taxes and insurance costs). Operating and finance leases with terms greater than 12 months are recorded on the consolidated balance sheets as right-of-use assets with corresponding lease liabilities. Lease expense is recognized on a straight-line basis using the discount rate implicit in each lease or our incremental borrowing rate at lease commencement date (Note 9).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Revenue recognition.\\xa0We account for our revenue in accordance with ASC Topic 606,\\xa0Revenue from Contracts with Customers. See Note 3.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Costs of ancillary products and assembled components.\\xa0Ancillary products include\\xa0pay tables\\xa0(display of payouts), bases, layouts, signage and other items as they relate to support of specific proprietary games in connection with the licensing of our games. Assembled components represent the cost of the equipment, devices and incorporated software used to support our Enhanced Table Systems.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Research and development.\\xa0We incur research and development (“R&D”) costs to develop our new and next-generation products. Our products reach commercial feasibility shortly before the products are released, and therefore R&D costs are expensed as incurred. Employee related costs associated with product development are included in R&D costs.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Foreign currency translation.\\xa0The functional currency for PGP is the Euro. Gains and losses from settlement of transactions involving foreign currency amounts are included in other income or expense in the consolidated statements of operations. Gains and losses resulting from translating assets and liabilities from the functional currency to U.S. dollars are included in accumulated other comprehensive income or (loss) in the consolidated statements of changes in stockholders deficit.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Net income per share.\\xa0Basic net income per share is calculated by dividing net income by the weighted-average number of common shares issued and outstanding during the year. Diluted net income per share is similar to basic, except that the weighted-average number of shares outstanding is increased by the potentially dilutive effect of outstanding stock options and restricted stock, if applicable, during the year.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '23', 'type': 'Uncategorized'},\n",
" {'text': 'Segmented information. We define operating segments as components of our enterprise for which separate financial information is reviewed regularly by the chief operating decision-makers to evaluate performance and to make operating decisions. We currently have two operating segments (land-based gaming and online gaming) which are aggregated into one reporting segment.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Share-based compensation.\\xa0We recognize compensation expense for all restricted stock and stock option awards made to employees, directors and independent contractors. The fair value of restricted stock is measured using the grant date trading price of\\xa0our\\xa0stock.\\xa0The fair value of stock option awards (Note 13) is estimated at the grant date using the Black-Scholes option-pricing model, and the portion that is ultimately expected to vest is recognized as compensation cost over the requisite service period. We have elected to recognize compensation expense for all options with graded vesting on a straight-line basis over the vesting period of the entire option. The determination of fair value using the Black-Scholes pricing model is affected by our stock price as well as assumptions regarding a number of complex and subjective variables, including expected stock price volatility, risk-free interest rate, expected dividends and projected employee stock option exercise behaviors. We estimate volatility based on historical volatility of our common stock, and estimate the expected term based on several criteria, including the vesting period of the grant and the term of the award. We estimate employee stock option exercise behavior based on actual historical exercise activity and assumptions regarding future exercise activity of unexercised, outstanding options.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Income taxes.\\xa0We are subject to income taxes in both the United States and in certain non-U.S. jurisdictions. We account for income taxes in accordance with ASC 740, Income Taxes (“ASC 740”) using the asset and liability method. Under the asset and liability method, deferred tax assets and liabilities are recognized for the future tax consequences attributable to temporary differences between the financial statement carrying amounts of existing assets and liabilities and their respective tax bases, and operating loss and tax credit carryforwards. These temporary differences will result in deductible or taxable amounts in future years when the reported amounts of the assets or liabilities are recovered or settled. Deferred tax assets and liabilities are measured using enacted tax rates expected to apply to taxable income in the years in which those temporary differences are expected to be recovered or settled. The effect on deferred tax assets and liabilities of a change in tax rates is recognized in income in the period that includes the enactment date. A valuation allowance is provided when it is more-likely-than-not that some or all of the deferred tax assets may not be realized. Adjustments to the valuation allowance increase or decrease our income tax provision or benefit. To the extent we believe that recovery is more likely than not, we establish a valuation allowance against these deferred tax assets. Significant judgment is required in determining our provision for income taxes, our deferred tax assets and liabilities, and any valuation allowance recorded against our deferred tax assets. As of December\\xa031, 2021 and 2020, we recorded a full valuation allowance against certain deferred assets.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'In the ordinary course of business, there are transactions and calculations where the ultimate tax outcome is uncertain. Additionally, our tax returns are subject to audit by various tax authorities. Although we believe that our estimates are reasonable, actual results could differ from these estimates. We recognize the tax benefit from an uncertain tax position if it is more-likely-than-not that the tax position will be sustained on examination by the taxing authorities, based on an evaluation of the technical merits of the position, which requires a significant degree of judgment (Note 13).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Recently adopted accounting standards. Simplifying the Accounting for Income Taxes. In December 2019, the FASB issued Accounting Standard Update (“ASU”) No. 2019-12, Income Taxes (Topic 740): Simplifying the Accounting for Income Taxes (ASU 2019-12), which simplifies the accounting for income taxes. This guidance is effective for the first quarter of 2021 on a prospective basis. We adopted the new standard effective January 1, 2021, and its adoption did not have a material impact on our consolidated financial statements.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'New accounting standards not yet adopted. Financial Instruments Credit Losses. In February 2020, the FASB issued ASU No. 2020-02, Financial Instruments Credit Losses (Topic 326). ASU 2020-02 provides updated guidance on how an entity should measure credit losses on financial instruments and delayed the effective date of Topic 326 for smaller reporting companies until fiscal years beginning after December 15, 2022. Early adoption is permitted. We do not believe the adoption of this guidance will have a material impact on our financial statements or related disclosures.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'NOTE 3. REVENUE RECOGNITION', 'type': 'Title'},\n",
" {'text': 'Revenue recognition. We generate revenue primarily from the licensing of our intellectual property. We recognize revenue under recurring fee license contracts monthly as we satisfy our performance obligation, which consists of granting the customer the right to use our intellectual property. Amounts billed are determined based on flat rates or usage rates stipulated in the customer contract.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Disaggregation of revenue', 'type': 'Title'},\n",
" {'text': 'The following table disaggregates our revenue by geographic location for the years ended December\\xa031, 2021 and 2020:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'North America and Caribbean', 'type': 'Title'},\n",
" {'text': '10,024,537', 'type': 'Uncategorized'},\n",
" {'text': '5,757,143', 'type': 'Uncategorized'},\n",
" {'text': 'Europe, Middle East and Africa', 'type': 'Title'},\n",
" {'text': '9,959,841', 'type': 'Uncategorized'},\n",
" {'text': '4,473,173', 'type': 'Uncategorized'},\n",
" {'text': 'Total revenue', 'type': 'Title'},\n",
" {'text': '19,984,378', 'type': 'Uncategorized'},\n",
" {'text': '10,230,316', 'type': 'Uncategorized'},\n",
" {'text': 'Contract liabilities. Amounts billed and cash received in advance of performance obligations fulfilled are recorded as contract liabilities and recognized as performance obligations are fulfilled.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '24', 'type': 'Uncategorized'},\n",
" {'text': 'Contract assets. The Companys contract assets consist solely of unbilled receivables which are recorded when the Company recognizes revenue in advance of billings. Unbilled receivables totaled $771,293 and $502,860 for the years ended December 31, 2021 and 2020 and are included in the accounts receivable balance in the accompanying balance sheets.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Royalty agreements. From time to time, the Company licenses intellectual property from third-party owners and the Company, in turn, re-licenses that intellectual property to its casino clients. In these arrangements, the Company usually agrees to pay the owner of the intellectual property a royalty based on the revenues the Company receives from licensing the intellectual property to its casino clients.\\xa0For the years ended December 31, 2021 and 2020, license royalty payments of $1,670,210 and $438,837, respectively, are recorded net in revenue.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'NOTE 4. INVENTORY', 'type': 'Title'},\n",
" {'text': 'Inventory consisted of the following as of December\\xa031, 2021 and 2020:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Raw materials and component parts', 'type': 'Title'},\n",
" {'text': '413,320', 'type': 'Uncategorized'},\n",
" {'text': '300,244', 'type': 'Uncategorized'},\n",
" {'text': 'Finished goods', 'type': 'NarrativeText'},\n",
" {'text': '356,928', 'type': 'Uncategorized'},\n",
" {'text': '368,281', 'type': 'Uncategorized'},\n",
" {'text': 'Inventory', 'type': 'Title'},\n",
" {'text': '770,248', 'type': 'Uncategorized'},\n",
" {'text': '668,525', 'type': 'Uncategorized'},\n",
" {'text': 'NOTE 5. PROPERTY AND EQUIPMENT', 'type': 'Title'},\n",
" {'text': 'Property and equipment consisted of the following at December\\xa031, 2021 and 2020:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Furniture and fixtures', 'type': 'Title'},\n",
" {'text': '312,639', 'type': 'Uncategorized'},\n",
" {'text': '312,639', 'type': 'Uncategorized'},\n",
" {'text': 'Automotive vehicles', 'type': 'Title'},\n",
" {'text': '171,671', 'type': 'Uncategorized'},\n",
" {'text': '215,127', 'type': 'Uncategorized'},\n",
" {'text': 'Office and computer equipment', 'type': 'Title'},\n",
" {'text': '389,628', 'type': 'Uncategorized'},\n",
" {'text': '332,544', 'type': 'Uncategorized'},\n",
" {'text': 'Leasehold improvements', 'type': 'Title'},\n",
" {'text': '35,531', 'type': 'Uncategorized'},\n",
" {'text': '32,547', 'type': 'Uncategorized'},\n",
" {'text': 'Property and equipment, gross', 'type': 'Title'},\n",
" {'text': '909,469', 'type': 'Uncategorized'},\n",
" {'text': '892,857', 'type': 'Uncategorized'},\n",
" {'text': 'Less: accumulated depreciation', 'type': 'NarrativeText'},\n",
" {'text': '(810,875', 'type': 'Uncategorized'},\n",
" {'text': '(776,133', 'type': 'Uncategorized'},\n",
" {'text': 'Property and equipment, net', 'type': 'Title'},\n",
" {'text': '98,594', 'type': 'Uncategorized'},\n",
" {'text': '116,724', 'type': 'Uncategorized'},\n",
" {'text': 'For the years ended December\\xa031, 2021 and 2020, depreciation expense related to property and equipment was $78,199 and $90,979, respectively.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'NOTE 6. Assets deployed at client locations',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Assets deployed at client locations, net consisted of the following at December\\xa031, 2021 and 2020:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Enhanced table systems', 'type': 'Title'},\n",
" {'text': '1,139,827', 'type': 'Uncategorized'},\n",
" {'text': '890,560', 'type': 'Uncategorized'},\n",
" {'text': 'Less: accumulated depreciation', 'type': 'NarrativeText'},\n",
" {'text': '(779,092', 'type': 'Uncategorized'},\n",
" {'text': '(658,404', 'type': 'Uncategorized'},\n",
" {'text': 'Assets deployed at client location, net', 'type': 'NarrativeText'},\n",
" {'text': '360,735', 'type': 'Uncategorized'},\n",
" {'text': '232,156', 'type': 'Uncategorized'},\n",
" {'text': 'For the years ended December\\xa031, 2021 and 2020, depreciation expense related to assets deployed at client locations was $197,493 and $222,204, respectively.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '25', 'type': 'Uncategorized'},\n",
" {'text': 'NOTE 7. GOODWILL AND OTHER INTANGIBLE ASSETS', 'type': 'Title'},\n",
" {'text': 'Goodwill. A goodwill balance of $1,091,000\\xa0was created as a result of a transaction completed in October 2011 with Prime Table Games, LLC (“PTG”).',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Other intangible assets, net. Other intangible assets, net consisted of the following at December\\xa031, 2021 and 2020:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': '2021', 'type': 'Uncategorized'},\n",
" {'text': '2020', 'type': 'Uncategorized'},\n",
" {'text': 'Patents', 'type': 'Title'},\n",
" {'text': '13,507,997', 'type': 'Uncategorized'},\n",
" {'text': '13,507,997', 'type': 'Uncategorized'},\n",
" {'text': 'Customer relationships', 'type': 'Title'},\n",
" {'text': '14,040,856', 'type': 'Uncategorized'},\n",
" {'text': '13,942,115', 'type': 'Uncategorized'},\n",
" {'text': 'Trademarks', 'type': 'Title'},\n",
" {'text': '2,880,967', 'type': 'Uncategorized'},\n",
" {'text': '2,880,967', 'type': 'Uncategorized'},\n",
" {'text': 'Non-compete agreements', 'type': 'Title'},\n",
" {'text': '660,000', 'type': 'Uncategorized'},\n",
" {'text': '660,000', 'type': 'Uncategorized'},\n",
" {'text': 'Software', 'type': 'Title'},\n",
" {'text': '283,340', 'type': 'Uncategorized'},\n",
" {'text': '183,415', 'type': 'Uncategorized'},\n",
" {'text': 'Other intangible assets, gross', 'type': 'Title'},\n",
" {'text': '31,373,160', 'type': 'Uncategorized'},\n",
" {'text': '31,174,494', 'type': 'Uncategorized'},\n",
" {'text': 'Less: accumulated amortization', 'type': 'NarrativeText'},\n",
" {'text': '(17,695,896', 'type': 'Uncategorized'},\n",
" {'text': '(15,087,598', 'type': 'Uncategorized'},\n",
" {'text': 'Other intangible assets, net', 'type': 'Title'},\n",
" {'text': '13,677,264', 'type': 'Uncategorized'},\n",
" {'text': '16,086,896', 'type': 'Uncategorized'},\n",
" {'text': 'For the years ended December\\xa031, 2021 and 2020, amortization expense related to the finite-lived intangible assets was $2,608,299 and $1,908,858 respectively.',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Estimated future amortization expense is as follows:',\n",
" 'type': 'NarrativeText'},\n",
" {'text': 'Year Ended December\\xa031,', 'type': 'Uncategorized'},\n",
" {'text': 'Total', 'type': 'Title'},\n",
" {'text': '2022', 'type': 'Uncategorized'},\n",
" {'text': '2,325,888', 'type': 'Uncategorized'},\n",
" {'text': '2023', 'type': 'Uncategorized'},\n",
" {'text': '1,459,601', 'type': 'Uncategorized'},\n",
" {'text': '2024', 'type': 'Uncategorized'},\n",
" {'text': '1,444,126', 'type': 'Uncategorized'},\n",
" {'text': '2025', 'type': 'Uncategorized'},\n",
" {'text': '1,436,968', 'type': 'Uncategorized'},\n",
" {'text': '2026', 'type': 'Uncategorized'},\n",
" {'text': '1,436,968', 'type': 'Uncategorized'},\n",
" {'text': 'Thereafter', 'type': 'Title'},\n",
" {'text': '5,523,691', 'type': 'Uncategorized'},\n",
" {'text': 'Total amortization', 'type': 'Title'},\n",
" ...]"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"convert_to_dict(elements)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}