SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  products.product_type, 
  products.parent_product_id, 
  descr1.full_description as full_description 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'da' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
WHERE 
  1 
  AND companies.status IN ('A') 
  AND products.company_id = 1 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND products.company_id = 1 
  AND products.parent_product_id = 0 
  AND products.company_id IN('1', '2', '3', '4', '5', '6') 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  product asc, 
  products.product_id ASC 
LIMIT 
  36, 12

Query time 0.00852

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "41.22"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "companies",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.20",
                "prefix_cost": "0.00",
                "data_read_per_join": "7K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "rows_examined_per_scan": 86,
              "rows_produced_per_join": 3,
              "filtered": "4.00",
              "cost_info": {
                "read_cost": "19.95",
                "eval_cost": "0.69",
                "prefix_cost": "20.64",
                "data_read_per_join": "8K"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ],
              "attached_condition": "(((`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`cscart_categories`.`status` in ('A','H')) and (`atulecarter_atul_demo1`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.cscart_categories.category_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 10,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "3.63",
                "eval_cost": "2.06",
                "prefix_cost": "26.33",
                "data_read_per_join": "165"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "idx_parent_product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "8.52",
              "cost_info": {
                "read_cost": "10.32",
                "eval_cost": "0.18",
                "prefix_cost": "38.71",
                "data_read_per_join": "4K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "usergroup_ids",
                "parent_product_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`products`.`parent_product_id` = 0) and (`atulecarter_atul_demo1`.`products`.`company_id` = 1) and ((`atulecarter_atul_demo1`.`products`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`products`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`products`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`products`.`status` = 'A') and (`atulecarter_atul_demo1`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.88",
                "eval_cost": "0.18",
                "prefix_cost": "39.76",
                "data_read_per_join": "4K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product",
                "full_description"
              ]
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 2,
              "filtered": "97.36",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.93",
                "eval_cost": "0.51",
                "prefix_cost": "41.22",
                "data_read_per_join": "61"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`prices`.`lower_limit` = 1) and (`atulecarter_atul_demo1`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name product_type parent_product_id full_description
218 ASUS Essentio CP1130 CS-Cart P 0 <p>The ASUS new Essentio CP1130 has sleek appearance and small size make it perfectly fit anywhere in your home. At the same time, it provides complete function and delivers ultimate performance for daily computing.</p>
207 Asus USB-N53 CS-Cart P 0 <p>&nbsp;</p> <div id="product_content_area" class="component_style" style="font-size: 12px; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff; position: relative; z-index: 1; color: #222222; line-height: 18px;"> <div id="overview" class="clearfix" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"><span id="ctl00_ContentPlaceHolder1_ctl00_overview1_span_overview" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">The ASUS USB-N53 is a dual-band USB adapter that provides flexible dual-band connection for lag-free streaming and high performance networking. It also has a superior antenna design for extensive wireless coverage. With the bundled USB cable, you can flexibly adjust the antenna to receive the strongest signal. A friendly user interface utility allows you to install and use the application easily, making the USB-N53 a fantastic router both at home and on the road.</p> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Flexible Dual-band Connection</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Wireless-N dual-band internet application for lag-free, high defination streaming.</p> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column first"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Power Signal Transmission</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Superior antenna design for extensive wireless coverage- an increase of more than 150%.</p> </div> <div class="column last"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Enhanced Reception</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">With the USB cable accessory, you can flexibly adjust the antenna to receive the strongest signal.</p> </div> </div> </span></div> </div> <p><span style="color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: xx-small;"><br /></span></p> <p>&nbsp;</p>
59 AVH-P4400BH CS-Cart P 0 <p>The AVH-P4400BH DVD multimedia receiver features a 7" motorized touchscreen display, built-in Bluetooth&reg; for hands-free calling and audio streaming, and an HD Radio&trade; tuner. The newly updated and innovative user interface makes direct operation of the unit stress-free by eliminating complicated layered selection displays, so access to desired functions is smoother and simpler than ever. A variety of multimedia options ensures that you will be properly entertained. Customizable audio and video functions make it easy to suit your mood.</p>
58 AVH-P8400BH CS-Cart P 0 <p>The AVH-P8400BH is Pioneer's top-of-the-line DVD multimedia receiver that features a beautiful 7" motorized touchscreen interface with our new Advanced Display Resolution technology, built-in Bluetooth&reg; for hands-free calling and audio streaming, an HD Radio&trade; tuner, and Advanced App Mode for iPhone&reg; 4/4S. The newly designed and innovative user interface makes direct operation of the unit stress-free by eliminating complicated layered selection displays, so access to desired functions is smoother and simpler than ever. A variety of multimedia options ensures that you will be properly entertained. Customizable audio and video functions make it easy to suit your mood.</p>
60 AVIC-Z130BT CS-Cart P 0 <p>Pioneer's flagship navigation receiver, the double-DIN AVIC-Z130BT features built-in navigation with maps of the US, Alaska, Hawaii, Canada, and Puerto Rico. Get there fast with spoken street names, lane guidance, and a wealth of GPS features, and stay in touch on the way with built-in Bluetooth for hands-free calling. The motorized 7-inch WVGA touchscreen display is great for GPS and for navigating your entertainment, whether it's DVDs or CDs, your digital media from USB drives or microSD cards, or content from your iPhone. Speaking of iPhones, the AVIC-Z130BT features enhanced integration with Pandora and Aha Radio apps, along with GPS features through the free AVIC FEEDS app.</p>
199 B.B. King - Original Greatest Hits CD CS-Cart P 0 <p> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">Product Details&nbsp;<br /> <ul class="wiki_list"> <li class="wiki_listitem">Audio CD (September 13, 2005)</li> <li class="wiki_listitem">Original Release Date: September 13, 2005</li> <li class="wiki_listitem">Number of Discs: 2</li> <li class="wiki_listitem">Label: Virgin Records Us</li> </ul> </div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">Disc: 1 <ul class="wiki_list"> <li class="wiki_listitem">1. 3 O'Clock Blues</li> <li class="wiki_listitem">2. Blind Love</li> <li class="wiki_listitem">3. She's Dynamite</li> <li class="wiki_listitem">4. You Know I Love You</li> <li class="wiki_listitem">5. Please Love Me</li> <li class="wiki_listitem">6. Story Fom My Heart And Soul</li> <li class="wiki_listitem">7. The Woman I Love</li> <li class="wiki_listitem">8. Neighborhood Affair</li> <li class="wiki_listitem">9. When My Heart Beats Like A Hammer</li> <li class="wiki_listitem">10. Every Day I Have The Blues</li> <li class="wiki_listitem">11. Love You Baby (Take A Swing With Me)</li> <li class="wiki_listitem">12. Ten Long Years</li> <li class="wiki_listitem">13. You Upset Me, Baby</li> <li class="wiki_listitem">14. Boogie Rock (House Rocker)</li> <li class="wiki_listitem">15. Crying Won't Help You</li> <li class="wiki_listitem">16. Bad Luck</li> <li class="wiki_listitem">17. Did You Ever Love A Woman</li> <li class="wiki_listitem">18. You Don't Know</li> <li class="wiki_listitem">19. Sweet Little Angel</li> <li class="wiki_listitem">20. On My Word Of Honor</li> </ul> <br />Disc: 2 <ul class="wiki_list"> <li class="wiki_listitem">1. Be Careful With A Fool</li> <li class="wiki_listitem">2. Please Accept My Love</li> <li class="wiki_listitem">3. Days Of Old</li> <li class="wiki_listitem">4. Worry, Worry</li> <li class="wiki_listitem">5. Confessin' The Blues</li> <li class="wiki_listitem">6. Sweet Sixteen Parts 1 &amp; 2</li> <li class="wiki_listitem">7. Ain't Nobody's Business</li> <li class="wiki_listitem">8. Walkin' Dr. Bill</li> <li class="wiki_listitem">9. My Own Fault</li> <li class="wiki_listitem">10. You Done Lost Your Good Thing Now</li> <li class="wiki_listitem">11. Downhearted (How Blue Can You Get?)</li> <li class="wiki_listitem">12. I'll Survive</li> <li class="wiki_listitem">13. Mashed Potato Twist</li> <li class="wiki_listitem">14. Down Now</li> <li class="wiki_listitem">15. Peace Of Mind</li> <li class="wiki_listitem">16. That Evil Child</li> <li class="wiki_listitem">17. Blues Stay Away From Me</li> <li class="wiki_listitem">18. Rock Me Baby</li> <li class="wiki_listitem">19. Miss Martha King</li> <li class="wiki_listitem">20. When Your Baby Packs Up And Goes</li> </ul> </div> </p>
198 B.B. King One Kind Favor CD Grammy Award Winning CD Manufacturer: Geffen Records Sku: BBK-11ONEKINDFAVORCD Reviewed 2 times CS-Cart P 0 <p> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <h3 style="font-size: 11pt; color: #666666; margin-top: 2px; margin-right: 0px; margin-bottom: 1px; margin-left: 0px; font-family: 'Gill Sans MT Pro Medium', tahoma, arial, sans-serif;">GRAMMY AWARD WINNING CD: BEST TRADITIONAL BLUES ALBUM</h3> </div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">Product Details&nbsp;</div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <ul class="wiki_list"> <li class="wiki_listitem">Audio CD (August 26, 2008)</li> <li class="wiki_listitem">Original Release Date: August 26, 2008</li> <li class="wiki_listitem">Number of Discs: 1</li> <li class="wiki_listitem">Label: Geffen Records</li> </ul> </div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">Listen to samples&nbsp;</div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">The full track listing for One Kind Favor (original artist in parenthesis):&nbsp;</div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <ul class="wiki_list"> <li class="wiki_listitem">1.See That My Grave Is Kept Clean (Lemon Jefferson)</li> <li class="wiki_listitem">2.I Get So Weary (T-Bone Walker)</li> <li class="wiki_listitem">3.Get These Blues Off Me (Lee Vida Walker)</li> <li class="wiki_listitem">4.How Many More Years (Chester Burnett)</li> <li class="wiki_listitem">5.Waiting For Your Call (Oscar Lollie)</li> <li class="wiki_listitem">6.My Love Is Down (Lonnie Johnson)</li> <li class="wiki_listitem">7.The World Is Gone Wrong (Walter Vinson, also known as Walter Jacobs, and Lonnie Chatmon, core members of the Mississippi Sheiks)</li> <li class="wiki_listitem">8.Blues Before Sunrise (John Lee Hooker)</li> <li class="wiki_listitem">9.Midnight Blues (John Willie "Shifty" Henry)</li> <li class="wiki_listitem">10.Backwater Blues (Big Bill Broonzy)</li> <li class="wiki_listitem">11.Sitting On Top Of The World (Walter Vinson and Lonnie Chatmon)</li> <li class="wiki_listitem">12.Tomorrow Night (Lonnie Johnson)</li> </ul> </div> </p>
94 Batman: Arkham City (X360) CS-Cart P 0 <p> <p>Studio: Warner Home Video</p> <p>Packaging Type: XBOX 360 Amaray</p> <p>Genre: Action/Adventure</p> <p>Synopsis:</p> <p>The city's greatest heroes and villains collide within the diseased heart of Gotham.</p> </p>
96 Batman: Arkham City (X360) CE CS-Cart P 0 <p> <p>Studio: Warner Home Video</p> <p>Packaging Type: XBOX 360 Amaray</p> <p>Genre: Action/Adventure</p> <p>Synopsis:</p> <p>The city's greatest heroes and villains collide within the diseased heart of Gotham.</p> </p>
201 Beethoven Piano Concertos Nos. 1 & 2 CS-Cart P 0 <p> <p>ROYAL PHILHARMONIC ORCHESTRA&nbsp;</p> <p>PIANO: MARIO GALEANI&nbsp;</p> <p>CONDUCTOR: GRZEGORZ NOWAK</p> <p>&nbsp;</p> <p>Mario Galeani and Grzegorz Nowak partner once more in a new disc of Beethoven piano concertos.</p> <p>TRACKLISTING</p> <p>Piano Concerto No.1 in C Major, Op.15&nbsp;</p> <p>1. Allegro con brio&nbsp;</p> <p>2. Largo&nbsp;</p> <p>3. Rondo: Allegro scherzando&nbsp;</p> <p>&nbsp;</p> <p>Piano Concerto No.2 in B Flat Major, Op.19&nbsp;</p> <p>4. Allegro con brio&nbsp;</p> <p>5. Adagio&nbsp;</p> <p>6. Rondo: Molto allegro&nbsp;</p> </p>
114 Birds of Prey: The Complete Series (DVD) CS-Cart P 0 <p> <p>Studio: Warner Bros.</p> <p>Screen Aspect: 4 X 3 FULL FRAME</p> <p>Episodes Info :</p> <p>13 One-Hour Episodes</p> <p>&nbsp;</p> <p>Pilot</p> <p>Slick</p> <p>Prey for the Hunter</p> <p>Three Birds and a Baby</p> <p>Sins of the Mother</p> <p>Primal Scream</p> <p>Split</p> <p>Lady Shiva</p> <p>Nature of the Beast</p> <p>Gladiatrix</p> <p>Reunion</p> <p>Feat of Clay</p> <p>Devil's Eye</p> <p>Special Features:</p> <p>GOTHAM GIRLS SEASONS 1-3 - The animated web-based series featuring the</p> <p>female heroes and rogues from Gotham City.</p> <p>Media Quantity: Multi D</p> <p>Packaging Type: VIVA 4 Disc 15mm Case</p> <p>Genre: Drama, Television</p> <p>Synopsis:</p> <p>Who will stand up to villains now that a heartbroken Dark Knight has mysteriously vanished? Never fear, New Gothamites, a trio of champions is ready to take wing &ndash; and Helena, the daughter of Batman and Catwoman, is among them. She calls herself Huntress and crime is her prey. Teenaged Dinah is the youngest of the group, learning as she goes and gifted in clairvoyance. And overseeing the awesome threesome&rsquo;s high-tech nerve center is Batgirl. Left wheelchair-bound by The Joker, she has reinvented herself as Oracle, the team&rsquo;s cyber expert. Huntress, Dinah, Oracle: They are the Birds of Prey. Fighting together. Living together. And soaring into adventure together in 13 breathtaking live-action episodes.</p> </p>
192 Black and White America (CD Pack) CS-Cart P 0 <p><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">Tracklisting:</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">1. Black And White America</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">2. Come On Get It</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">3. In The Black</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">4. Liquid Jesus</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">5. Rock Star City Life</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">6. Boongie Drop</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">7. Stand</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">8. Superlove</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">9. Everything</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">10. I Can't Be Without You</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">11. Looking Back On Love</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">12. Life Ain't Ever Been Better Than It Is Now</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">13. The Faith Of A Child</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">14. Sunflower</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">15. Dream</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">16. Push</span></p>