[{"data":1,"prerenderedAt":55826},["ShallowReactive",2],{"tutorial-ecommerce-pipeline\u002Fbuild-reports":3,"content-query-SvRFUNS7Iz":13510,"content-query-CfBqQbZcXI":26456},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"readingTime":11,"category":12,"tags":13,"difficulty":22,"module":5,"subSteps":23,"step":24,"journeys":25,"variants":28,"learnMore":29,"author":36,"body":40,"_type":13504,"_id":13505,"_source":13506,"_file":13507,"_stem":13508,"_extension":13509},"\u002Ftutorials\u002Fecommerce-pipeline\u002Fbuild-reports","ecommerce-pipeline",false,"","Build Ecommerce Reports","Create report tables for daily revenue, customer cohorts, product performance, marketing ROI, and a unified KPI dashboard.","2026-04-09",15,"Tutorial",[14,15,16,17,18,19,20,21],"Bruin CLI","Claude Code","SQL","ClickHouse","BigQuery","Snowflake","Analytics","E-commerce","Intermediate",true,4,[26,27],"Data Analyst","Data Engineer",[17,18,19],[30,33],{"label":31,"url":32},"Materialization strategies","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fassets\u002Fmaterialization.html",{"label":34,"url":35},"Quality checks","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fquality\u002Foverview.html",{"name":37,"role":38,"image":39},"Bruin Team","Bruin Data","\u002Fbruin-logo-2025.svg",{"type":41,"children":42,"toc":13484},"root",[43,52,58,64,69,75,89,123,130,135,144,149,157,162,174,179,196,2228,2240,2245,2259,5090,5102,5107,5131,5145,5364,5376,5381,5395,9346,9358,9363,9377,13170,13176,13181,13226,13246,13251,13291,13304,13347,13352,13375,13381,13386,13394,13402,13410,13415,13423,13429,13473,13478],{"type":44,"tag":45,"props":46,"children":48},"element","h2",{"id":47},"what-youll-do",[49],{"type":50,"value":51},"text","What you'll do",{"type":44,"tag":53,"props":54,"children":55},"p",{},[56],{"type":50,"value":57},"Build five report tables on top of the staging layer: daily revenue, customer cohorts, product performance, marketing ROI, and a unified daily KPI dashboard.",{"type":44,"tag":45,"props":59,"children":61},{"id":60},"why-this-step-matters",[62],{"type":50,"value":63},"Why this step matters",{"type":44,"tag":53,"props":65,"children":66},{},[67],{"type":50,"value":68},"Staging tables are clean but they're not answers. They tell you \"what happened\" but not \"how is the business doing.\" Report tables compute the metrics teams actually care about - revenue trends, retention rates, ROAS, and the daily numbers that inform decisions.",{"type":44,"tag":45,"props":70,"children":72},{"id":71},"instructions",[73],{"type":50,"value":74},"Instructions",{"type":44,"tag":53,"props":76,"children":77},{},[78,80,87],{"type":50,"value":79},"Create a ",{"type":44,"tag":81,"props":82,"children":84},"code",{"className":83},[],[85],{"type":50,"value":86},"reports\u002F",{"type":50,"value":88}," subfolder:",{"type":44,"tag":90,"props":91,"children":95},"pre",{"className":92,"code":93,"language":94,"meta":7,"style":7},"language-bash shiki shiki-themes github-dark","mkdir -p ecommerce\u002Fassets\u002Freports\n","bash",[96],{"type":44,"tag":81,"props":97,"children":98},{"__ignoreMap":7},[99],{"type":44,"tag":100,"props":101,"children":104},"span",{"class":102,"line":103},"line",1,[105,111,117],{"type":44,"tag":100,"props":106,"children":108},{"style":107},"--shiki-default:#B392F0",[109],{"type":50,"value":110},"mkdir",{"type":44,"tag":100,"props":112,"children":114},{"style":113},"--shiki-default:#79B8FF",[115],{"type":50,"value":116}," -p",{"type":44,"tag":100,"props":118,"children":120},{"style":119},"--shiki-default:#9ECBFF",[121],{"type":50,"value":122}," ecommerce\u002Fassets\u002Freports\n",{"type":44,"tag":124,"props":125,"children":127},"h3",{"id":126},"let-claude-code-help-with-report-sql",[128],{"type":50,"value":129},"Let Claude Code help with report SQL",{"type":44,"tag":53,"props":131,"children":132},{},[133],{"type":50,"value":134},"Report queries can get complex, especially cohort retention and marketing attribution. You can ask Claude Code to generate any of these:",{"type":44,"tag":136,"props":137,"children":138},"blockquote",{},[139],{"type":44,"tag":53,"props":140,"children":141},{},[142],{"type":50,"value":143},"Create a Bruin SQL asset for a daily revenue report. It should read from staging.stg_orders and compute total orders, paid orders, gross and net revenue, AOV, and cancellation rate grouped by day. Add quality checks. Put it in ecommerce\u002Fassets\u002Freports\u002Frpt_daily_revenue.sql.",{"type":44,"tag":53,"props":145,"children":146},{},[147],{"type":50,"value":148},"For the harder reports:",{"type":44,"tag":136,"props":150,"children":151},{},[152],{"type":44,"tag":53,"props":153,"children":154},{},[155],{"type":50,"value":156},"Write a monthly customer cohort retention query using staging.stg_orders and staging.stg_customers. Group by the month of first purchase, compute retention rate and revenue per customer for each month since first order.",{"type":44,"tag":53,"props":158,"children":159},{},[160],{"type":50,"value":161},"The examples below show what each report should look like. Select the tab that matches your warehouse.",{"type":44,"tag":124,"props":163,"children":165},{"id":164},"_1-daily-revenue-rpt_daily_revenuesql",[166,168],{"type":50,"value":167},"1) Daily revenue - ",{"type":44,"tag":81,"props":169,"children":171},{"className":170},[],[172],{"type":50,"value":173},"rpt_daily_revenue.sql",{"type":44,"tag":53,"props":175,"children":176},{},[177],{"type":50,"value":178},"The most basic ecommerce report: daily revenue, order count, average order value, and cancellation rate.",{"type":44,"tag":53,"props":180,"children":181},{},[182,184,194],{"type":50,"value":183},"Create ",{"type":44,"tag":185,"props":186,"children":187},"strong",{},[188],{"type":44,"tag":81,"props":189,"children":191},{"className":190},[],[192],{"type":50,"value":193},"ecommerce\u002Fassets\u002Freports\u002Frpt_daily_revenue.sql",{"type":50,"value":195},":",{"type":44,"tag":197,"props":198,"children":201},"variant-tabs",{":variants":199,"group":200},"[{\"id\":\"clickhouse\",\"label\":\"ClickHouse\"},{\"id\":\"bigquery\",\"label\":\"BigQuery\"},{\"id\":\"snowflake\",\"label\":\"Snowflake\"}]","warehouse",[202,820,1494],{"type":44,"tag":203,"props":204,"children":205},"template",{"v-slot:clickhouse":7},[206],{"type":44,"tag":90,"props":207,"children":211},{"className":208,"code":209,"language":210,"meta":7,"style":7},"language-sql shiki shiki-themes github-dark","\u002F* @bruin\nname: reports.rpt_daily_revenue\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_orders\ncolumns:\n  - name: order_date\n    type: date\n    checks:\n      - name: not_null\n      - name: unique\ncustom_checks:\n  - name: has_rows\n    query: \"SELECT count(*) > 0 FROM reports.rpt_daily_revenue\"\n    value: 1\n@bruin *\u002F\n\nSELECT\n    toDate(order_date) AS order_date,\n    count(*) AS total_orders,\n    countIf(payment_status = 'paid') AS paid_orders,\n    countIf(cancel_reason IS NOT NULL) AS cancelled_orders,\n    sum(order_total) AS gross_revenue,\n    sum(CASE WHEN payment_status = 'paid' THEN order_total ELSE 0 END) AS net_revenue,\n    sum(discount_amount) AS total_discounts,\n    sum(tax_amount) AS total_tax,\n    round(net_revenue \u002F nullIf(paid_orders, 0), 2) AS avg_order_value,\n    round(cancelled_orders \u002F nullIf(total_orders, 0) * 100, 2) AS cancellation_rate\nFROM staging.stg_orders\nGROUP BY toDate(order_date)\nORDER BY order_date\n","sql",[212],{"type":44,"tag":81,"props":213,"children":214},{"__ignoreMap":7},[215,224,233,242,250,259,268,277,286,295,304,313,322,331,340,348,357,366,375,384,394,414,447,479,506,529,602,624,646,703,768,792,806],{"type":44,"tag":100,"props":216,"children":217},{"class":102,"line":103},[218],{"type":44,"tag":100,"props":219,"children":221},{"style":220},"--shiki-default:#6A737D",[222],{"type":50,"value":223},"\u002F* @bruin\n",{"type":44,"tag":100,"props":225,"children":227},{"class":102,"line":226},2,[228],{"type":44,"tag":100,"props":229,"children":230},{"style":220},[231],{"type":50,"value":232},"name: reports.rpt_daily_revenue\n",{"type":44,"tag":100,"props":234,"children":236},{"class":102,"line":235},3,[237],{"type":44,"tag":100,"props":238,"children":239},{"style":220},[240],{"type":50,"value":241},"type: sql\n",{"type":44,"tag":100,"props":243,"children":244},{"class":102,"line":24},[245],{"type":44,"tag":100,"props":246,"children":247},{"style":220},[248],{"type":50,"value":249},"materialization:\n",{"type":44,"tag":100,"props":251,"children":253},{"class":102,"line":252},5,[254],{"type":44,"tag":100,"props":255,"children":256},{"style":220},[257],{"type":50,"value":258},"  type: table\n",{"type":44,"tag":100,"props":260,"children":262},{"class":102,"line":261},6,[263],{"type":44,"tag":100,"props":264,"children":265},{"style":220},[266],{"type":50,"value":267},"depends:\n",{"type":44,"tag":100,"props":269,"children":271},{"class":102,"line":270},7,[272],{"type":44,"tag":100,"props":273,"children":274},{"style":220},[275],{"type":50,"value":276},"  - staging.stg_orders\n",{"type":44,"tag":100,"props":278,"children":280},{"class":102,"line":279},8,[281],{"type":44,"tag":100,"props":282,"children":283},{"style":220},[284],{"type":50,"value":285},"columns:\n",{"type":44,"tag":100,"props":287,"children":289},{"class":102,"line":288},9,[290],{"type":44,"tag":100,"props":291,"children":292},{"style":220},[293],{"type":50,"value":294},"  - name: order_date\n",{"type":44,"tag":100,"props":296,"children":298},{"class":102,"line":297},10,[299],{"type":44,"tag":100,"props":300,"children":301},{"style":220},[302],{"type":50,"value":303},"    type: date\n",{"type":44,"tag":100,"props":305,"children":307},{"class":102,"line":306},11,[308],{"type":44,"tag":100,"props":309,"children":310},{"style":220},[311],{"type":50,"value":312},"    checks:\n",{"type":44,"tag":100,"props":314,"children":316},{"class":102,"line":315},12,[317],{"type":44,"tag":100,"props":318,"children":319},{"style":220},[320],{"type":50,"value":321},"      - name: not_null\n",{"type":44,"tag":100,"props":323,"children":325},{"class":102,"line":324},13,[326],{"type":44,"tag":100,"props":327,"children":328},{"style":220},[329],{"type":50,"value":330},"      - name: unique\n",{"type":44,"tag":100,"props":332,"children":334},{"class":102,"line":333},14,[335],{"type":44,"tag":100,"props":336,"children":337},{"style":220},[338],{"type":50,"value":339},"custom_checks:\n",{"type":44,"tag":100,"props":341,"children":342},{"class":102,"line":11},[343],{"type":44,"tag":100,"props":344,"children":345},{"style":220},[346],{"type":50,"value":347},"  - name: has_rows\n",{"type":44,"tag":100,"props":349,"children":351},{"class":102,"line":350},16,[352],{"type":44,"tag":100,"props":353,"children":354},{"style":220},[355],{"type":50,"value":356},"    query: \"SELECT count(*) > 0 FROM reports.rpt_daily_revenue\"\n",{"type":44,"tag":100,"props":358,"children":360},{"class":102,"line":359},17,[361],{"type":44,"tag":100,"props":362,"children":363},{"style":220},[364],{"type":50,"value":365},"    value: 1\n",{"type":44,"tag":100,"props":367,"children":369},{"class":102,"line":368},18,[370],{"type":44,"tag":100,"props":371,"children":372},{"style":220},[373],{"type":50,"value":374},"@bruin *\u002F\n",{"type":44,"tag":100,"props":376,"children":378},{"class":102,"line":377},19,[379],{"type":44,"tag":100,"props":380,"children":381},{"emptyLinePlaceholder":23},[382],{"type":50,"value":383},"\n",{"type":44,"tag":100,"props":385,"children":387},{"class":102,"line":386},20,[388],{"type":44,"tag":100,"props":389,"children":391},{"style":390},"--shiki-default:#F97583",[392],{"type":50,"value":393},"SELECT\n",{"type":44,"tag":100,"props":395,"children":397},{"class":102,"line":396},21,[398,404,409],{"type":44,"tag":100,"props":399,"children":401},{"style":400},"--shiki-default:#E1E4E8",[402],{"type":50,"value":403},"    toDate(order_date) ",{"type":44,"tag":100,"props":405,"children":406},{"style":390},[407],{"type":50,"value":408},"AS",{"type":44,"tag":100,"props":410,"children":411},{"style":400},[412],{"type":50,"value":413}," order_date,\n",{"type":44,"tag":100,"props":415,"children":417},{"class":102,"line":416},22,[418,423,428,433,438,442],{"type":44,"tag":100,"props":419,"children":420},{"style":113},[421],{"type":50,"value":422},"    count",{"type":44,"tag":100,"props":424,"children":425},{"style":400},[426],{"type":50,"value":427},"(",{"type":44,"tag":100,"props":429,"children":430},{"style":390},[431],{"type":50,"value":432},"*",{"type":44,"tag":100,"props":434,"children":435},{"style":400},[436],{"type":50,"value":437},") ",{"type":44,"tag":100,"props":439,"children":440},{"style":390},[441],{"type":50,"value":408},{"type":44,"tag":100,"props":443,"children":444},{"style":400},[445],{"type":50,"value":446}," total_orders,\n",{"type":44,"tag":100,"props":448,"children":450},{"class":102,"line":449},23,[451,456,461,466,470,474],{"type":44,"tag":100,"props":452,"children":453},{"style":400},[454],{"type":50,"value":455},"    countIf(payment_status ",{"type":44,"tag":100,"props":457,"children":458},{"style":390},[459],{"type":50,"value":460},"=",{"type":44,"tag":100,"props":462,"children":463},{"style":119},[464],{"type":50,"value":465}," 'paid'",{"type":44,"tag":100,"props":467,"children":468},{"style":400},[469],{"type":50,"value":437},{"type":44,"tag":100,"props":471,"children":472},{"style":390},[473],{"type":50,"value":408},{"type":44,"tag":100,"props":475,"children":476},{"style":400},[477],{"type":50,"value":478}," paid_orders,\n",{"type":44,"tag":100,"props":480,"children":482},{"class":102,"line":481},24,[483,488,493,497,501],{"type":44,"tag":100,"props":484,"children":485},{"style":400},[486],{"type":50,"value":487},"    countIf(cancel_reason ",{"type":44,"tag":100,"props":489,"children":490},{"style":390},[491],{"type":50,"value":492},"IS NOT NULL",{"type":44,"tag":100,"props":494,"children":495},{"style":400},[496],{"type":50,"value":437},{"type":44,"tag":100,"props":498,"children":499},{"style":390},[500],{"type":50,"value":408},{"type":44,"tag":100,"props":502,"children":503},{"style":400},[504],{"type":50,"value":505}," cancelled_orders,\n",{"type":44,"tag":100,"props":507,"children":509},{"class":102,"line":508},25,[510,515,520,524],{"type":44,"tag":100,"props":511,"children":512},{"style":113},[513],{"type":50,"value":514},"    sum",{"type":44,"tag":100,"props":516,"children":517},{"style":400},[518],{"type":50,"value":519},"(order_total) ",{"type":44,"tag":100,"props":521,"children":522},{"style":390},[523],{"type":50,"value":408},{"type":44,"tag":100,"props":525,"children":526},{"style":400},[527],{"type":50,"value":528}," gross_revenue,\n",{"type":44,"tag":100,"props":530,"children":532},{"class":102,"line":531},26,[533,537,541,546,551,556,560,564,569,574,579,584,589,593,597],{"type":44,"tag":100,"props":534,"children":535},{"style":113},[536],{"type":50,"value":514},{"type":44,"tag":100,"props":538,"children":539},{"style":400},[540],{"type":50,"value":427},{"type":44,"tag":100,"props":542,"children":543},{"style":390},[544],{"type":50,"value":545},"CASE",{"type":44,"tag":100,"props":547,"children":548},{"style":390},[549],{"type":50,"value":550}," WHEN",{"type":44,"tag":100,"props":552,"children":553},{"style":400},[554],{"type":50,"value":555}," payment_status ",{"type":44,"tag":100,"props":557,"children":558},{"style":390},[559],{"type":50,"value":460},{"type":44,"tag":100,"props":561,"children":562},{"style":119},[563],{"type":50,"value":465},{"type":44,"tag":100,"props":565,"children":566},{"style":390},[567],{"type":50,"value":568}," THEN",{"type":44,"tag":100,"props":570,"children":571},{"style":400},[572],{"type":50,"value":573}," order_total ",{"type":44,"tag":100,"props":575,"children":576},{"style":390},[577],{"type":50,"value":578},"ELSE",{"type":44,"tag":100,"props":580,"children":581},{"style":113},[582],{"type":50,"value":583}," 0",{"type":44,"tag":100,"props":585,"children":586},{"style":390},[587],{"type":50,"value":588}," END",{"type":44,"tag":100,"props":590,"children":591},{"style":400},[592],{"type":50,"value":437},{"type":44,"tag":100,"props":594,"children":595},{"style":390},[596],{"type":50,"value":408},{"type":44,"tag":100,"props":598,"children":599},{"style":400},[600],{"type":50,"value":601}," net_revenue,\n",{"type":44,"tag":100,"props":603,"children":605},{"class":102,"line":604},27,[606,610,615,619],{"type":44,"tag":100,"props":607,"children":608},{"style":113},[609],{"type":50,"value":514},{"type":44,"tag":100,"props":611,"children":612},{"style":400},[613],{"type":50,"value":614},"(discount_amount) ",{"type":44,"tag":100,"props":616,"children":617},{"style":390},[618],{"type":50,"value":408},{"type":44,"tag":100,"props":620,"children":621},{"style":400},[622],{"type":50,"value":623}," total_discounts,\n",{"type":44,"tag":100,"props":625,"children":627},{"class":102,"line":626},28,[628,632,637,641],{"type":44,"tag":100,"props":629,"children":630},{"style":113},[631],{"type":50,"value":514},{"type":44,"tag":100,"props":633,"children":634},{"style":400},[635],{"type":50,"value":636},"(tax_amount) ",{"type":44,"tag":100,"props":638,"children":639},{"style":390},[640],{"type":50,"value":408},{"type":44,"tag":100,"props":642,"children":643},{"style":400},[644],{"type":50,"value":645}," total_tax,\n",{"type":44,"tag":100,"props":647,"children":649},{"class":102,"line":648},29,[650,655,660,665,670,675,680,685,690,694,698],{"type":44,"tag":100,"props":651,"children":652},{"style":113},[653],{"type":50,"value":654},"    round",{"type":44,"tag":100,"props":656,"children":657},{"style":400},[658],{"type":50,"value":659},"(net_revenue ",{"type":44,"tag":100,"props":661,"children":662},{"style":390},[663],{"type":50,"value":664},"\u002F",{"type":44,"tag":100,"props":666,"children":667},{"style":113},[668],{"type":50,"value":669}," nullIf",{"type":44,"tag":100,"props":671,"children":672},{"style":400},[673],{"type":50,"value":674},"(paid_orders, ",{"type":44,"tag":100,"props":676,"children":677},{"style":113},[678],{"type":50,"value":679},"0",{"type":44,"tag":100,"props":681,"children":682},{"style":400},[683],{"type":50,"value":684},"), ",{"type":44,"tag":100,"props":686,"children":687},{"style":113},[688],{"type":50,"value":689},"2",{"type":44,"tag":100,"props":691,"children":692},{"style":400},[693],{"type":50,"value":437},{"type":44,"tag":100,"props":695,"children":696},{"style":390},[697],{"type":50,"value":408},{"type":44,"tag":100,"props":699,"children":700},{"style":400},[701],{"type":50,"value":702}," avg_order_value,\n",{"type":44,"tag":100,"props":704,"children":706},{"class":102,"line":705},30,[707,711,716,720,724,729,733,737,741,746,751,755,759,763],{"type":44,"tag":100,"props":708,"children":709},{"style":113},[710],{"type":50,"value":654},{"type":44,"tag":100,"props":712,"children":713},{"style":400},[714],{"type":50,"value":715},"(cancelled_orders ",{"type":44,"tag":100,"props":717,"children":718},{"style":390},[719],{"type":50,"value":664},{"type":44,"tag":100,"props":721,"children":722},{"style":113},[723],{"type":50,"value":669},{"type":44,"tag":100,"props":725,"children":726},{"style":400},[727],{"type":50,"value":728},"(total_orders, ",{"type":44,"tag":100,"props":730,"children":731},{"style":113},[732],{"type":50,"value":679},{"type":44,"tag":100,"props":734,"children":735},{"style":400},[736],{"type":50,"value":437},{"type":44,"tag":100,"props":738,"children":739},{"style":390},[740],{"type":50,"value":432},{"type":44,"tag":100,"props":742,"children":743},{"style":113},[744],{"type":50,"value":745}," 100",{"type":44,"tag":100,"props":747,"children":748},{"style":400},[749],{"type":50,"value":750},", ",{"type":44,"tag":100,"props":752,"children":753},{"style":113},[754],{"type":50,"value":689},{"type":44,"tag":100,"props":756,"children":757},{"style":400},[758],{"type":50,"value":437},{"type":44,"tag":100,"props":760,"children":761},{"style":390},[762],{"type":50,"value":408},{"type":44,"tag":100,"props":764,"children":765},{"style":400},[766],{"type":50,"value":767}," cancellation_rate\n",{"type":44,"tag":100,"props":769,"children":771},{"class":102,"line":770},31,[772,777,782,787],{"type":44,"tag":100,"props":773,"children":774},{"style":390},[775],{"type":50,"value":776},"FROM",{"type":44,"tag":100,"props":778,"children":779},{"style":113},[780],{"type":50,"value":781}," staging",{"type":44,"tag":100,"props":783,"children":784},{"style":400},[785],{"type":50,"value":786},".",{"type":44,"tag":100,"props":788,"children":789},{"style":113},[790],{"type":50,"value":791},"stg_orders\n",{"type":44,"tag":100,"props":793,"children":795},{"class":102,"line":794},32,[796,801],{"type":44,"tag":100,"props":797,"children":798},{"style":390},[799],{"type":50,"value":800},"GROUP BY",{"type":44,"tag":100,"props":802,"children":803},{"style":400},[804],{"type":50,"value":805}," toDate(order_date)\n",{"type":44,"tag":100,"props":807,"children":809},{"class":102,"line":808},33,[810,815],{"type":44,"tag":100,"props":811,"children":812},{"style":390},[813],{"type":50,"value":814},"ORDER BY",{"type":44,"tag":100,"props":816,"children":817},{"style":400},[818],{"type":50,"value":819}," order_date\n",{"type":44,"tag":203,"props":821,"children":822},{"v-slot:bigquery":7},[823],{"type":44,"tag":90,"props":824,"children":826},{"className":208,"code":825,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_daily_revenue\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_orders\ncolumns:\n  - name: order_date\n    type: date\n    checks:\n      - name: not_null\n      - name: unique\ncustom_checks:\n  - name: has_rows\n    query: \"SELECT count(*) > 0 FROM reports.rpt_daily_revenue\"\n    value: 1\n@bruin *\u002F\n\nSELECT\n    DATE(order_date) AS order_date,\n    count(*) AS total_orders,\n    COUNTIF(payment_status = 'paid') AS paid_orders,\n    COUNTIF(cancel_reason IS NOT NULL) AS cancelled_orders,\n    sum(order_total) AS gross_revenue,\n    sum(CASE WHEN payment_status = 'paid' THEN order_total ELSE 0 END) AS net_revenue,\n    sum(discount_amount) AS total_discounts,\n    sum(tax_amount) AS total_tax,\n    round(sum(CASE WHEN payment_status = 'paid' THEN order_total ELSE 0 END) \u002F NULLIF(COUNTIF(payment_status = 'paid'), 0), 2) AS avg_order_value,\n    round(COUNTIF(cancel_reason IS NOT NULL) \u002F NULLIF(count(*), 0) * 100, 2) AS cancellation_rate\nFROM staging.stg_orders o\nWHERE o.financial_status IN ('paid', 'partially_refunded')\nGROUP BY DATE(order_date)\nORDER BY order_date\n",[827],{"type":44,"tag":81,"props":828,"children":829},{"__ignoreMap":7},[830,837,844,851,858,865,872,879,886,893,900,907,914,921,928,935,942,949,956,963,970,991,1018,1046,1070,1089,1152,1171,1190,1304,1389,1414,1465,1482],{"type":44,"tag":100,"props":831,"children":832},{"class":102,"line":103},[833],{"type":44,"tag":100,"props":834,"children":835},{"style":220},[836],{"type":50,"value":223},{"type":44,"tag":100,"props":838,"children":839},{"class":102,"line":226},[840],{"type":44,"tag":100,"props":841,"children":842},{"style":220},[843],{"type":50,"value":232},{"type":44,"tag":100,"props":845,"children":846},{"class":102,"line":235},[847],{"type":44,"tag":100,"props":848,"children":849},{"style":220},[850],{"type":50,"value":241},{"type":44,"tag":100,"props":852,"children":853},{"class":102,"line":24},[854],{"type":44,"tag":100,"props":855,"children":856},{"style":220},[857],{"type":50,"value":249},{"type":44,"tag":100,"props":859,"children":860},{"class":102,"line":252},[861],{"type":44,"tag":100,"props":862,"children":863},{"style":220},[864],{"type":50,"value":258},{"type":44,"tag":100,"props":866,"children":867},{"class":102,"line":261},[868],{"type":44,"tag":100,"props":869,"children":870},{"style":220},[871],{"type":50,"value":267},{"type":44,"tag":100,"props":873,"children":874},{"class":102,"line":270},[875],{"type":44,"tag":100,"props":876,"children":877},{"style":220},[878],{"type":50,"value":276},{"type":44,"tag":100,"props":880,"children":881},{"class":102,"line":279},[882],{"type":44,"tag":100,"props":883,"children":884},{"style":220},[885],{"type":50,"value":285},{"type":44,"tag":100,"props":887,"children":888},{"class":102,"line":288},[889],{"type":44,"tag":100,"props":890,"children":891},{"style":220},[892],{"type":50,"value":294},{"type":44,"tag":100,"props":894,"children":895},{"class":102,"line":297},[896],{"type":44,"tag":100,"props":897,"children":898},{"style":220},[899],{"type":50,"value":303},{"type":44,"tag":100,"props":901,"children":902},{"class":102,"line":306},[903],{"type":44,"tag":100,"props":904,"children":905},{"style":220},[906],{"type":50,"value":312},{"type":44,"tag":100,"props":908,"children":909},{"class":102,"line":315},[910],{"type":44,"tag":100,"props":911,"children":912},{"style":220},[913],{"type":50,"value":321},{"type":44,"tag":100,"props":915,"children":916},{"class":102,"line":324},[917],{"type":44,"tag":100,"props":918,"children":919},{"style":220},[920],{"type":50,"value":330},{"type":44,"tag":100,"props":922,"children":923},{"class":102,"line":333},[924],{"type":44,"tag":100,"props":925,"children":926},{"style":220},[927],{"type":50,"value":339},{"type":44,"tag":100,"props":929,"children":930},{"class":102,"line":11},[931],{"type":44,"tag":100,"props":932,"children":933},{"style":220},[934],{"type":50,"value":347},{"type":44,"tag":100,"props":936,"children":937},{"class":102,"line":350},[938],{"type":44,"tag":100,"props":939,"children":940},{"style":220},[941],{"type":50,"value":356},{"type":44,"tag":100,"props":943,"children":944},{"class":102,"line":359},[945],{"type":44,"tag":100,"props":946,"children":947},{"style":220},[948],{"type":50,"value":365},{"type":44,"tag":100,"props":950,"children":951},{"class":102,"line":368},[952],{"type":44,"tag":100,"props":953,"children":954},{"style":220},[955],{"type":50,"value":374},{"type":44,"tag":100,"props":957,"children":958},{"class":102,"line":377},[959],{"type":44,"tag":100,"props":960,"children":961},{"emptyLinePlaceholder":23},[962],{"type":50,"value":383},{"type":44,"tag":100,"props":964,"children":965},{"class":102,"line":386},[966],{"type":44,"tag":100,"props":967,"children":968},{"style":390},[969],{"type":50,"value":393},{"type":44,"tag":100,"props":971,"children":972},{"class":102,"line":396},[973,978,983,987],{"type":44,"tag":100,"props":974,"children":975},{"style":390},[976],{"type":50,"value":977},"    DATE",{"type":44,"tag":100,"props":979,"children":980},{"style":400},[981],{"type":50,"value":982},"(order_date) ",{"type":44,"tag":100,"props":984,"children":985},{"style":390},[986],{"type":50,"value":408},{"type":44,"tag":100,"props":988,"children":989},{"style":400},[990],{"type":50,"value":413},{"type":44,"tag":100,"props":992,"children":993},{"class":102,"line":416},[994,998,1002,1006,1010,1014],{"type":44,"tag":100,"props":995,"children":996},{"style":113},[997],{"type":50,"value":422},{"type":44,"tag":100,"props":999,"children":1000},{"style":400},[1001],{"type":50,"value":427},{"type":44,"tag":100,"props":1003,"children":1004},{"style":390},[1005],{"type":50,"value":432},{"type":44,"tag":100,"props":1007,"children":1008},{"style":400},[1009],{"type":50,"value":437},{"type":44,"tag":100,"props":1011,"children":1012},{"style":390},[1013],{"type":50,"value":408},{"type":44,"tag":100,"props":1015,"children":1016},{"style":400},[1017],{"type":50,"value":446},{"type":44,"tag":100,"props":1019,"children":1020},{"class":102,"line":449},[1021,1026,1030,1034,1038,1042],{"type":44,"tag":100,"props":1022,"children":1023},{"style":400},[1024],{"type":50,"value":1025},"    COUNTIF(payment_status ",{"type":44,"tag":100,"props":1027,"children":1028},{"style":390},[1029],{"type":50,"value":460},{"type":44,"tag":100,"props":1031,"children":1032},{"style":119},[1033],{"type":50,"value":465},{"type":44,"tag":100,"props":1035,"children":1036},{"style":400},[1037],{"type":50,"value":437},{"type":44,"tag":100,"props":1039,"children":1040},{"style":390},[1041],{"type":50,"value":408},{"type":44,"tag":100,"props":1043,"children":1044},{"style":400},[1045],{"type":50,"value":478},{"type":44,"tag":100,"props":1047,"children":1048},{"class":102,"line":481},[1049,1054,1058,1062,1066],{"type":44,"tag":100,"props":1050,"children":1051},{"style":400},[1052],{"type":50,"value":1053},"    COUNTIF(cancel_reason ",{"type":44,"tag":100,"props":1055,"children":1056},{"style":390},[1057],{"type":50,"value":492},{"type":44,"tag":100,"props":1059,"children":1060},{"style":400},[1061],{"type":50,"value":437},{"type":44,"tag":100,"props":1063,"children":1064},{"style":390},[1065],{"type":50,"value":408},{"type":44,"tag":100,"props":1067,"children":1068},{"style":400},[1069],{"type":50,"value":505},{"type":44,"tag":100,"props":1071,"children":1072},{"class":102,"line":508},[1073,1077,1081,1085],{"type":44,"tag":100,"props":1074,"children":1075},{"style":113},[1076],{"type":50,"value":514},{"type":44,"tag":100,"props":1078,"children":1079},{"style":400},[1080],{"type":50,"value":519},{"type":44,"tag":100,"props":1082,"children":1083},{"style":390},[1084],{"type":50,"value":408},{"type":44,"tag":100,"props":1086,"children":1087},{"style":400},[1088],{"type":50,"value":528},{"type":44,"tag":100,"props":1090,"children":1091},{"class":102,"line":531},[1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148],{"type":44,"tag":100,"props":1093,"children":1094},{"style":113},[1095],{"type":50,"value":514},{"type":44,"tag":100,"props":1097,"children":1098},{"style":400},[1099],{"type":50,"value":427},{"type":44,"tag":100,"props":1101,"children":1102},{"style":390},[1103],{"type":50,"value":545},{"type":44,"tag":100,"props":1105,"children":1106},{"style":390},[1107],{"type":50,"value":550},{"type":44,"tag":100,"props":1109,"children":1110},{"style":400},[1111],{"type":50,"value":555},{"type":44,"tag":100,"props":1113,"children":1114},{"style":390},[1115],{"type":50,"value":460},{"type":44,"tag":100,"props":1117,"children":1118},{"style":119},[1119],{"type":50,"value":465},{"type":44,"tag":100,"props":1121,"children":1122},{"style":390},[1123],{"type":50,"value":568},{"type":44,"tag":100,"props":1125,"children":1126},{"style":400},[1127],{"type":50,"value":573},{"type":44,"tag":100,"props":1129,"children":1130},{"style":390},[1131],{"type":50,"value":578},{"type":44,"tag":100,"props":1133,"children":1134},{"style":113},[1135],{"type":50,"value":583},{"type":44,"tag":100,"props":1137,"children":1138},{"style":390},[1139],{"type":50,"value":588},{"type":44,"tag":100,"props":1141,"children":1142},{"style":400},[1143],{"type":50,"value":437},{"type":44,"tag":100,"props":1145,"children":1146},{"style":390},[1147],{"type":50,"value":408},{"type":44,"tag":100,"props":1149,"children":1150},{"style":400},[1151],{"type":50,"value":601},{"type":44,"tag":100,"props":1153,"children":1154},{"class":102,"line":604},[1155,1159,1163,1167],{"type":44,"tag":100,"props":1156,"children":1157},{"style":113},[1158],{"type":50,"value":514},{"type":44,"tag":100,"props":1160,"children":1161},{"style":400},[1162],{"type":50,"value":614},{"type":44,"tag":100,"props":1164,"children":1165},{"style":390},[1166],{"type":50,"value":408},{"type":44,"tag":100,"props":1168,"children":1169},{"style":400},[1170],{"type":50,"value":623},{"type":44,"tag":100,"props":1172,"children":1173},{"class":102,"line":626},[1174,1178,1182,1186],{"type":44,"tag":100,"props":1175,"children":1176},{"style":113},[1177],{"type":50,"value":514},{"type":44,"tag":100,"props":1179,"children":1180},{"style":400},[1181],{"type":50,"value":636},{"type":44,"tag":100,"props":1183,"children":1184},{"style":390},[1185],{"type":50,"value":408},{"type":44,"tag":100,"props":1187,"children":1188},{"style":400},[1189],{"type":50,"value":645},{"type":44,"tag":100,"props":1191,"children":1192},{"class":102,"line":648},[1193,1197,1201,1206,1210,1214,1218,1222,1226,1230,1234,1238,1242,1246,1250,1254,1258,1263,1268,1272,1276,1280,1284,1288,1292,1296,1300],{"type":44,"tag":100,"props":1194,"children":1195},{"style":113},[1196],{"type":50,"value":654},{"type":44,"tag":100,"props":1198,"children":1199},{"style":400},[1200],{"type":50,"value":427},{"type":44,"tag":100,"props":1202,"children":1203},{"style":113},[1204],{"type":50,"value":1205},"sum",{"type":44,"tag":100,"props":1207,"children":1208},{"style":400},[1209],{"type":50,"value":427},{"type":44,"tag":100,"props":1211,"children":1212},{"style":390},[1213],{"type":50,"value":545},{"type":44,"tag":100,"props":1215,"children":1216},{"style":390},[1217],{"type":50,"value":550},{"type":44,"tag":100,"props":1219,"children":1220},{"style":400},[1221],{"type":50,"value":555},{"type":44,"tag":100,"props":1223,"children":1224},{"style":390},[1225],{"type":50,"value":460},{"type":44,"tag":100,"props":1227,"children":1228},{"style":119},[1229],{"type":50,"value":465},{"type":44,"tag":100,"props":1231,"children":1232},{"style":390},[1233],{"type":50,"value":568},{"type":44,"tag":100,"props":1235,"children":1236},{"style":400},[1237],{"type":50,"value":573},{"type":44,"tag":100,"props":1239,"children":1240},{"style":390},[1241],{"type":50,"value":578},{"type":44,"tag":100,"props":1243,"children":1244},{"style":113},[1245],{"type":50,"value":583},{"type":44,"tag":100,"props":1247,"children":1248},{"style":390},[1249],{"type":50,"value":588},{"type":44,"tag":100,"props":1251,"children":1252},{"style":400},[1253],{"type":50,"value":437},{"type":44,"tag":100,"props":1255,"children":1256},{"style":390},[1257],{"type":50,"value":664},{"type":44,"tag":100,"props":1259,"children":1260},{"style":113},[1261],{"type":50,"value":1262}," NULLIF",{"type":44,"tag":100,"props":1264,"children":1265},{"style":400},[1266],{"type":50,"value":1267},"(COUNTIF(payment_status ",{"type":44,"tag":100,"props":1269,"children":1270},{"style":390},[1271],{"type":50,"value":460},{"type":44,"tag":100,"props":1273,"children":1274},{"style":119},[1275],{"type":50,"value":465},{"type":44,"tag":100,"props":1277,"children":1278},{"style":400},[1279],{"type":50,"value":684},{"type":44,"tag":100,"props":1281,"children":1282},{"style":113},[1283],{"type":50,"value":679},{"type":44,"tag":100,"props":1285,"children":1286},{"style":400},[1287],{"type":50,"value":684},{"type":44,"tag":100,"props":1289,"children":1290},{"style":113},[1291],{"type":50,"value":689},{"type":44,"tag":100,"props":1293,"children":1294},{"style":400},[1295],{"type":50,"value":437},{"type":44,"tag":100,"props":1297,"children":1298},{"style":390},[1299],{"type":50,"value":408},{"type":44,"tag":100,"props":1301,"children":1302},{"style":400},[1303],{"type":50,"value":702},{"type":44,"tag":100,"props":1305,"children":1306},{"class":102,"line":705},[1307,1311,1316,1320,1324,1328,1332,1336,1341,1345,1349,1353,1357,1361,1365,1369,1373,1377,1381,1385],{"type":44,"tag":100,"props":1308,"children":1309},{"style":113},[1310],{"type":50,"value":654},{"type":44,"tag":100,"props":1312,"children":1313},{"style":400},[1314],{"type":50,"value":1315},"(COUNTIF(cancel_reason ",{"type":44,"tag":100,"props":1317,"children":1318},{"style":390},[1319],{"type":50,"value":492},{"type":44,"tag":100,"props":1321,"children":1322},{"style":400},[1323],{"type":50,"value":437},{"type":44,"tag":100,"props":1325,"children":1326},{"style":390},[1327],{"type":50,"value":664},{"type":44,"tag":100,"props":1329,"children":1330},{"style":113},[1331],{"type":50,"value":1262},{"type":44,"tag":100,"props":1333,"children":1334},{"style":400},[1335],{"type":50,"value":427},{"type":44,"tag":100,"props":1337,"children":1338},{"style":113},[1339],{"type":50,"value":1340},"count",{"type":44,"tag":100,"props":1342,"children":1343},{"style":400},[1344],{"type":50,"value":427},{"type":44,"tag":100,"props":1346,"children":1347},{"style":390},[1348],{"type":50,"value":432},{"type":44,"tag":100,"props":1350,"children":1351},{"style":400},[1352],{"type":50,"value":684},{"type":44,"tag":100,"props":1354,"children":1355},{"style":113},[1356],{"type":50,"value":679},{"type":44,"tag":100,"props":1358,"children":1359},{"style":400},[1360],{"type":50,"value":437},{"type":44,"tag":100,"props":1362,"children":1363},{"style":390},[1364],{"type":50,"value":432},{"type":44,"tag":100,"props":1366,"children":1367},{"style":113},[1368],{"type":50,"value":745},{"type":44,"tag":100,"props":1370,"children":1371},{"style":400},[1372],{"type":50,"value":750},{"type":44,"tag":100,"props":1374,"children":1375},{"style":113},[1376],{"type":50,"value":689},{"type":44,"tag":100,"props":1378,"children":1379},{"style":400},[1380],{"type":50,"value":437},{"type":44,"tag":100,"props":1382,"children":1383},{"style":390},[1384],{"type":50,"value":408},{"type":44,"tag":100,"props":1386,"children":1387},{"style":400},[1388],{"type":50,"value":767},{"type":44,"tag":100,"props":1390,"children":1391},{"class":102,"line":770},[1392,1396,1400,1404,1409],{"type":44,"tag":100,"props":1393,"children":1394},{"style":390},[1395],{"type":50,"value":776},{"type":44,"tag":100,"props":1397,"children":1398},{"style":113},[1399],{"type":50,"value":781},{"type":44,"tag":100,"props":1401,"children":1402},{"style":400},[1403],{"type":50,"value":786},{"type":44,"tag":100,"props":1405,"children":1406},{"style":113},[1407],{"type":50,"value":1408},"stg_orders",{"type":44,"tag":100,"props":1410,"children":1411},{"style":400},[1412],{"type":50,"value":1413}," o\n",{"type":44,"tag":100,"props":1415,"children":1416},{"class":102,"line":794},[1417,1422,1427,1431,1436,1441,1446,1451,1455,1460],{"type":44,"tag":100,"props":1418,"children":1419},{"style":390},[1420],{"type":50,"value":1421},"WHERE",{"type":44,"tag":100,"props":1423,"children":1424},{"style":113},[1425],{"type":50,"value":1426}," o",{"type":44,"tag":100,"props":1428,"children":1429},{"style":400},[1430],{"type":50,"value":786},{"type":44,"tag":100,"props":1432,"children":1433},{"style":113},[1434],{"type":50,"value":1435},"financial_status",{"type":44,"tag":100,"props":1437,"children":1438},{"style":390},[1439],{"type":50,"value":1440}," IN",{"type":44,"tag":100,"props":1442,"children":1443},{"style":400},[1444],{"type":50,"value":1445}," (",{"type":44,"tag":100,"props":1447,"children":1448},{"style":119},[1449],{"type":50,"value":1450},"'paid'",{"type":44,"tag":100,"props":1452,"children":1453},{"style":400},[1454],{"type":50,"value":750},{"type":44,"tag":100,"props":1456,"children":1457},{"style":119},[1458],{"type":50,"value":1459},"'partially_refunded'",{"type":44,"tag":100,"props":1461,"children":1462},{"style":400},[1463],{"type":50,"value":1464},")\n",{"type":44,"tag":100,"props":1466,"children":1467},{"class":102,"line":808},[1468,1472,1477],{"type":44,"tag":100,"props":1469,"children":1470},{"style":390},[1471],{"type":50,"value":800},{"type":44,"tag":100,"props":1473,"children":1474},{"style":390},[1475],{"type":50,"value":1476}," DATE",{"type":44,"tag":100,"props":1478,"children":1479},{"style":400},[1480],{"type":50,"value":1481},"(order_date)\n",{"type":44,"tag":100,"props":1483,"children":1485},{"class":102,"line":1484},34,[1486,1490],{"type":44,"tag":100,"props":1487,"children":1488},{"style":390},[1489],{"type":50,"value":814},{"type":44,"tag":100,"props":1491,"children":1492},{"style":400},[1493],{"type":50,"value":819},{"type":44,"tag":203,"props":1495,"children":1496},{"v-slot:snowflake":7},[1497],{"type":44,"tag":90,"props":1498,"children":1500},{"className":208,"code":1499,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_daily_revenue\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_orders\ncolumns:\n  - name: order_date\n    type: date\n    checks:\n      - name: not_null\n      - name: unique\ncustom_checks:\n  - name: has_rows\n    query: \"SELECT count(*) > 0 FROM reports.rpt_daily_revenue\"\n    value: 1\n@bruin *\u002F\n\nSELECT\n    order_date::DATE AS order_date,\n    count(*) AS total_orders,\n    COUNT(CASE WHEN payment_status = 'paid' THEN 1 END) AS paid_orders,\n    COUNT(CASE WHEN cancel_reason IS NOT NULL THEN 1 END) AS cancelled_orders,\n    sum(order_total) AS gross_revenue,\n    sum(CASE WHEN payment_status = 'paid' THEN order_total ELSE 0 END) AS net_revenue,\n    sum(discount_amount) AS total_discounts,\n    sum(tax_amount) AS total_tax,\n    round(sum(CASE WHEN payment_status = 'paid' THEN order_total ELSE 0 END) \u002F NULLIF(COUNT(CASE WHEN payment_status = 'paid' THEN 1 END), 0), 2) AS avg_order_value,\n    round(COUNT(CASE WHEN cancel_reason IS NOT NULL THEN 1 END) \u002F NULLIF(count(*), 0) * 100, 2) AS cancellation_rate\nFROM staging.stg_orders\nGROUP BY order_date::DATE\nORDER BY order_date\n",[1501],{"type":44,"tag":81,"props":1502,"children":1503},{"__ignoreMap":7},[1504,1511,1518,1525,1532,1539,1546,1553,1560,1567,1574,1581,1588,1595,1602,1609,1616,1623,1630,1637,1644,1666,1693,1750,1802,1821,1884,1903,1922,2066,2181,2200,2217],{"type":44,"tag":100,"props":1505,"children":1506},{"class":102,"line":103},[1507],{"type":44,"tag":100,"props":1508,"children":1509},{"style":220},[1510],{"type":50,"value":223},{"type":44,"tag":100,"props":1512,"children":1513},{"class":102,"line":226},[1514],{"type":44,"tag":100,"props":1515,"children":1516},{"style":220},[1517],{"type":50,"value":232},{"type":44,"tag":100,"props":1519,"children":1520},{"class":102,"line":235},[1521],{"type":44,"tag":100,"props":1522,"children":1523},{"style":220},[1524],{"type":50,"value":241},{"type":44,"tag":100,"props":1526,"children":1527},{"class":102,"line":24},[1528],{"type":44,"tag":100,"props":1529,"children":1530},{"style":220},[1531],{"type":50,"value":249},{"type":44,"tag":100,"props":1533,"children":1534},{"class":102,"line":252},[1535],{"type":44,"tag":100,"props":1536,"children":1537},{"style":220},[1538],{"type":50,"value":258},{"type":44,"tag":100,"props":1540,"children":1541},{"class":102,"line":261},[1542],{"type":44,"tag":100,"props":1543,"children":1544},{"style":220},[1545],{"type":50,"value":267},{"type":44,"tag":100,"props":1547,"children":1548},{"class":102,"line":270},[1549],{"type":44,"tag":100,"props":1550,"children":1551},{"style":220},[1552],{"type":50,"value":276},{"type":44,"tag":100,"props":1554,"children":1555},{"class":102,"line":279},[1556],{"type":44,"tag":100,"props":1557,"children":1558},{"style":220},[1559],{"type":50,"value":285},{"type":44,"tag":100,"props":1561,"children":1562},{"class":102,"line":288},[1563],{"type":44,"tag":100,"props":1564,"children":1565},{"style":220},[1566],{"type":50,"value":294},{"type":44,"tag":100,"props":1568,"children":1569},{"class":102,"line":297},[1570],{"type":44,"tag":100,"props":1571,"children":1572},{"style":220},[1573],{"type":50,"value":303},{"type":44,"tag":100,"props":1575,"children":1576},{"class":102,"line":306},[1577],{"type":44,"tag":100,"props":1578,"children":1579},{"style":220},[1580],{"type":50,"value":312},{"type":44,"tag":100,"props":1582,"children":1583},{"class":102,"line":315},[1584],{"type":44,"tag":100,"props":1585,"children":1586},{"style":220},[1587],{"type":50,"value":321},{"type":44,"tag":100,"props":1589,"children":1590},{"class":102,"line":324},[1591],{"type":44,"tag":100,"props":1592,"children":1593},{"style":220},[1594],{"type":50,"value":330},{"type":44,"tag":100,"props":1596,"children":1597},{"class":102,"line":333},[1598],{"type":44,"tag":100,"props":1599,"children":1600},{"style":220},[1601],{"type":50,"value":339},{"type":44,"tag":100,"props":1603,"children":1604},{"class":102,"line":11},[1605],{"type":44,"tag":100,"props":1606,"children":1607},{"style":220},[1608],{"type":50,"value":347},{"type":44,"tag":100,"props":1610,"children":1611},{"class":102,"line":350},[1612],{"type":44,"tag":100,"props":1613,"children":1614},{"style":220},[1615],{"type":50,"value":356},{"type":44,"tag":100,"props":1617,"children":1618},{"class":102,"line":359},[1619],{"type":44,"tag":100,"props":1620,"children":1621},{"style":220},[1622],{"type":50,"value":365},{"type":44,"tag":100,"props":1624,"children":1625},{"class":102,"line":368},[1626],{"type":44,"tag":100,"props":1627,"children":1628},{"style":220},[1629],{"type":50,"value":374},{"type":44,"tag":100,"props":1631,"children":1632},{"class":102,"line":377},[1633],{"type":44,"tag":100,"props":1634,"children":1635},{"emptyLinePlaceholder":23},[1636],{"type":50,"value":383},{"type":44,"tag":100,"props":1638,"children":1639},{"class":102,"line":386},[1640],{"type":44,"tag":100,"props":1641,"children":1642},{"style":390},[1643],{"type":50,"value":393},{"type":44,"tag":100,"props":1645,"children":1646},{"class":102,"line":396},[1647,1652,1657,1662],{"type":44,"tag":100,"props":1648,"children":1649},{"style":400},[1650],{"type":50,"value":1651},"    order_date::",{"type":44,"tag":100,"props":1653,"children":1654},{"style":390},[1655],{"type":50,"value":1656},"DATE",{"type":44,"tag":100,"props":1658,"children":1659},{"style":390},[1660],{"type":50,"value":1661}," AS",{"type":44,"tag":100,"props":1663,"children":1664},{"style":400},[1665],{"type":50,"value":413},{"type":44,"tag":100,"props":1667,"children":1668},{"class":102,"line":416},[1669,1673,1677,1681,1685,1689],{"type":44,"tag":100,"props":1670,"children":1671},{"style":113},[1672],{"type":50,"value":422},{"type":44,"tag":100,"props":1674,"children":1675},{"style":400},[1676],{"type":50,"value":427},{"type":44,"tag":100,"props":1678,"children":1679},{"style":390},[1680],{"type":50,"value":432},{"type":44,"tag":100,"props":1682,"children":1683},{"style":400},[1684],{"type":50,"value":437},{"type":44,"tag":100,"props":1686,"children":1687},{"style":390},[1688],{"type":50,"value":408},{"type":44,"tag":100,"props":1690,"children":1691},{"style":400},[1692],{"type":50,"value":446},{"type":44,"tag":100,"props":1694,"children":1695},{"class":102,"line":449},[1696,1701,1705,1709,1713,1717,1721,1725,1729,1734,1738,1742,1746],{"type":44,"tag":100,"props":1697,"children":1698},{"style":113},[1699],{"type":50,"value":1700},"    COUNT",{"type":44,"tag":100,"props":1702,"children":1703},{"style":400},[1704],{"type":50,"value":427},{"type":44,"tag":100,"props":1706,"children":1707},{"style":390},[1708],{"type":50,"value":545},{"type":44,"tag":100,"props":1710,"children":1711},{"style":390},[1712],{"type":50,"value":550},{"type":44,"tag":100,"props":1714,"children":1715},{"style":400},[1716],{"type":50,"value":555},{"type":44,"tag":100,"props":1718,"children":1719},{"style":390},[1720],{"type":50,"value":460},{"type":44,"tag":100,"props":1722,"children":1723},{"style":119},[1724],{"type":50,"value":465},{"type":44,"tag":100,"props":1726,"children":1727},{"style":390},[1728],{"type":50,"value":568},{"type":44,"tag":100,"props":1730,"children":1731},{"style":113},[1732],{"type":50,"value":1733}," 1",{"type":44,"tag":100,"props":1735,"children":1736},{"style":390},[1737],{"type":50,"value":588},{"type":44,"tag":100,"props":1739,"children":1740},{"style":400},[1741],{"type":50,"value":437},{"type":44,"tag":100,"props":1743,"children":1744},{"style":390},[1745],{"type":50,"value":408},{"type":44,"tag":100,"props":1747,"children":1748},{"style":400},[1749],{"type":50,"value":478},{"type":44,"tag":100,"props":1751,"children":1752},{"class":102,"line":481},[1753,1757,1761,1765,1769,1774,1778,1782,1786,1790,1794,1798],{"type":44,"tag":100,"props":1754,"children":1755},{"style":113},[1756],{"type":50,"value":1700},{"type":44,"tag":100,"props":1758,"children":1759},{"style":400},[1760],{"type":50,"value":427},{"type":44,"tag":100,"props":1762,"children":1763},{"style":390},[1764],{"type":50,"value":545},{"type":44,"tag":100,"props":1766,"children":1767},{"style":390},[1768],{"type":50,"value":550},{"type":44,"tag":100,"props":1770,"children":1771},{"style":400},[1772],{"type":50,"value":1773}," cancel_reason ",{"type":44,"tag":100,"props":1775,"children":1776},{"style":390},[1777],{"type":50,"value":492},{"type":44,"tag":100,"props":1779,"children":1780},{"style":390},[1781],{"type":50,"value":568},{"type":44,"tag":100,"props":1783,"children":1784},{"style":113},[1785],{"type":50,"value":1733},{"type":44,"tag":100,"props":1787,"children":1788},{"style":390},[1789],{"type":50,"value":588},{"type":44,"tag":100,"props":1791,"children":1792},{"style":400},[1793],{"type":50,"value":437},{"type":44,"tag":100,"props":1795,"children":1796},{"style":390},[1797],{"type":50,"value":408},{"type":44,"tag":100,"props":1799,"children":1800},{"style":400},[1801],{"type":50,"value":505},{"type":44,"tag":100,"props":1803,"children":1804},{"class":102,"line":508},[1805,1809,1813,1817],{"type":44,"tag":100,"props":1806,"children":1807},{"style":113},[1808],{"type":50,"value":514},{"type":44,"tag":100,"props":1810,"children":1811},{"style":400},[1812],{"type":50,"value":519},{"type":44,"tag":100,"props":1814,"children":1815},{"style":390},[1816],{"type":50,"value":408},{"type":44,"tag":100,"props":1818,"children":1819},{"style":400},[1820],{"type":50,"value":528},{"type":44,"tag":100,"props":1822,"children":1823},{"class":102,"line":531},[1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880],{"type":44,"tag":100,"props":1825,"children":1826},{"style":113},[1827],{"type":50,"value":514},{"type":44,"tag":100,"props":1829,"children":1830},{"style":400},[1831],{"type":50,"value":427},{"type":44,"tag":100,"props":1833,"children":1834},{"style":390},[1835],{"type":50,"value":545},{"type":44,"tag":100,"props":1837,"children":1838},{"style":390},[1839],{"type":50,"value":550},{"type":44,"tag":100,"props":1841,"children":1842},{"style":400},[1843],{"type":50,"value":555},{"type":44,"tag":100,"props":1845,"children":1846},{"style":390},[1847],{"type":50,"value":460},{"type":44,"tag":100,"props":1849,"children":1850},{"style":119},[1851],{"type":50,"value":465},{"type":44,"tag":100,"props":1853,"children":1854},{"style":390},[1855],{"type":50,"value":568},{"type":44,"tag":100,"props":1857,"children":1858},{"style":400},[1859],{"type":50,"value":573},{"type":44,"tag":100,"props":1861,"children":1862},{"style":390},[1863],{"type":50,"value":578},{"type":44,"tag":100,"props":1865,"children":1866},{"style":113},[1867],{"type":50,"value":583},{"type":44,"tag":100,"props":1869,"children":1870},{"style":390},[1871],{"type":50,"value":588},{"type":44,"tag":100,"props":1873,"children":1874},{"style":400},[1875],{"type":50,"value":437},{"type":44,"tag":100,"props":1877,"children":1878},{"style":390},[1879],{"type":50,"value":408},{"type":44,"tag":100,"props":1881,"children":1882},{"style":400},[1883],{"type":50,"value":601},{"type":44,"tag":100,"props":1885,"children":1886},{"class":102,"line":604},[1887,1891,1895,1899],{"type":44,"tag":100,"props":1888,"children":1889},{"style":113},[1890],{"type":50,"value":514},{"type":44,"tag":100,"props":1892,"children":1893},{"style":400},[1894],{"type":50,"value":614},{"type":44,"tag":100,"props":1896,"children":1897},{"style":390},[1898],{"type":50,"value":408},{"type":44,"tag":100,"props":1900,"children":1901},{"style":400},[1902],{"type":50,"value":623},{"type":44,"tag":100,"props":1904,"children":1905},{"class":102,"line":626},[1906,1910,1914,1918],{"type":44,"tag":100,"props":1907,"children":1908},{"style":113},[1909],{"type":50,"value":514},{"type":44,"tag":100,"props":1911,"children":1912},{"style":400},[1913],{"type":50,"value":636},{"type":44,"tag":100,"props":1915,"children":1916},{"style":390},[1917],{"type":50,"value":408},{"type":44,"tag":100,"props":1919,"children":1920},{"style":400},[1921],{"type":50,"value":645},{"type":44,"tag":100,"props":1923,"children":1924},{"class":102,"line":648},[1925,1929,1933,1937,1941,1945,1949,1953,1957,1961,1965,1969,1973,1977,1981,1985,1989,1993,1997,2002,2006,2010,2014,2018,2022,2026,2030,2034,2038,2042,2046,2050,2054,2058,2062],{"type":44,"tag":100,"props":1926,"children":1927},{"style":113},[1928],{"type":50,"value":654},{"type":44,"tag":100,"props":1930,"children":1931},{"style":400},[1932],{"type":50,"value":427},{"type":44,"tag":100,"props":1934,"children":1935},{"style":113},[1936],{"type":50,"value":1205},{"type":44,"tag":100,"props":1938,"children":1939},{"style":400},[1940],{"type":50,"value":427},{"type":44,"tag":100,"props":1942,"children":1943},{"style":390},[1944],{"type":50,"value":545},{"type":44,"tag":100,"props":1946,"children":1947},{"style":390},[1948],{"type":50,"value":550},{"type":44,"tag":100,"props":1950,"children":1951},{"style":400},[1952],{"type":50,"value":555},{"type":44,"tag":100,"props":1954,"children":1955},{"style":390},[1956],{"type":50,"value":460},{"type":44,"tag":100,"props":1958,"children":1959},{"style":119},[1960],{"type":50,"value":465},{"type":44,"tag":100,"props":1962,"children":1963},{"style":390},[1964],{"type":50,"value":568},{"type":44,"tag":100,"props":1966,"children":1967},{"style":400},[1968],{"type":50,"value":573},{"type":44,"tag":100,"props":1970,"children":1971},{"style":390},[1972],{"type":50,"value":578},{"type":44,"tag":100,"props":1974,"children":1975},{"style":113},[1976],{"type":50,"value":583},{"type":44,"tag":100,"props":1978,"children":1979},{"style":390},[1980],{"type":50,"value":588},{"type":44,"tag":100,"props":1982,"children":1983},{"style":400},[1984],{"type":50,"value":437},{"type":44,"tag":100,"props":1986,"children":1987},{"style":390},[1988],{"type":50,"value":664},{"type":44,"tag":100,"props":1990,"children":1991},{"style":113},[1992],{"type":50,"value":1262},{"type":44,"tag":100,"props":1994,"children":1995},{"style":400},[1996],{"type":50,"value":427},{"type":44,"tag":100,"props":1998,"children":1999},{"style":113},[2000],{"type":50,"value":2001},"COUNT",{"type":44,"tag":100,"props":2003,"children":2004},{"style":400},[2005],{"type":50,"value":427},{"type":44,"tag":100,"props":2007,"children":2008},{"style":390},[2009],{"type":50,"value":545},{"type":44,"tag":100,"props":2011,"children":2012},{"style":390},[2013],{"type":50,"value":550},{"type":44,"tag":100,"props":2015,"children":2016},{"style":400},[2017],{"type":50,"value":555},{"type":44,"tag":100,"props":2019,"children":2020},{"style":390},[2021],{"type":50,"value":460},{"type":44,"tag":100,"props":2023,"children":2024},{"style":119},[2025],{"type":50,"value":465},{"type":44,"tag":100,"props":2027,"children":2028},{"style":390},[2029],{"type":50,"value":568},{"type":44,"tag":100,"props":2031,"children":2032},{"style":113},[2033],{"type":50,"value":1733},{"type":44,"tag":100,"props":2035,"children":2036},{"style":390},[2037],{"type":50,"value":588},{"type":44,"tag":100,"props":2039,"children":2040},{"style":400},[2041],{"type":50,"value":684},{"type":44,"tag":100,"props":2043,"children":2044},{"style":113},[2045],{"type":50,"value":679},{"type":44,"tag":100,"props":2047,"children":2048},{"style":400},[2049],{"type":50,"value":684},{"type":44,"tag":100,"props":2051,"children":2052},{"style":113},[2053],{"type":50,"value":689},{"type":44,"tag":100,"props":2055,"children":2056},{"style":400},[2057],{"type":50,"value":437},{"type":44,"tag":100,"props":2059,"children":2060},{"style":390},[2061],{"type":50,"value":408},{"type":44,"tag":100,"props":2063,"children":2064},{"style":400},[2065],{"type":50,"value":702},{"type":44,"tag":100,"props":2067,"children":2068},{"class":102,"line":705},[2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2109,2113,2117,2121,2125,2129,2133,2137,2141,2145,2149,2153,2157,2161,2165,2169,2173,2177],{"type":44,"tag":100,"props":2070,"children":2071},{"style":113},[2072],{"type":50,"value":654},{"type":44,"tag":100,"props":2074,"children":2075},{"style":400},[2076],{"type":50,"value":427},{"type":44,"tag":100,"props":2078,"children":2079},{"style":113},[2080],{"type":50,"value":2001},{"type":44,"tag":100,"props":2082,"children":2083},{"style":400},[2084],{"type":50,"value":427},{"type":44,"tag":100,"props":2086,"children":2087},{"style":390},[2088],{"type":50,"value":545},{"type":44,"tag":100,"props":2090,"children":2091},{"style":390},[2092],{"type":50,"value":550},{"type":44,"tag":100,"props":2094,"children":2095},{"style":400},[2096],{"type":50,"value":1773},{"type":44,"tag":100,"props":2098,"children":2099},{"style":390},[2100],{"type":50,"value":492},{"type":44,"tag":100,"props":2102,"children":2103},{"style":390},[2104],{"type":50,"value":568},{"type":44,"tag":100,"props":2106,"children":2107},{"style":113},[2108],{"type":50,"value":1733},{"type":44,"tag":100,"props":2110,"children":2111},{"style":390},[2112],{"type":50,"value":588},{"type":44,"tag":100,"props":2114,"children":2115},{"style":400},[2116],{"type":50,"value":437},{"type":44,"tag":100,"props":2118,"children":2119},{"style":390},[2120],{"type":50,"value":664},{"type":44,"tag":100,"props":2122,"children":2123},{"style":113},[2124],{"type":50,"value":1262},{"type":44,"tag":100,"props":2126,"children":2127},{"style":400},[2128],{"type":50,"value":427},{"type":44,"tag":100,"props":2130,"children":2131},{"style":113},[2132],{"type":50,"value":1340},{"type":44,"tag":100,"props":2134,"children":2135},{"style":400},[2136],{"type":50,"value":427},{"type":44,"tag":100,"props":2138,"children":2139},{"style":390},[2140],{"type":50,"value":432},{"type":44,"tag":100,"props":2142,"children":2143},{"style":400},[2144],{"type":50,"value":684},{"type":44,"tag":100,"props":2146,"children":2147},{"style":113},[2148],{"type":50,"value":679},{"type":44,"tag":100,"props":2150,"children":2151},{"style":400},[2152],{"type":50,"value":437},{"type":44,"tag":100,"props":2154,"children":2155},{"style":390},[2156],{"type":50,"value":432},{"type":44,"tag":100,"props":2158,"children":2159},{"style":113},[2160],{"type":50,"value":745},{"type":44,"tag":100,"props":2162,"children":2163},{"style":400},[2164],{"type":50,"value":750},{"type":44,"tag":100,"props":2166,"children":2167},{"style":113},[2168],{"type":50,"value":689},{"type":44,"tag":100,"props":2170,"children":2171},{"style":400},[2172],{"type":50,"value":437},{"type":44,"tag":100,"props":2174,"children":2175},{"style":390},[2176],{"type":50,"value":408},{"type":44,"tag":100,"props":2178,"children":2179},{"style":400},[2180],{"type":50,"value":767},{"type":44,"tag":100,"props":2182,"children":2183},{"class":102,"line":770},[2184,2188,2192,2196],{"type":44,"tag":100,"props":2185,"children":2186},{"style":390},[2187],{"type":50,"value":776},{"type":44,"tag":100,"props":2189,"children":2190},{"style":113},[2191],{"type":50,"value":781},{"type":44,"tag":100,"props":2193,"children":2194},{"style":400},[2195],{"type":50,"value":786},{"type":44,"tag":100,"props":2197,"children":2198},{"style":113},[2199],{"type":50,"value":791},{"type":44,"tag":100,"props":2201,"children":2202},{"class":102,"line":794},[2203,2207,2212],{"type":44,"tag":100,"props":2204,"children":2205},{"style":390},[2206],{"type":50,"value":800},{"type":44,"tag":100,"props":2208,"children":2209},{"style":400},[2210],{"type":50,"value":2211}," order_date::",{"type":44,"tag":100,"props":2213,"children":2214},{"style":390},[2215],{"type":50,"value":2216},"DATE\n",{"type":44,"tag":100,"props":2218,"children":2219},{"class":102,"line":808},[2220,2224],{"type":44,"tag":100,"props":2221,"children":2222},{"style":390},[2223],{"type":50,"value":814},{"type":44,"tag":100,"props":2225,"children":2226},{"style":400},[2227],{"type":50,"value":819},{"type":44,"tag":124,"props":2229,"children":2231},{"id":2230},"_2-customer-cohorts-rpt_customer_cohortssql",[2232,2234],{"type":50,"value":2233},"2) Customer cohorts - ",{"type":44,"tag":81,"props":2235,"children":2237},{"className":2236},[],[2238],{"type":50,"value":2239},"rpt_customer_cohorts.sql",{"type":44,"tag":53,"props":2241,"children":2242},{},[2243],{"type":50,"value":2244},"Monthly cohort analysis showing retention and lifetime value. This tells you if you're acquiring customers who stick around.",{"type":44,"tag":53,"props":2246,"children":2247},{},[2248,2249,2258],{"type":50,"value":183},{"type":44,"tag":185,"props":2250,"children":2251},{},[2252],{"type":44,"tag":81,"props":2253,"children":2255},{"className":2254},[],[2256],{"type":50,"value":2257},"ecommerce\u002Fassets\u002Freports\u002Frpt_customer_cohorts.sql",{"type":50,"value":195},{"type":44,"tag":197,"props":2260,"children":2261},{":variants":199,"group":200},[2262,3210,4149],{"type":44,"tag":203,"props":2263,"children":2264},{"v-slot:clickhouse":7},[2265],{"type":44,"tag":90,"props":2266,"children":2268},{"className":208,"code":2267,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_customer_cohorts\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_orders\n  - staging.stg_customers\ncolumns:\n  - name: cohort_month\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nWITH customer_orders AS (\n    SELECT\n        o.customer_email,\n        toStartOfMonth(c.first_seen_at) AS cohort_month,\n        toStartOfMonth(o.order_date) AS order_month,\n        o.order_total\n    FROM staging.stg_orders o\n    INNER JOIN staging.stg_customers c\n        ON o.customer_email = c.customer_email\n    WHERE o.payment_status = 'paid'\n),\ncohort_sizes AS (\n    SELECT\n        cohort_month,\n        count(DISTINCT customer_email) AS cohort_size\n    FROM customer_orders\n    GROUP BY cohort_month\n)\nSELECT\n    co.cohort_month,\n    cs.cohort_size,\n    dateDiff('month', co.cohort_month, co.order_month) AS months_since_first,\n    count(DISTINCT co.customer_email) AS active_customers,\n    round(active_customers \u002F nullIf(cs.cohort_size, 0) * 100, 2) AS retention_rate,\n    sum(co.order_total) AS cohort_revenue,\n    round(cohort_revenue \u002F nullIf(cs.cohort_size, 0), 2) AS revenue_per_customer\nFROM customer_orders co\nINNER JOIN cohort_sizes cs\n    ON co.cohort_month = cs.cohort_month\nGROUP BY co.cohort_month, cs.cohort_size, months_since_first\nORDER BY co.cohort_month, months_since_first\n",[2269],{"type":44,"tag":81,"props":2270,"children":2271},{"__ignoreMap":7},[2272,2279,2287,2294,2301,2308,2315,2322,2330,2337,2345,2352,2359,2366,2373,2380,2402,2410,2432,2467,2501,2517,2541,2567,2606,2636,2644,2660,2667,2675,2706,2718,2731,2738,2745,2767,2789,2854,2896,2975,3013,3079,3092,3106,3145,3186],{"type":44,"tag":100,"props":2273,"children":2274},{"class":102,"line":103},[2275],{"type":44,"tag":100,"props":2276,"children":2277},{"style":220},[2278],{"type":50,"value":223},{"type":44,"tag":100,"props":2280,"children":2281},{"class":102,"line":226},[2282],{"type":44,"tag":100,"props":2283,"children":2284},{"style":220},[2285],{"type":50,"value":2286},"name: reports.rpt_customer_cohorts\n",{"type":44,"tag":100,"props":2288,"children":2289},{"class":102,"line":235},[2290],{"type":44,"tag":100,"props":2291,"children":2292},{"style":220},[2293],{"type":50,"value":241},{"type":44,"tag":100,"props":2295,"children":2296},{"class":102,"line":24},[2297],{"type":44,"tag":100,"props":2298,"children":2299},{"style":220},[2300],{"type":50,"value":249},{"type":44,"tag":100,"props":2302,"children":2303},{"class":102,"line":252},[2304],{"type":44,"tag":100,"props":2305,"children":2306},{"style":220},[2307],{"type":50,"value":258},{"type":44,"tag":100,"props":2309,"children":2310},{"class":102,"line":261},[2311],{"type":44,"tag":100,"props":2312,"children":2313},{"style":220},[2314],{"type":50,"value":267},{"type":44,"tag":100,"props":2316,"children":2317},{"class":102,"line":270},[2318],{"type":44,"tag":100,"props":2319,"children":2320},{"style":220},[2321],{"type":50,"value":276},{"type":44,"tag":100,"props":2323,"children":2324},{"class":102,"line":279},[2325],{"type":44,"tag":100,"props":2326,"children":2327},{"style":220},[2328],{"type":50,"value":2329},"  - staging.stg_customers\n",{"type":44,"tag":100,"props":2331,"children":2332},{"class":102,"line":288},[2333],{"type":44,"tag":100,"props":2334,"children":2335},{"style":220},[2336],{"type":50,"value":285},{"type":44,"tag":100,"props":2338,"children":2339},{"class":102,"line":297},[2340],{"type":44,"tag":100,"props":2341,"children":2342},{"style":220},[2343],{"type":50,"value":2344},"  - name: cohort_month\n",{"type":44,"tag":100,"props":2346,"children":2347},{"class":102,"line":306},[2348],{"type":44,"tag":100,"props":2349,"children":2350},{"style":220},[2351],{"type":50,"value":303},{"type":44,"tag":100,"props":2353,"children":2354},{"class":102,"line":315},[2355],{"type":44,"tag":100,"props":2356,"children":2357},{"style":220},[2358],{"type":50,"value":312},{"type":44,"tag":100,"props":2360,"children":2361},{"class":102,"line":324},[2362],{"type":44,"tag":100,"props":2363,"children":2364},{"style":220},[2365],{"type":50,"value":321},{"type":44,"tag":100,"props":2367,"children":2368},{"class":102,"line":333},[2369],{"type":44,"tag":100,"props":2370,"children":2371},{"style":220},[2372],{"type":50,"value":374},{"type":44,"tag":100,"props":2374,"children":2375},{"class":102,"line":11},[2376],{"type":44,"tag":100,"props":2377,"children":2378},{"emptyLinePlaceholder":23},[2379],{"type":50,"value":383},{"type":44,"tag":100,"props":2381,"children":2382},{"class":102,"line":350},[2383,2388,2393,2397],{"type":44,"tag":100,"props":2384,"children":2385},{"style":390},[2386],{"type":50,"value":2387},"WITH",{"type":44,"tag":100,"props":2389,"children":2390},{"style":400},[2391],{"type":50,"value":2392}," customer_orders ",{"type":44,"tag":100,"props":2394,"children":2395},{"style":390},[2396],{"type":50,"value":408},{"type":44,"tag":100,"props":2398,"children":2399},{"style":400},[2400],{"type":50,"value":2401}," (\n",{"type":44,"tag":100,"props":2403,"children":2404},{"class":102,"line":359},[2405],{"type":44,"tag":100,"props":2406,"children":2407},{"style":390},[2408],{"type":50,"value":2409},"    SELECT\n",{"type":44,"tag":100,"props":2411,"children":2412},{"class":102,"line":368},[2413,2418,2422,2427],{"type":44,"tag":100,"props":2414,"children":2415},{"style":113},[2416],{"type":50,"value":2417},"        o",{"type":44,"tag":100,"props":2419,"children":2420},{"style":400},[2421],{"type":50,"value":786},{"type":44,"tag":100,"props":2423,"children":2424},{"style":113},[2425],{"type":50,"value":2426},"customer_email",{"type":44,"tag":100,"props":2428,"children":2429},{"style":400},[2430],{"type":50,"value":2431},",\n",{"type":44,"tag":100,"props":2433,"children":2434},{"class":102,"line":377},[2435,2440,2445,2449,2454,2458,2462],{"type":44,"tag":100,"props":2436,"children":2437},{"style":400},[2438],{"type":50,"value":2439},"        toStartOfMonth(",{"type":44,"tag":100,"props":2441,"children":2442},{"style":113},[2443],{"type":50,"value":2444},"c",{"type":44,"tag":100,"props":2446,"children":2447},{"style":400},[2448],{"type":50,"value":786},{"type":44,"tag":100,"props":2450,"children":2451},{"style":113},[2452],{"type":50,"value":2453},"first_seen_at",{"type":44,"tag":100,"props":2455,"children":2456},{"style":400},[2457],{"type":50,"value":437},{"type":44,"tag":100,"props":2459,"children":2460},{"style":390},[2461],{"type":50,"value":408},{"type":44,"tag":100,"props":2463,"children":2464},{"style":400},[2465],{"type":50,"value":2466}," cohort_month,\n",{"type":44,"tag":100,"props":2468,"children":2469},{"class":102,"line":386},[2470,2474,2479,2483,2488,2492,2496],{"type":44,"tag":100,"props":2471,"children":2472},{"style":400},[2473],{"type":50,"value":2439},{"type":44,"tag":100,"props":2475,"children":2476},{"style":113},[2477],{"type":50,"value":2478},"o",{"type":44,"tag":100,"props":2480,"children":2481},{"style":400},[2482],{"type":50,"value":786},{"type":44,"tag":100,"props":2484,"children":2485},{"style":113},[2486],{"type":50,"value":2487},"order_date",{"type":44,"tag":100,"props":2489,"children":2490},{"style":400},[2491],{"type":50,"value":437},{"type":44,"tag":100,"props":2493,"children":2494},{"style":390},[2495],{"type":50,"value":408},{"type":44,"tag":100,"props":2497,"children":2498},{"style":400},[2499],{"type":50,"value":2500}," order_month,\n",{"type":44,"tag":100,"props":2502,"children":2503},{"class":102,"line":396},[2504,2508,2512],{"type":44,"tag":100,"props":2505,"children":2506},{"style":113},[2507],{"type":50,"value":2417},{"type":44,"tag":100,"props":2509,"children":2510},{"style":400},[2511],{"type":50,"value":786},{"type":44,"tag":100,"props":2513,"children":2514},{"style":113},[2515],{"type":50,"value":2516},"order_total\n",{"type":44,"tag":100,"props":2518,"children":2519},{"class":102,"line":416},[2520,2525,2529,2533,2537],{"type":44,"tag":100,"props":2521,"children":2522},{"style":390},[2523],{"type":50,"value":2524},"    FROM",{"type":44,"tag":100,"props":2526,"children":2527},{"style":113},[2528],{"type":50,"value":781},{"type":44,"tag":100,"props":2530,"children":2531},{"style":400},[2532],{"type":50,"value":786},{"type":44,"tag":100,"props":2534,"children":2535},{"style":113},[2536],{"type":50,"value":1408},{"type":44,"tag":100,"props":2538,"children":2539},{"style":400},[2540],{"type":50,"value":1413},{"type":44,"tag":100,"props":2542,"children":2543},{"class":102,"line":449},[2544,2549,2553,2557,2562],{"type":44,"tag":100,"props":2545,"children":2546},{"style":390},[2547],{"type":50,"value":2548},"    INNER JOIN",{"type":44,"tag":100,"props":2550,"children":2551},{"style":113},[2552],{"type":50,"value":781},{"type":44,"tag":100,"props":2554,"children":2555},{"style":400},[2556],{"type":50,"value":786},{"type":44,"tag":100,"props":2558,"children":2559},{"style":113},[2560],{"type":50,"value":2561},"stg_customers",{"type":44,"tag":100,"props":2563,"children":2564},{"style":400},[2565],{"type":50,"value":2566}," c\n",{"type":44,"tag":100,"props":2568,"children":2569},{"class":102,"line":481},[2570,2575,2579,2583,2587,2592,2597,2601],{"type":44,"tag":100,"props":2571,"children":2572},{"style":390},[2573],{"type":50,"value":2574},"        ON",{"type":44,"tag":100,"props":2576,"children":2577},{"style":113},[2578],{"type":50,"value":1426},{"type":44,"tag":100,"props":2580,"children":2581},{"style":400},[2582],{"type":50,"value":786},{"type":44,"tag":100,"props":2584,"children":2585},{"style":113},[2586],{"type":50,"value":2426},{"type":44,"tag":100,"props":2588,"children":2589},{"style":390},[2590],{"type":50,"value":2591}," =",{"type":44,"tag":100,"props":2593,"children":2594},{"style":113},[2595],{"type":50,"value":2596}," c",{"type":44,"tag":100,"props":2598,"children":2599},{"style":400},[2600],{"type":50,"value":786},{"type":44,"tag":100,"props":2602,"children":2603},{"style":113},[2604],{"type":50,"value":2605},"customer_email\n",{"type":44,"tag":100,"props":2607,"children":2608},{"class":102,"line":508},[2609,2614,2618,2622,2627,2631],{"type":44,"tag":100,"props":2610,"children":2611},{"style":390},[2612],{"type":50,"value":2613},"    WHERE",{"type":44,"tag":100,"props":2615,"children":2616},{"style":113},[2617],{"type":50,"value":1426},{"type":44,"tag":100,"props":2619,"children":2620},{"style":400},[2621],{"type":50,"value":786},{"type":44,"tag":100,"props":2623,"children":2624},{"style":113},[2625],{"type":50,"value":2626},"payment_status",{"type":44,"tag":100,"props":2628,"children":2629},{"style":390},[2630],{"type":50,"value":2591},{"type":44,"tag":100,"props":2632,"children":2633},{"style":119},[2634],{"type":50,"value":2635}," 'paid'\n",{"type":44,"tag":100,"props":2637,"children":2638},{"class":102,"line":531},[2639],{"type":44,"tag":100,"props":2640,"children":2641},{"style":400},[2642],{"type":50,"value":2643},"),\n",{"type":44,"tag":100,"props":2645,"children":2646},{"class":102,"line":604},[2647,2652,2656],{"type":44,"tag":100,"props":2648,"children":2649},{"style":400},[2650],{"type":50,"value":2651},"cohort_sizes ",{"type":44,"tag":100,"props":2653,"children":2654},{"style":390},[2655],{"type":50,"value":408},{"type":44,"tag":100,"props":2657,"children":2658},{"style":400},[2659],{"type":50,"value":2401},{"type":44,"tag":100,"props":2661,"children":2662},{"class":102,"line":626},[2663],{"type":44,"tag":100,"props":2664,"children":2665},{"style":390},[2666],{"type":50,"value":2409},{"type":44,"tag":100,"props":2668,"children":2669},{"class":102,"line":648},[2670],{"type":44,"tag":100,"props":2671,"children":2672},{"style":400},[2673],{"type":50,"value":2674},"        cohort_month,\n",{"type":44,"tag":100,"props":2676,"children":2677},{"class":102,"line":705},[2678,2683,2687,2692,2697,2701],{"type":44,"tag":100,"props":2679,"children":2680},{"style":113},[2681],{"type":50,"value":2682},"        count",{"type":44,"tag":100,"props":2684,"children":2685},{"style":400},[2686],{"type":50,"value":427},{"type":44,"tag":100,"props":2688,"children":2689},{"style":390},[2690],{"type":50,"value":2691},"DISTINCT",{"type":44,"tag":100,"props":2693,"children":2694},{"style":400},[2695],{"type":50,"value":2696}," customer_email) ",{"type":44,"tag":100,"props":2698,"children":2699},{"style":390},[2700],{"type":50,"value":408},{"type":44,"tag":100,"props":2702,"children":2703},{"style":400},[2704],{"type":50,"value":2705}," cohort_size\n",{"type":44,"tag":100,"props":2707,"children":2708},{"class":102,"line":770},[2709,2713],{"type":44,"tag":100,"props":2710,"children":2711},{"style":390},[2712],{"type":50,"value":2524},{"type":44,"tag":100,"props":2714,"children":2715},{"style":400},[2716],{"type":50,"value":2717}," customer_orders\n",{"type":44,"tag":100,"props":2719,"children":2720},{"class":102,"line":794},[2721,2726],{"type":44,"tag":100,"props":2722,"children":2723},{"style":390},[2724],{"type":50,"value":2725},"    GROUP BY",{"type":44,"tag":100,"props":2727,"children":2728},{"style":400},[2729],{"type":50,"value":2730}," cohort_month\n",{"type":44,"tag":100,"props":2732,"children":2733},{"class":102,"line":808},[2734],{"type":44,"tag":100,"props":2735,"children":2736},{"style":400},[2737],{"type":50,"value":1464},{"type":44,"tag":100,"props":2739,"children":2740},{"class":102,"line":1484},[2741],{"type":44,"tag":100,"props":2742,"children":2743},{"style":390},[2744],{"type":50,"value":393},{"type":44,"tag":100,"props":2746,"children":2748},{"class":102,"line":2747},35,[2749,2754,2758,2763],{"type":44,"tag":100,"props":2750,"children":2751},{"style":113},[2752],{"type":50,"value":2753},"    co",{"type":44,"tag":100,"props":2755,"children":2756},{"style":400},[2757],{"type":50,"value":786},{"type":44,"tag":100,"props":2759,"children":2760},{"style":113},[2761],{"type":50,"value":2762},"cohort_month",{"type":44,"tag":100,"props":2764,"children":2765},{"style":400},[2766],{"type":50,"value":2431},{"type":44,"tag":100,"props":2768,"children":2770},{"class":102,"line":2769},36,[2771,2776,2780,2785],{"type":44,"tag":100,"props":2772,"children":2773},{"style":113},[2774],{"type":50,"value":2775},"    cs",{"type":44,"tag":100,"props":2777,"children":2778},{"style":400},[2779],{"type":50,"value":786},{"type":44,"tag":100,"props":2781,"children":2782},{"style":113},[2783],{"type":50,"value":2784},"cohort_size",{"type":44,"tag":100,"props":2786,"children":2787},{"style":400},[2788],{"type":50,"value":2431},{"type":44,"tag":100,"props":2790,"children":2792},{"class":102,"line":2791},37,[2793,2798,2802,2807,2811,2816,2820,2824,2828,2832,2836,2841,2845,2849],{"type":44,"tag":100,"props":2794,"children":2795},{"style":113},[2796],{"type":50,"value":2797},"    dateDiff",{"type":44,"tag":100,"props":2799,"children":2800},{"style":400},[2801],{"type":50,"value":427},{"type":44,"tag":100,"props":2803,"children":2804},{"style":119},[2805],{"type":50,"value":2806},"'month'",{"type":44,"tag":100,"props":2808,"children":2809},{"style":400},[2810],{"type":50,"value":750},{"type":44,"tag":100,"props":2812,"children":2813},{"style":113},[2814],{"type":50,"value":2815},"co",{"type":44,"tag":100,"props":2817,"children":2818},{"style":400},[2819],{"type":50,"value":786},{"type":44,"tag":100,"props":2821,"children":2822},{"style":113},[2823],{"type":50,"value":2762},{"type":44,"tag":100,"props":2825,"children":2826},{"style":400},[2827],{"type":50,"value":750},{"type":44,"tag":100,"props":2829,"children":2830},{"style":113},[2831],{"type":50,"value":2815},{"type":44,"tag":100,"props":2833,"children":2834},{"style":400},[2835],{"type":50,"value":786},{"type":44,"tag":100,"props":2837,"children":2838},{"style":113},[2839],{"type":50,"value":2840},"order_month",{"type":44,"tag":100,"props":2842,"children":2843},{"style":400},[2844],{"type":50,"value":437},{"type":44,"tag":100,"props":2846,"children":2847},{"style":390},[2848],{"type":50,"value":408},{"type":44,"tag":100,"props":2850,"children":2851},{"style":400},[2852],{"type":50,"value":2853}," months_since_first,\n",{"type":44,"tag":100,"props":2855,"children":2857},{"class":102,"line":2856},38,[2858,2862,2866,2870,2875,2879,2883,2887,2891],{"type":44,"tag":100,"props":2859,"children":2860},{"style":113},[2861],{"type":50,"value":422},{"type":44,"tag":100,"props":2863,"children":2864},{"style":400},[2865],{"type":50,"value":427},{"type":44,"tag":100,"props":2867,"children":2868},{"style":390},[2869],{"type":50,"value":2691},{"type":44,"tag":100,"props":2871,"children":2872},{"style":113},[2873],{"type":50,"value":2874}," co",{"type":44,"tag":100,"props":2876,"children":2877},{"style":400},[2878],{"type":50,"value":786},{"type":44,"tag":100,"props":2880,"children":2881},{"style":113},[2882],{"type":50,"value":2426},{"type":44,"tag":100,"props":2884,"children":2885},{"style":400},[2886],{"type":50,"value":437},{"type":44,"tag":100,"props":2888,"children":2889},{"style":390},[2890],{"type":50,"value":408},{"type":44,"tag":100,"props":2892,"children":2893},{"style":400},[2894],{"type":50,"value":2895}," active_customers,\n",{"type":44,"tag":100,"props":2897,"children":2899},{"class":102,"line":2898},39,[2900,2904,2909,2913,2917,2921,2926,2930,2934,2938,2942,2946,2950,2954,2958,2962,2966,2970],{"type":44,"tag":100,"props":2901,"children":2902},{"style":113},[2903],{"type":50,"value":654},{"type":44,"tag":100,"props":2905,"children":2906},{"style":400},[2907],{"type":50,"value":2908},"(active_customers ",{"type":44,"tag":100,"props":2910,"children":2911},{"style":390},[2912],{"type":50,"value":664},{"type":44,"tag":100,"props":2914,"children":2915},{"style":113},[2916],{"type":50,"value":669},{"type":44,"tag":100,"props":2918,"children":2919},{"style":400},[2920],{"type":50,"value":427},{"type":44,"tag":100,"props":2922,"children":2923},{"style":113},[2924],{"type":50,"value":2925},"cs",{"type":44,"tag":100,"props":2927,"children":2928},{"style":400},[2929],{"type":50,"value":786},{"type":44,"tag":100,"props":2931,"children":2932},{"style":113},[2933],{"type":50,"value":2784},{"type":44,"tag":100,"props":2935,"children":2936},{"style":400},[2937],{"type":50,"value":750},{"type":44,"tag":100,"props":2939,"children":2940},{"style":113},[2941],{"type":50,"value":679},{"type":44,"tag":100,"props":2943,"children":2944},{"style":400},[2945],{"type":50,"value":437},{"type":44,"tag":100,"props":2947,"children":2948},{"style":390},[2949],{"type":50,"value":432},{"type":44,"tag":100,"props":2951,"children":2952},{"style":113},[2953],{"type":50,"value":745},{"type":44,"tag":100,"props":2955,"children":2956},{"style":400},[2957],{"type":50,"value":750},{"type":44,"tag":100,"props":2959,"children":2960},{"style":113},[2961],{"type":50,"value":689},{"type":44,"tag":100,"props":2963,"children":2964},{"style":400},[2965],{"type":50,"value":437},{"type":44,"tag":100,"props":2967,"children":2968},{"style":390},[2969],{"type":50,"value":408},{"type":44,"tag":100,"props":2971,"children":2972},{"style":400},[2973],{"type":50,"value":2974}," retention_rate,\n",{"type":44,"tag":100,"props":2976,"children":2978},{"class":102,"line":2977},40,[2979,2983,2987,2991,2995,3000,3004,3008],{"type":44,"tag":100,"props":2980,"children":2981},{"style":113},[2982],{"type":50,"value":514},{"type":44,"tag":100,"props":2984,"children":2985},{"style":400},[2986],{"type":50,"value":427},{"type":44,"tag":100,"props":2988,"children":2989},{"style":113},[2990],{"type":50,"value":2815},{"type":44,"tag":100,"props":2992,"children":2993},{"style":400},[2994],{"type":50,"value":786},{"type":44,"tag":100,"props":2996,"children":2997},{"style":113},[2998],{"type":50,"value":2999},"order_total",{"type":44,"tag":100,"props":3001,"children":3002},{"style":400},[3003],{"type":50,"value":437},{"type":44,"tag":100,"props":3005,"children":3006},{"style":390},[3007],{"type":50,"value":408},{"type":44,"tag":100,"props":3009,"children":3010},{"style":400},[3011],{"type":50,"value":3012}," cohort_revenue,\n",{"type":44,"tag":100,"props":3014,"children":3016},{"class":102,"line":3015},41,[3017,3021,3026,3030,3034,3038,3042,3046,3050,3054,3058,3062,3066,3070,3074],{"type":44,"tag":100,"props":3018,"children":3019},{"style":113},[3020],{"type":50,"value":654},{"type":44,"tag":100,"props":3022,"children":3023},{"style":400},[3024],{"type":50,"value":3025},"(cohort_revenue ",{"type":44,"tag":100,"props":3027,"children":3028},{"style":390},[3029],{"type":50,"value":664},{"type":44,"tag":100,"props":3031,"children":3032},{"style":113},[3033],{"type":50,"value":669},{"type":44,"tag":100,"props":3035,"children":3036},{"style":400},[3037],{"type":50,"value":427},{"type":44,"tag":100,"props":3039,"children":3040},{"style":113},[3041],{"type":50,"value":2925},{"type":44,"tag":100,"props":3043,"children":3044},{"style":400},[3045],{"type":50,"value":786},{"type":44,"tag":100,"props":3047,"children":3048},{"style":113},[3049],{"type":50,"value":2784},{"type":44,"tag":100,"props":3051,"children":3052},{"style":400},[3053],{"type":50,"value":750},{"type":44,"tag":100,"props":3055,"children":3056},{"style":113},[3057],{"type":50,"value":679},{"type":44,"tag":100,"props":3059,"children":3060},{"style":400},[3061],{"type":50,"value":684},{"type":44,"tag":100,"props":3063,"children":3064},{"style":113},[3065],{"type":50,"value":689},{"type":44,"tag":100,"props":3067,"children":3068},{"style":400},[3069],{"type":50,"value":437},{"type":44,"tag":100,"props":3071,"children":3072},{"style":390},[3073],{"type":50,"value":408},{"type":44,"tag":100,"props":3075,"children":3076},{"style":400},[3077],{"type":50,"value":3078}," revenue_per_customer\n",{"type":44,"tag":100,"props":3080,"children":3082},{"class":102,"line":3081},42,[3083,3087],{"type":44,"tag":100,"props":3084,"children":3085},{"style":390},[3086],{"type":50,"value":776},{"type":44,"tag":100,"props":3088,"children":3089},{"style":400},[3090],{"type":50,"value":3091}," customer_orders co\n",{"type":44,"tag":100,"props":3093,"children":3095},{"class":102,"line":3094},43,[3096,3101],{"type":44,"tag":100,"props":3097,"children":3098},{"style":390},[3099],{"type":50,"value":3100},"INNER JOIN",{"type":44,"tag":100,"props":3102,"children":3103},{"style":400},[3104],{"type":50,"value":3105}," cohort_sizes cs\n",{"type":44,"tag":100,"props":3107,"children":3109},{"class":102,"line":3108},44,[3110,3115,3119,3123,3127,3131,3136,3140],{"type":44,"tag":100,"props":3111,"children":3112},{"style":390},[3113],{"type":50,"value":3114},"    ON",{"type":44,"tag":100,"props":3116,"children":3117},{"style":113},[3118],{"type":50,"value":2874},{"type":44,"tag":100,"props":3120,"children":3121},{"style":400},[3122],{"type":50,"value":786},{"type":44,"tag":100,"props":3124,"children":3125},{"style":113},[3126],{"type":50,"value":2762},{"type":44,"tag":100,"props":3128,"children":3129},{"style":390},[3130],{"type":50,"value":2591},{"type":44,"tag":100,"props":3132,"children":3133},{"style":113},[3134],{"type":50,"value":3135}," cs",{"type":44,"tag":100,"props":3137,"children":3138},{"style":400},[3139],{"type":50,"value":786},{"type":44,"tag":100,"props":3141,"children":3142},{"style":113},[3143],{"type":50,"value":3144},"cohort_month\n",{"type":44,"tag":100,"props":3146,"children":3148},{"class":102,"line":3147},45,[3149,3153,3157,3161,3165,3169,3173,3177,3181],{"type":44,"tag":100,"props":3150,"children":3151},{"style":390},[3152],{"type":50,"value":800},{"type":44,"tag":100,"props":3154,"children":3155},{"style":113},[3156],{"type":50,"value":2874},{"type":44,"tag":100,"props":3158,"children":3159},{"style":400},[3160],{"type":50,"value":786},{"type":44,"tag":100,"props":3162,"children":3163},{"style":113},[3164],{"type":50,"value":2762},{"type":44,"tag":100,"props":3166,"children":3167},{"style":400},[3168],{"type":50,"value":750},{"type":44,"tag":100,"props":3170,"children":3171},{"style":113},[3172],{"type":50,"value":2925},{"type":44,"tag":100,"props":3174,"children":3175},{"style":400},[3176],{"type":50,"value":786},{"type":44,"tag":100,"props":3178,"children":3179},{"style":113},[3180],{"type":50,"value":2784},{"type":44,"tag":100,"props":3182,"children":3183},{"style":400},[3184],{"type":50,"value":3185},", months_since_first\n",{"type":44,"tag":100,"props":3187,"children":3189},{"class":102,"line":3188},46,[3190,3194,3198,3202,3206],{"type":44,"tag":100,"props":3191,"children":3192},{"style":390},[3193],{"type":50,"value":814},{"type":44,"tag":100,"props":3195,"children":3196},{"style":113},[3197],{"type":50,"value":2874},{"type":44,"tag":100,"props":3199,"children":3200},{"style":400},[3201],{"type":50,"value":786},{"type":44,"tag":100,"props":3203,"children":3204},{"style":113},[3205],{"type":50,"value":2762},{"type":44,"tag":100,"props":3207,"children":3208},{"style":400},[3209],{"type":50,"value":3185},{"type":44,"tag":203,"props":3211,"children":3212},{"v-slot:bigquery":7},[3213],{"type":44,"tag":90,"props":3214,"children":3216},{"className":208,"code":3215,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_customer_cohorts\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_orders\n  - staging.stg_customers\ncolumns:\n  - name: cohort_month\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nWITH customer_orders AS (\n    SELECT\n        o.customer_email,\n        DATE_TRUNC(c.first_seen_at, MONTH) AS cohort_month,\n        DATE_TRUNC(o.order_date, MONTH) AS order_month,\n        o.order_total\n    FROM staging.stg_orders o\n    INNER JOIN staging.stg_customers c\n        ON o.customer_email = c.customer_email\n    WHERE o.payment_status = 'paid'\n),\ncohort_sizes AS (\n    SELECT\n        cohort_month,\n        count(DISTINCT customer_email) AS cohort_size\n    FROM customer_orders\n    GROUP BY cohort_month\n)\nSELECT\n    co.cohort_month,\n    cs.cohort_size,\n    DATE_DIFF(co.order_month, co.cohort_month, MONTH) AS months_since_first,\n    count(DISTINCT co.customer_email) AS active_customers,\n    round(count(DISTINCT co.customer_email) \u002F NULLIF(cs.cohort_size, 0) * 100, 2) AS retention_rate,\n    sum(co.order_total) AS cohort_revenue,\n    round(sum(co.order_total) \u002F NULLIF(cs.cohort_size, 0), 2) AS revenue_per_customer\nFROM customer_orders co\nINNER JOIN cohort_sizes cs\n    ON co.cohort_month = cs.cohort_month\nGROUP BY co.cohort_month, cs.cohort_size, months_since_first\nORDER BY co.cohort_month, months_since_first\n",[3217],{"type":44,"tag":81,"props":3218,"children":3219},{"__ignoreMap":7},[3220,3227,3234,3241,3248,3255,3262,3269,3276,3283,3290,3297,3304,3311,3318,3325,3344,3351,3370,3411,3450,3465,3488,3511,3546,3573,3580,3595,3602,3609,3636,3647,3658,3665,3672,3691,3710,3766,3805,3908,3943,4030,4041,4052,4087,4126],{"type":44,"tag":100,"props":3221,"children":3222},{"class":102,"line":103},[3223],{"type":44,"tag":100,"props":3224,"children":3225},{"style":220},[3226],{"type":50,"value":223},{"type":44,"tag":100,"props":3228,"children":3229},{"class":102,"line":226},[3230],{"type":44,"tag":100,"props":3231,"children":3232},{"style":220},[3233],{"type":50,"value":2286},{"type":44,"tag":100,"props":3235,"children":3236},{"class":102,"line":235},[3237],{"type":44,"tag":100,"props":3238,"children":3239},{"style":220},[3240],{"type":50,"value":241},{"type":44,"tag":100,"props":3242,"children":3243},{"class":102,"line":24},[3244],{"type":44,"tag":100,"props":3245,"children":3246},{"style":220},[3247],{"type":50,"value":249},{"type":44,"tag":100,"props":3249,"children":3250},{"class":102,"line":252},[3251],{"type":44,"tag":100,"props":3252,"children":3253},{"style":220},[3254],{"type":50,"value":258},{"type":44,"tag":100,"props":3256,"children":3257},{"class":102,"line":261},[3258],{"type":44,"tag":100,"props":3259,"children":3260},{"style":220},[3261],{"type":50,"value":267},{"type":44,"tag":100,"props":3263,"children":3264},{"class":102,"line":270},[3265],{"type":44,"tag":100,"props":3266,"children":3267},{"style":220},[3268],{"type":50,"value":276},{"type":44,"tag":100,"props":3270,"children":3271},{"class":102,"line":279},[3272],{"type":44,"tag":100,"props":3273,"children":3274},{"style":220},[3275],{"type":50,"value":2329},{"type":44,"tag":100,"props":3277,"children":3278},{"class":102,"line":288},[3279],{"type":44,"tag":100,"props":3280,"children":3281},{"style":220},[3282],{"type":50,"value":285},{"type":44,"tag":100,"props":3284,"children":3285},{"class":102,"line":297},[3286],{"type":44,"tag":100,"props":3287,"children":3288},{"style":220},[3289],{"type":50,"value":2344},{"type":44,"tag":100,"props":3291,"children":3292},{"class":102,"line":306},[3293],{"type":44,"tag":100,"props":3294,"children":3295},{"style":220},[3296],{"type":50,"value":303},{"type":44,"tag":100,"props":3298,"children":3299},{"class":102,"line":315},[3300],{"type":44,"tag":100,"props":3301,"children":3302},{"style":220},[3303],{"type":50,"value":312},{"type":44,"tag":100,"props":3305,"children":3306},{"class":102,"line":324},[3307],{"type":44,"tag":100,"props":3308,"children":3309},{"style":220},[3310],{"type":50,"value":321},{"type":44,"tag":100,"props":3312,"children":3313},{"class":102,"line":333},[3314],{"type":44,"tag":100,"props":3315,"children":3316},{"style":220},[3317],{"type":50,"value":374},{"type":44,"tag":100,"props":3319,"children":3320},{"class":102,"line":11},[3321],{"type":44,"tag":100,"props":3322,"children":3323},{"emptyLinePlaceholder":23},[3324],{"type":50,"value":383},{"type":44,"tag":100,"props":3326,"children":3327},{"class":102,"line":350},[3328,3332,3336,3340],{"type":44,"tag":100,"props":3329,"children":3330},{"style":390},[3331],{"type":50,"value":2387},{"type":44,"tag":100,"props":3333,"children":3334},{"style":400},[3335],{"type":50,"value":2392},{"type":44,"tag":100,"props":3337,"children":3338},{"style":390},[3339],{"type":50,"value":408},{"type":44,"tag":100,"props":3341,"children":3342},{"style":400},[3343],{"type":50,"value":2401},{"type":44,"tag":100,"props":3345,"children":3346},{"class":102,"line":359},[3347],{"type":44,"tag":100,"props":3348,"children":3349},{"style":390},[3350],{"type":50,"value":2409},{"type":44,"tag":100,"props":3352,"children":3353},{"class":102,"line":368},[3354,3358,3362,3366],{"type":44,"tag":100,"props":3355,"children":3356},{"style":113},[3357],{"type":50,"value":2417},{"type":44,"tag":100,"props":3359,"children":3360},{"style":400},[3361],{"type":50,"value":786},{"type":44,"tag":100,"props":3363,"children":3364},{"style":113},[3365],{"type":50,"value":2426},{"type":44,"tag":100,"props":3367,"children":3368},{"style":400},[3369],{"type":50,"value":2431},{"type":44,"tag":100,"props":3371,"children":3372},{"class":102,"line":377},[3373,3378,3382,3386,3390,3394,3399,3403,3407],{"type":44,"tag":100,"props":3374,"children":3375},{"style":400},[3376],{"type":50,"value":3377},"        DATE_TRUNC(",{"type":44,"tag":100,"props":3379,"children":3380},{"style":113},[3381],{"type":50,"value":2444},{"type":44,"tag":100,"props":3383,"children":3384},{"style":400},[3385],{"type":50,"value":786},{"type":44,"tag":100,"props":3387,"children":3388},{"style":113},[3389],{"type":50,"value":2453},{"type":44,"tag":100,"props":3391,"children":3392},{"style":400},[3393],{"type":50,"value":750},{"type":44,"tag":100,"props":3395,"children":3396},{"style":390},[3397],{"type":50,"value":3398},"MONTH",{"type":44,"tag":100,"props":3400,"children":3401},{"style":400},[3402],{"type":50,"value":437},{"type":44,"tag":100,"props":3404,"children":3405},{"style":390},[3406],{"type":50,"value":408},{"type":44,"tag":100,"props":3408,"children":3409},{"style":400},[3410],{"type":50,"value":2466},{"type":44,"tag":100,"props":3412,"children":3413},{"class":102,"line":386},[3414,3418,3422,3426,3430,3434,3438,3442,3446],{"type":44,"tag":100,"props":3415,"children":3416},{"style":400},[3417],{"type":50,"value":3377},{"type":44,"tag":100,"props":3419,"children":3420},{"style":113},[3421],{"type":50,"value":2478},{"type":44,"tag":100,"props":3423,"children":3424},{"style":400},[3425],{"type":50,"value":786},{"type":44,"tag":100,"props":3427,"children":3428},{"style":113},[3429],{"type":50,"value":2487},{"type":44,"tag":100,"props":3431,"children":3432},{"style":400},[3433],{"type":50,"value":750},{"type":44,"tag":100,"props":3435,"children":3436},{"style":390},[3437],{"type":50,"value":3398},{"type":44,"tag":100,"props":3439,"children":3440},{"style":400},[3441],{"type":50,"value":437},{"type":44,"tag":100,"props":3443,"children":3444},{"style":390},[3445],{"type":50,"value":408},{"type":44,"tag":100,"props":3447,"children":3448},{"style":400},[3449],{"type":50,"value":2500},{"type":44,"tag":100,"props":3451,"children":3452},{"class":102,"line":396},[3453,3457,3461],{"type":44,"tag":100,"props":3454,"children":3455},{"style":113},[3456],{"type":50,"value":2417},{"type":44,"tag":100,"props":3458,"children":3459},{"style":400},[3460],{"type":50,"value":786},{"type":44,"tag":100,"props":3462,"children":3463},{"style":113},[3464],{"type":50,"value":2516},{"type":44,"tag":100,"props":3466,"children":3467},{"class":102,"line":416},[3468,3472,3476,3480,3484],{"type":44,"tag":100,"props":3469,"children":3470},{"style":390},[3471],{"type":50,"value":2524},{"type":44,"tag":100,"props":3473,"children":3474},{"style":113},[3475],{"type":50,"value":781},{"type":44,"tag":100,"props":3477,"children":3478},{"style":400},[3479],{"type":50,"value":786},{"type":44,"tag":100,"props":3481,"children":3482},{"style":113},[3483],{"type":50,"value":1408},{"type":44,"tag":100,"props":3485,"children":3486},{"style":400},[3487],{"type":50,"value":1413},{"type":44,"tag":100,"props":3489,"children":3490},{"class":102,"line":449},[3491,3495,3499,3503,3507],{"type":44,"tag":100,"props":3492,"children":3493},{"style":390},[3494],{"type":50,"value":2548},{"type":44,"tag":100,"props":3496,"children":3497},{"style":113},[3498],{"type":50,"value":781},{"type":44,"tag":100,"props":3500,"children":3501},{"style":400},[3502],{"type":50,"value":786},{"type":44,"tag":100,"props":3504,"children":3505},{"style":113},[3506],{"type":50,"value":2561},{"type":44,"tag":100,"props":3508,"children":3509},{"style":400},[3510],{"type":50,"value":2566},{"type":44,"tag":100,"props":3512,"children":3513},{"class":102,"line":481},[3514,3518,3522,3526,3530,3534,3538,3542],{"type":44,"tag":100,"props":3515,"children":3516},{"style":390},[3517],{"type":50,"value":2574},{"type":44,"tag":100,"props":3519,"children":3520},{"style":113},[3521],{"type":50,"value":1426},{"type":44,"tag":100,"props":3523,"children":3524},{"style":400},[3525],{"type":50,"value":786},{"type":44,"tag":100,"props":3527,"children":3528},{"style":113},[3529],{"type":50,"value":2426},{"type":44,"tag":100,"props":3531,"children":3532},{"style":390},[3533],{"type":50,"value":2591},{"type":44,"tag":100,"props":3535,"children":3536},{"style":113},[3537],{"type":50,"value":2596},{"type":44,"tag":100,"props":3539,"children":3540},{"style":400},[3541],{"type":50,"value":786},{"type":44,"tag":100,"props":3543,"children":3544},{"style":113},[3545],{"type":50,"value":2605},{"type":44,"tag":100,"props":3547,"children":3548},{"class":102,"line":508},[3549,3553,3557,3561,3565,3569],{"type":44,"tag":100,"props":3550,"children":3551},{"style":390},[3552],{"type":50,"value":2613},{"type":44,"tag":100,"props":3554,"children":3555},{"style":113},[3556],{"type":50,"value":1426},{"type":44,"tag":100,"props":3558,"children":3559},{"style":400},[3560],{"type":50,"value":786},{"type":44,"tag":100,"props":3562,"children":3563},{"style":113},[3564],{"type":50,"value":2626},{"type":44,"tag":100,"props":3566,"children":3567},{"style":390},[3568],{"type":50,"value":2591},{"type":44,"tag":100,"props":3570,"children":3571},{"style":119},[3572],{"type":50,"value":2635},{"type":44,"tag":100,"props":3574,"children":3575},{"class":102,"line":531},[3576],{"type":44,"tag":100,"props":3577,"children":3578},{"style":400},[3579],{"type":50,"value":2643},{"type":44,"tag":100,"props":3581,"children":3582},{"class":102,"line":604},[3583,3587,3591],{"type":44,"tag":100,"props":3584,"children":3585},{"style":400},[3586],{"type":50,"value":2651},{"type":44,"tag":100,"props":3588,"children":3589},{"style":390},[3590],{"type":50,"value":408},{"type":44,"tag":100,"props":3592,"children":3593},{"style":400},[3594],{"type":50,"value":2401},{"type":44,"tag":100,"props":3596,"children":3597},{"class":102,"line":626},[3598],{"type":44,"tag":100,"props":3599,"children":3600},{"style":390},[3601],{"type":50,"value":2409},{"type":44,"tag":100,"props":3603,"children":3604},{"class":102,"line":648},[3605],{"type":44,"tag":100,"props":3606,"children":3607},{"style":400},[3608],{"type":50,"value":2674},{"type":44,"tag":100,"props":3610,"children":3611},{"class":102,"line":705},[3612,3616,3620,3624,3628,3632],{"type":44,"tag":100,"props":3613,"children":3614},{"style":113},[3615],{"type":50,"value":2682},{"type":44,"tag":100,"props":3617,"children":3618},{"style":400},[3619],{"type":50,"value":427},{"type":44,"tag":100,"props":3621,"children":3622},{"style":390},[3623],{"type":50,"value":2691},{"type":44,"tag":100,"props":3625,"children":3626},{"style":400},[3627],{"type":50,"value":2696},{"type":44,"tag":100,"props":3629,"children":3630},{"style":390},[3631],{"type":50,"value":408},{"type":44,"tag":100,"props":3633,"children":3634},{"style":400},[3635],{"type":50,"value":2705},{"type":44,"tag":100,"props":3637,"children":3638},{"class":102,"line":770},[3639,3643],{"type":44,"tag":100,"props":3640,"children":3641},{"style":390},[3642],{"type":50,"value":2524},{"type":44,"tag":100,"props":3644,"children":3645},{"style":400},[3646],{"type":50,"value":2717},{"type":44,"tag":100,"props":3648,"children":3649},{"class":102,"line":794},[3650,3654],{"type":44,"tag":100,"props":3651,"children":3652},{"style":390},[3653],{"type":50,"value":2725},{"type":44,"tag":100,"props":3655,"children":3656},{"style":400},[3657],{"type":50,"value":2730},{"type":44,"tag":100,"props":3659,"children":3660},{"class":102,"line":808},[3661],{"type":44,"tag":100,"props":3662,"children":3663},{"style":400},[3664],{"type":50,"value":1464},{"type":44,"tag":100,"props":3666,"children":3667},{"class":102,"line":1484},[3668],{"type":44,"tag":100,"props":3669,"children":3670},{"style":390},[3671],{"type":50,"value":393},{"type":44,"tag":100,"props":3673,"children":3674},{"class":102,"line":2747},[3675,3679,3683,3687],{"type":44,"tag":100,"props":3676,"children":3677},{"style":113},[3678],{"type":50,"value":2753},{"type":44,"tag":100,"props":3680,"children":3681},{"style":400},[3682],{"type":50,"value":786},{"type":44,"tag":100,"props":3684,"children":3685},{"style":113},[3686],{"type":50,"value":2762},{"type":44,"tag":100,"props":3688,"children":3689},{"style":400},[3690],{"type":50,"value":2431},{"type":44,"tag":100,"props":3692,"children":3693},{"class":102,"line":2769},[3694,3698,3702,3706],{"type":44,"tag":100,"props":3695,"children":3696},{"style":113},[3697],{"type":50,"value":2775},{"type":44,"tag":100,"props":3699,"children":3700},{"style":400},[3701],{"type":50,"value":786},{"type":44,"tag":100,"props":3703,"children":3704},{"style":113},[3705],{"type":50,"value":2784},{"type":44,"tag":100,"props":3707,"children":3708},{"style":400},[3709],{"type":50,"value":2431},{"type":44,"tag":100,"props":3711,"children":3712},{"class":102,"line":2791},[3713,3718,3722,3726,3730,3734,3738,3742,3746,3750,3754,3758,3762],{"type":44,"tag":100,"props":3714,"children":3715},{"style":400},[3716],{"type":50,"value":3717},"    DATE_DIFF(",{"type":44,"tag":100,"props":3719,"children":3720},{"style":113},[3721],{"type":50,"value":2815},{"type":44,"tag":100,"props":3723,"children":3724},{"style":400},[3725],{"type":50,"value":786},{"type":44,"tag":100,"props":3727,"children":3728},{"style":113},[3729],{"type":50,"value":2840},{"type":44,"tag":100,"props":3731,"children":3732},{"style":400},[3733],{"type":50,"value":750},{"type":44,"tag":100,"props":3735,"children":3736},{"style":113},[3737],{"type":50,"value":2815},{"type":44,"tag":100,"props":3739,"children":3740},{"style":400},[3741],{"type":50,"value":786},{"type":44,"tag":100,"props":3743,"children":3744},{"style":113},[3745],{"type":50,"value":2762},{"type":44,"tag":100,"props":3747,"children":3748},{"style":400},[3749],{"type":50,"value":750},{"type":44,"tag":100,"props":3751,"children":3752},{"style":390},[3753],{"type":50,"value":3398},{"type":44,"tag":100,"props":3755,"children":3756},{"style":400},[3757],{"type":50,"value":437},{"type":44,"tag":100,"props":3759,"children":3760},{"style":390},[3761],{"type":50,"value":408},{"type":44,"tag":100,"props":3763,"children":3764},{"style":400},[3765],{"type":50,"value":2853},{"type":44,"tag":100,"props":3767,"children":3768},{"class":102,"line":2856},[3769,3773,3777,3781,3785,3789,3793,3797,3801],{"type":44,"tag":100,"props":3770,"children":3771},{"style":113},[3772],{"type":50,"value":422},{"type":44,"tag":100,"props":3774,"children":3775},{"style":400},[3776],{"type":50,"value":427},{"type":44,"tag":100,"props":3778,"children":3779},{"style":390},[3780],{"type":50,"value":2691},{"type":44,"tag":100,"props":3782,"children":3783},{"style":113},[3784],{"type":50,"value":2874},{"type":44,"tag":100,"props":3786,"children":3787},{"style":400},[3788],{"type":50,"value":786},{"type":44,"tag":100,"props":3790,"children":3791},{"style":113},[3792],{"type":50,"value":2426},{"type":44,"tag":100,"props":3794,"children":3795},{"style":400},[3796],{"type":50,"value":437},{"type":44,"tag":100,"props":3798,"children":3799},{"style":390},[3800],{"type":50,"value":408},{"type":44,"tag":100,"props":3802,"children":3803},{"style":400},[3804],{"type":50,"value":2895},{"type":44,"tag":100,"props":3806,"children":3807},{"class":102,"line":2898},[3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904],{"type":44,"tag":100,"props":3809,"children":3810},{"style":113},[3811],{"type":50,"value":654},{"type":44,"tag":100,"props":3813,"children":3814},{"style":400},[3815],{"type":50,"value":427},{"type":44,"tag":100,"props":3817,"children":3818},{"style":113},[3819],{"type":50,"value":1340},{"type":44,"tag":100,"props":3821,"children":3822},{"style":400},[3823],{"type":50,"value":427},{"type":44,"tag":100,"props":3825,"children":3826},{"style":390},[3827],{"type":50,"value":2691},{"type":44,"tag":100,"props":3829,"children":3830},{"style":113},[3831],{"type":50,"value":2874},{"type":44,"tag":100,"props":3833,"children":3834},{"style":400},[3835],{"type":50,"value":786},{"type":44,"tag":100,"props":3837,"children":3838},{"style":113},[3839],{"type":50,"value":2426},{"type":44,"tag":100,"props":3841,"children":3842},{"style":400},[3843],{"type":50,"value":437},{"type":44,"tag":100,"props":3845,"children":3846},{"style":390},[3847],{"type":50,"value":664},{"type":44,"tag":100,"props":3849,"children":3850},{"style":113},[3851],{"type":50,"value":1262},{"type":44,"tag":100,"props":3853,"children":3854},{"style":400},[3855],{"type":50,"value":427},{"type":44,"tag":100,"props":3857,"children":3858},{"style":113},[3859],{"type":50,"value":2925},{"type":44,"tag":100,"props":3861,"children":3862},{"style":400},[3863],{"type":50,"value":786},{"type":44,"tag":100,"props":3865,"children":3866},{"style":113},[3867],{"type":50,"value":2784},{"type":44,"tag":100,"props":3869,"children":3870},{"style":400},[3871],{"type":50,"value":750},{"type":44,"tag":100,"props":3873,"children":3874},{"style":113},[3875],{"type":50,"value":679},{"type":44,"tag":100,"props":3877,"children":3878},{"style":400},[3879],{"type":50,"value":437},{"type":44,"tag":100,"props":3881,"children":3882},{"style":390},[3883],{"type":50,"value":432},{"type":44,"tag":100,"props":3885,"children":3886},{"style":113},[3887],{"type":50,"value":745},{"type":44,"tag":100,"props":3889,"children":3890},{"style":400},[3891],{"type":50,"value":750},{"type":44,"tag":100,"props":3893,"children":3894},{"style":113},[3895],{"type":50,"value":689},{"type":44,"tag":100,"props":3897,"children":3898},{"style":400},[3899],{"type":50,"value":437},{"type":44,"tag":100,"props":3901,"children":3902},{"style":390},[3903],{"type":50,"value":408},{"type":44,"tag":100,"props":3905,"children":3906},{"style":400},[3907],{"type":50,"value":2974},{"type":44,"tag":100,"props":3909,"children":3910},{"class":102,"line":2977},[3911,3915,3919,3923,3927,3931,3935,3939],{"type":44,"tag":100,"props":3912,"children":3913},{"style":113},[3914],{"type":50,"value":514},{"type":44,"tag":100,"props":3916,"children":3917},{"style":400},[3918],{"type":50,"value":427},{"type":44,"tag":100,"props":3920,"children":3921},{"style":113},[3922],{"type":50,"value":2815},{"type":44,"tag":100,"props":3924,"children":3925},{"style":400},[3926],{"type":50,"value":786},{"type":44,"tag":100,"props":3928,"children":3929},{"style":113},[3930],{"type":50,"value":2999},{"type":44,"tag":100,"props":3932,"children":3933},{"style":400},[3934],{"type":50,"value":437},{"type":44,"tag":100,"props":3936,"children":3937},{"style":390},[3938],{"type":50,"value":408},{"type":44,"tag":100,"props":3940,"children":3941},{"style":400},[3942],{"type":50,"value":3012},{"type":44,"tag":100,"props":3944,"children":3945},{"class":102,"line":3015},[3946,3950,3954,3958,3962,3966,3970,3974,3978,3982,3986,3990,3994,3998,4002,4006,4010,4014,4018,4022,4026],{"type":44,"tag":100,"props":3947,"children":3948},{"style":113},[3949],{"type":50,"value":654},{"type":44,"tag":100,"props":3951,"children":3952},{"style":400},[3953],{"type":50,"value":427},{"type":44,"tag":100,"props":3955,"children":3956},{"style":113},[3957],{"type":50,"value":1205},{"type":44,"tag":100,"props":3959,"children":3960},{"style":400},[3961],{"type":50,"value":427},{"type":44,"tag":100,"props":3963,"children":3964},{"style":113},[3965],{"type":50,"value":2815},{"type":44,"tag":100,"props":3967,"children":3968},{"style":400},[3969],{"type":50,"value":786},{"type":44,"tag":100,"props":3971,"children":3972},{"style":113},[3973],{"type":50,"value":2999},{"type":44,"tag":100,"props":3975,"children":3976},{"style":400},[3977],{"type":50,"value":437},{"type":44,"tag":100,"props":3979,"children":3980},{"style":390},[3981],{"type":50,"value":664},{"type":44,"tag":100,"props":3983,"children":3984},{"style":113},[3985],{"type":50,"value":1262},{"type":44,"tag":100,"props":3987,"children":3988},{"style":400},[3989],{"type":50,"value":427},{"type":44,"tag":100,"props":3991,"children":3992},{"style":113},[3993],{"type":50,"value":2925},{"type":44,"tag":100,"props":3995,"children":3996},{"style":400},[3997],{"type":50,"value":786},{"type":44,"tag":100,"props":3999,"children":4000},{"style":113},[4001],{"type":50,"value":2784},{"type":44,"tag":100,"props":4003,"children":4004},{"style":400},[4005],{"type":50,"value":750},{"type":44,"tag":100,"props":4007,"children":4008},{"style":113},[4009],{"type":50,"value":679},{"type":44,"tag":100,"props":4011,"children":4012},{"style":400},[4013],{"type":50,"value":684},{"type":44,"tag":100,"props":4015,"children":4016},{"style":113},[4017],{"type":50,"value":689},{"type":44,"tag":100,"props":4019,"children":4020},{"style":400},[4021],{"type":50,"value":437},{"type":44,"tag":100,"props":4023,"children":4024},{"style":390},[4025],{"type":50,"value":408},{"type":44,"tag":100,"props":4027,"children":4028},{"style":400},[4029],{"type":50,"value":3078},{"type":44,"tag":100,"props":4031,"children":4032},{"class":102,"line":3081},[4033,4037],{"type":44,"tag":100,"props":4034,"children":4035},{"style":390},[4036],{"type":50,"value":776},{"type":44,"tag":100,"props":4038,"children":4039},{"style":400},[4040],{"type":50,"value":3091},{"type":44,"tag":100,"props":4042,"children":4043},{"class":102,"line":3094},[4044,4048],{"type":44,"tag":100,"props":4045,"children":4046},{"style":390},[4047],{"type":50,"value":3100},{"type":44,"tag":100,"props":4049,"children":4050},{"style":400},[4051],{"type":50,"value":3105},{"type":44,"tag":100,"props":4053,"children":4054},{"class":102,"line":3108},[4055,4059,4063,4067,4071,4075,4079,4083],{"type":44,"tag":100,"props":4056,"children":4057},{"style":390},[4058],{"type":50,"value":3114},{"type":44,"tag":100,"props":4060,"children":4061},{"style":113},[4062],{"type":50,"value":2874},{"type":44,"tag":100,"props":4064,"children":4065},{"style":400},[4066],{"type":50,"value":786},{"type":44,"tag":100,"props":4068,"children":4069},{"style":113},[4070],{"type":50,"value":2762},{"type":44,"tag":100,"props":4072,"children":4073},{"style":390},[4074],{"type":50,"value":2591},{"type":44,"tag":100,"props":4076,"children":4077},{"style":113},[4078],{"type":50,"value":3135},{"type":44,"tag":100,"props":4080,"children":4081},{"style":400},[4082],{"type":50,"value":786},{"type":44,"tag":100,"props":4084,"children":4085},{"style":113},[4086],{"type":50,"value":3144},{"type":44,"tag":100,"props":4088,"children":4089},{"class":102,"line":3147},[4090,4094,4098,4102,4106,4110,4114,4118,4122],{"type":44,"tag":100,"props":4091,"children":4092},{"style":390},[4093],{"type":50,"value":800},{"type":44,"tag":100,"props":4095,"children":4096},{"style":113},[4097],{"type":50,"value":2874},{"type":44,"tag":100,"props":4099,"children":4100},{"style":400},[4101],{"type":50,"value":786},{"type":44,"tag":100,"props":4103,"children":4104},{"style":113},[4105],{"type":50,"value":2762},{"type":44,"tag":100,"props":4107,"children":4108},{"style":400},[4109],{"type":50,"value":750},{"type":44,"tag":100,"props":4111,"children":4112},{"style":113},[4113],{"type":50,"value":2925},{"type":44,"tag":100,"props":4115,"children":4116},{"style":400},[4117],{"type":50,"value":786},{"type":44,"tag":100,"props":4119,"children":4120},{"style":113},[4121],{"type":50,"value":2784},{"type":44,"tag":100,"props":4123,"children":4124},{"style":400},[4125],{"type":50,"value":3185},{"type":44,"tag":100,"props":4127,"children":4128},{"class":102,"line":3188},[4129,4133,4137,4141,4145],{"type":44,"tag":100,"props":4130,"children":4131},{"style":390},[4132],{"type":50,"value":814},{"type":44,"tag":100,"props":4134,"children":4135},{"style":113},[4136],{"type":50,"value":2874},{"type":44,"tag":100,"props":4138,"children":4139},{"style":400},[4140],{"type":50,"value":786},{"type":44,"tag":100,"props":4142,"children":4143},{"style":113},[4144],{"type":50,"value":2762},{"type":44,"tag":100,"props":4146,"children":4147},{"style":400},[4148],{"type":50,"value":3185},{"type":44,"tag":203,"props":4150,"children":4151},{"v-slot:snowflake":7},[4152],{"type":44,"tag":90,"props":4153,"children":4155},{"className":208,"code":4154,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_customer_cohorts\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_orders\n  - staging.stg_customers\ncolumns:\n  - name: cohort_month\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nWITH customer_orders AS (\n    SELECT\n        o.customer_email,\n        DATE_TRUNC('month', c.first_seen_at) AS cohort_month,\n        DATE_TRUNC('month', o.order_date) AS order_month,\n        o.order_total\n    FROM staging.stg_orders o\n    INNER JOIN staging.stg_customers c\n        ON o.customer_email = c.customer_email\n    WHERE o.payment_status = 'paid'\n),\ncohort_sizes AS (\n    SELECT\n        cohort_month,\n        count(DISTINCT customer_email) AS cohort_size\n    FROM customer_orders\n    GROUP BY cohort_month\n)\nSELECT\n    co.cohort_month,\n    cs.cohort_size,\n    DATEDIFF('month', co.cohort_month, co.order_month) AS months_since_first,\n    count(DISTINCT co.customer_email) AS active_customers,\n    round(count(DISTINCT co.customer_email) \u002F NULLIF(cs.cohort_size, 0) * 100, 2) AS retention_rate,\n    sum(co.order_total) AS cohort_revenue,\n    round(sum(co.order_total) \u002F NULLIF(cs.cohort_size, 0), 2) AS revenue_per_customer\nFROM customer_orders co\nINNER JOIN cohort_sizes cs\n    ON co.cohort_month = cs.cohort_month\nGROUP BY co.cohort_month, cs.cohort_size, months_since_first\nORDER BY co.cohort_month, months_since_first\n",[4156],{"type":44,"tag":81,"props":4157,"children":4158},{"__ignoreMap":7},[4159,4166,4173,4180,4187,4194,4201,4208,4215,4222,4229,4236,4243,4250,4257,4264,4283,4290,4309,4348,4387,4402,4425,4448,4483,4510,4517,4532,4539,4546,4573,4584,4595,4602,4609,4628,4647,4707,4746,4849,4884,4971,4982,4993,5028,5067],{"type":44,"tag":100,"props":4160,"children":4161},{"class":102,"line":103},[4162],{"type":44,"tag":100,"props":4163,"children":4164},{"style":220},[4165],{"type":50,"value":223},{"type":44,"tag":100,"props":4167,"children":4168},{"class":102,"line":226},[4169],{"type":44,"tag":100,"props":4170,"children":4171},{"style":220},[4172],{"type":50,"value":2286},{"type":44,"tag":100,"props":4174,"children":4175},{"class":102,"line":235},[4176],{"type":44,"tag":100,"props":4177,"children":4178},{"style":220},[4179],{"type":50,"value":241},{"type":44,"tag":100,"props":4181,"children":4182},{"class":102,"line":24},[4183],{"type":44,"tag":100,"props":4184,"children":4185},{"style":220},[4186],{"type":50,"value":249},{"type":44,"tag":100,"props":4188,"children":4189},{"class":102,"line":252},[4190],{"type":44,"tag":100,"props":4191,"children":4192},{"style":220},[4193],{"type":50,"value":258},{"type":44,"tag":100,"props":4195,"children":4196},{"class":102,"line":261},[4197],{"type":44,"tag":100,"props":4198,"children":4199},{"style":220},[4200],{"type":50,"value":267},{"type":44,"tag":100,"props":4202,"children":4203},{"class":102,"line":270},[4204],{"type":44,"tag":100,"props":4205,"children":4206},{"style":220},[4207],{"type":50,"value":276},{"type":44,"tag":100,"props":4209,"children":4210},{"class":102,"line":279},[4211],{"type":44,"tag":100,"props":4212,"children":4213},{"style":220},[4214],{"type":50,"value":2329},{"type":44,"tag":100,"props":4216,"children":4217},{"class":102,"line":288},[4218],{"type":44,"tag":100,"props":4219,"children":4220},{"style":220},[4221],{"type":50,"value":285},{"type":44,"tag":100,"props":4223,"children":4224},{"class":102,"line":297},[4225],{"type":44,"tag":100,"props":4226,"children":4227},{"style":220},[4228],{"type":50,"value":2344},{"type":44,"tag":100,"props":4230,"children":4231},{"class":102,"line":306},[4232],{"type":44,"tag":100,"props":4233,"children":4234},{"style":220},[4235],{"type":50,"value":303},{"type":44,"tag":100,"props":4237,"children":4238},{"class":102,"line":315},[4239],{"type":44,"tag":100,"props":4240,"children":4241},{"style":220},[4242],{"type":50,"value":312},{"type":44,"tag":100,"props":4244,"children":4245},{"class":102,"line":324},[4246],{"type":44,"tag":100,"props":4247,"children":4248},{"style":220},[4249],{"type":50,"value":321},{"type":44,"tag":100,"props":4251,"children":4252},{"class":102,"line":333},[4253],{"type":44,"tag":100,"props":4254,"children":4255},{"style":220},[4256],{"type":50,"value":374},{"type":44,"tag":100,"props":4258,"children":4259},{"class":102,"line":11},[4260],{"type":44,"tag":100,"props":4261,"children":4262},{"emptyLinePlaceholder":23},[4263],{"type":50,"value":383},{"type":44,"tag":100,"props":4265,"children":4266},{"class":102,"line":350},[4267,4271,4275,4279],{"type":44,"tag":100,"props":4268,"children":4269},{"style":390},[4270],{"type":50,"value":2387},{"type":44,"tag":100,"props":4272,"children":4273},{"style":400},[4274],{"type":50,"value":2392},{"type":44,"tag":100,"props":4276,"children":4277},{"style":390},[4278],{"type":50,"value":408},{"type":44,"tag":100,"props":4280,"children":4281},{"style":400},[4282],{"type":50,"value":2401},{"type":44,"tag":100,"props":4284,"children":4285},{"class":102,"line":359},[4286],{"type":44,"tag":100,"props":4287,"children":4288},{"style":390},[4289],{"type":50,"value":2409},{"type":44,"tag":100,"props":4291,"children":4292},{"class":102,"line":368},[4293,4297,4301,4305],{"type":44,"tag":100,"props":4294,"children":4295},{"style":113},[4296],{"type":50,"value":2417},{"type":44,"tag":100,"props":4298,"children":4299},{"style":400},[4300],{"type":50,"value":786},{"type":44,"tag":100,"props":4302,"children":4303},{"style":113},[4304],{"type":50,"value":2426},{"type":44,"tag":100,"props":4306,"children":4307},{"style":400},[4308],{"type":50,"value":2431},{"type":44,"tag":100,"props":4310,"children":4311},{"class":102,"line":377},[4312,4316,4320,4324,4328,4332,4336,4340,4344],{"type":44,"tag":100,"props":4313,"children":4314},{"style":400},[4315],{"type":50,"value":3377},{"type":44,"tag":100,"props":4317,"children":4318},{"style":119},[4319],{"type":50,"value":2806},{"type":44,"tag":100,"props":4321,"children":4322},{"style":400},[4323],{"type":50,"value":750},{"type":44,"tag":100,"props":4325,"children":4326},{"style":113},[4327],{"type":50,"value":2444},{"type":44,"tag":100,"props":4329,"children":4330},{"style":400},[4331],{"type":50,"value":786},{"type":44,"tag":100,"props":4333,"children":4334},{"style":113},[4335],{"type":50,"value":2453},{"type":44,"tag":100,"props":4337,"children":4338},{"style":400},[4339],{"type":50,"value":437},{"type":44,"tag":100,"props":4341,"children":4342},{"style":390},[4343],{"type":50,"value":408},{"type":44,"tag":100,"props":4345,"children":4346},{"style":400},[4347],{"type":50,"value":2466},{"type":44,"tag":100,"props":4349,"children":4350},{"class":102,"line":386},[4351,4355,4359,4363,4367,4371,4375,4379,4383],{"type":44,"tag":100,"props":4352,"children":4353},{"style":400},[4354],{"type":50,"value":3377},{"type":44,"tag":100,"props":4356,"children":4357},{"style":119},[4358],{"type":50,"value":2806},{"type":44,"tag":100,"props":4360,"children":4361},{"style":400},[4362],{"type":50,"value":750},{"type":44,"tag":100,"props":4364,"children":4365},{"style":113},[4366],{"type":50,"value":2478},{"type":44,"tag":100,"props":4368,"children":4369},{"style":400},[4370],{"type":50,"value":786},{"type":44,"tag":100,"props":4372,"children":4373},{"style":113},[4374],{"type":50,"value":2487},{"type":44,"tag":100,"props":4376,"children":4377},{"style":400},[4378],{"type":50,"value":437},{"type":44,"tag":100,"props":4380,"children":4381},{"style":390},[4382],{"type":50,"value":408},{"type":44,"tag":100,"props":4384,"children":4385},{"style":400},[4386],{"type":50,"value":2500},{"type":44,"tag":100,"props":4388,"children":4389},{"class":102,"line":396},[4390,4394,4398],{"type":44,"tag":100,"props":4391,"children":4392},{"style":113},[4393],{"type":50,"value":2417},{"type":44,"tag":100,"props":4395,"children":4396},{"style":400},[4397],{"type":50,"value":786},{"type":44,"tag":100,"props":4399,"children":4400},{"style":113},[4401],{"type":50,"value":2516},{"type":44,"tag":100,"props":4403,"children":4404},{"class":102,"line":416},[4405,4409,4413,4417,4421],{"type":44,"tag":100,"props":4406,"children":4407},{"style":390},[4408],{"type":50,"value":2524},{"type":44,"tag":100,"props":4410,"children":4411},{"style":113},[4412],{"type":50,"value":781},{"type":44,"tag":100,"props":4414,"children":4415},{"style":400},[4416],{"type":50,"value":786},{"type":44,"tag":100,"props":4418,"children":4419},{"style":113},[4420],{"type":50,"value":1408},{"type":44,"tag":100,"props":4422,"children":4423},{"style":400},[4424],{"type":50,"value":1413},{"type":44,"tag":100,"props":4426,"children":4427},{"class":102,"line":449},[4428,4432,4436,4440,4444],{"type":44,"tag":100,"props":4429,"children":4430},{"style":390},[4431],{"type":50,"value":2548},{"type":44,"tag":100,"props":4433,"children":4434},{"style":113},[4435],{"type":50,"value":781},{"type":44,"tag":100,"props":4437,"children":4438},{"style":400},[4439],{"type":50,"value":786},{"type":44,"tag":100,"props":4441,"children":4442},{"style":113},[4443],{"type":50,"value":2561},{"type":44,"tag":100,"props":4445,"children":4446},{"style":400},[4447],{"type":50,"value":2566},{"type":44,"tag":100,"props":4449,"children":4450},{"class":102,"line":481},[4451,4455,4459,4463,4467,4471,4475,4479],{"type":44,"tag":100,"props":4452,"children":4453},{"style":390},[4454],{"type":50,"value":2574},{"type":44,"tag":100,"props":4456,"children":4457},{"style":113},[4458],{"type":50,"value":1426},{"type":44,"tag":100,"props":4460,"children":4461},{"style":400},[4462],{"type":50,"value":786},{"type":44,"tag":100,"props":4464,"children":4465},{"style":113},[4466],{"type":50,"value":2426},{"type":44,"tag":100,"props":4468,"children":4469},{"style":390},[4470],{"type":50,"value":2591},{"type":44,"tag":100,"props":4472,"children":4473},{"style":113},[4474],{"type":50,"value":2596},{"type":44,"tag":100,"props":4476,"children":4477},{"style":400},[4478],{"type":50,"value":786},{"type":44,"tag":100,"props":4480,"children":4481},{"style":113},[4482],{"type":50,"value":2605},{"type":44,"tag":100,"props":4484,"children":4485},{"class":102,"line":508},[4486,4490,4494,4498,4502,4506],{"type":44,"tag":100,"props":4487,"children":4488},{"style":390},[4489],{"type":50,"value":2613},{"type":44,"tag":100,"props":4491,"children":4492},{"style":113},[4493],{"type":50,"value":1426},{"type":44,"tag":100,"props":4495,"children":4496},{"style":400},[4497],{"type":50,"value":786},{"type":44,"tag":100,"props":4499,"children":4500},{"style":113},[4501],{"type":50,"value":2626},{"type":44,"tag":100,"props":4503,"children":4504},{"style":390},[4505],{"type":50,"value":2591},{"type":44,"tag":100,"props":4507,"children":4508},{"style":119},[4509],{"type":50,"value":2635},{"type":44,"tag":100,"props":4511,"children":4512},{"class":102,"line":531},[4513],{"type":44,"tag":100,"props":4514,"children":4515},{"style":400},[4516],{"type":50,"value":2643},{"type":44,"tag":100,"props":4518,"children":4519},{"class":102,"line":604},[4520,4524,4528],{"type":44,"tag":100,"props":4521,"children":4522},{"style":400},[4523],{"type":50,"value":2651},{"type":44,"tag":100,"props":4525,"children":4526},{"style":390},[4527],{"type":50,"value":408},{"type":44,"tag":100,"props":4529,"children":4530},{"style":400},[4531],{"type":50,"value":2401},{"type":44,"tag":100,"props":4533,"children":4534},{"class":102,"line":626},[4535],{"type":44,"tag":100,"props":4536,"children":4537},{"style":390},[4538],{"type":50,"value":2409},{"type":44,"tag":100,"props":4540,"children":4541},{"class":102,"line":648},[4542],{"type":44,"tag":100,"props":4543,"children":4544},{"style":400},[4545],{"type":50,"value":2674},{"type":44,"tag":100,"props":4547,"children":4548},{"class":102,"line":705},[4549,4553,4557,4561,4565,4569],{"type":44,"tag":100,"props":4550,"children":4551},{"style":113},[4552],{"type":50,"value":2682},{"type":44,"tag":100,"props":4554,"children":4555},{"style":400},[4556],{"type":50,"value":427},{"type":44,"tag":100,"props":4558,"children":4559},{"style":390},[4560],{"type":50,"value":2691},{"type":44,"tag":100,"props":4562,"children":4563},{"style":400},[4564],{"type":50,"value":2696},{"type":44,"tag":100,"props":4566,"children":4567},{"style":390},[4568],{"type":50,"value":408},{"type":44,"tag":100,"props":4570,"children":4571},{"style":400},[4572],{"type":50,"value":2705},{"type":44,"tag":100,"props":4574,"children":4575},{"class":102,"line":770},[4576,4580],{"type":44,"tag":100,"props":4577,"children":4578},{"style":390},[4579],{"type":50,"value":2524},{"type":44,"tag":100,"props":4581,"children":4582},{"style":400},[4583],{"type":50,"value":2717},{"type":44,"tag":100,"props":4585,"children":4586},{"class":102,"line":794},[4587,4591],{"type":44,"tag":100,"props":4588,"children":4589},{"style":390},[4590],{"type":50,"value":2725},{"type":44,"tag":100,"props":4592,"children":4593},{"style":400},[4594],{"type":50,"value":2730},{"type":44,"tag":100,"props":4596,"children":4597},{"class":102,"line":808},[4598],{"type":44,"tag":100,"props":4599,"children":4600},{"style":400},[4601],{"type":50,"value":1464},{"type":44,"tag":100,"props":4603,"children":4604},{"class":102,"line":1484},[4605],{"type":44,"tag":100,"props":4606,"children":4607},{"style":390},[4608],{"type":50,"value":393},{"type":44,"tag":100,"props":4610,"children":4611},{"class":102,"line":2747},[4612,4616,4620,4624],{"type":44,"tag":100,"props":4613,"children":4614},{"style":113},[4615],{"type":50,"value":2753},{"type":44,"tag":100,"props":4617,"children":4618},{"style":400},[4619],{"type":50,"value":786},{"type":44,"tag":100,"props":4621,"children":4622},{"style":113},[4623],{"type":50,"value":2762},{"type":44,"tag":100,"props":4625,"children":4626},{"style":400},[4627],{"type":50,"value":2431},{"type":44,"tag":100,"props":4629,"children":4630},{"class":102,"line":2769},[4631,4635,4639,4643],{"type":44,"tag":100,"props":4632,"children":4633},{"style":113},[4634],{"type":50,"value":2775},{"type":44,"tag":100,"props":4636,"children":4637},{"style":400},[4638],{"type":50,"value":786},{"type":44,"tag":100,"props":4640,"children":4641},{"style":113},[4642],{"type":50,"value":2784},{"type":44,"tag":100,"props":4644,"children":4645},{"style":400},[4646],{"type":50,"value":2431},{"type":44,"tag":100,"props":4648,"children":4649},{"class":102,"line":2791},[4650,4655,4659,4663,4667,4671,4675,4679,4683,4687,4691,4695,4699,4703],{"type":44,"tag":100,"props":4651,"children":4652},{"style":113},[4653],{"type":50,"value":4654},"    DATEDIFF",{"type":44,"tag":100,"props":4656,"children":4657},{"style":400},[4658],{"type":50,"value":427},{"type":44,"tag":100,"props":4660,"children":4661},{"style":119},[4662],{"type":50,"value":2806},{"type":44,"tag":100,"props":4664,"children":4665},{"style":400},[4666],{"type":50,"value":750},{"type":44,"tag":100,"props":4668,"children":4669},{"style":113},[4670],{"type":50,"value":2815},{"type":44,"tag":100,"props":4672,"children":4673},{"style":400},[4674],{"type":50,"value":786},{"type":44,"tag":100,"props":4676,"children":4677},{"style":113},[4678],{"type":50,"value":2762},{"type":44,"tag":100,"props":4680,"children":4681},{"style":400},[4682],{"type":50,"value":750},{"type":44,"tag":100,"props":4684,"children":4685},{"style":113},[4686],{"type":50,"value":2815},{"type":44,"tag":100,"props":4688,"children":4689},{"style":400},[4690],{"type":50,"value":786},{"type":44,"tag":100,"props":4692,"children":4693},{"style":113},[4694],{"type":50,"value":2840},{"type":44,"tag":100,"props":4696,"children":4697},{"style":400},[4698],{"type":50,"value":437},{"type":44,"tag":100,"props":4700,"children":4701},{"style":390},[4702],{"type":50,"value":408},{"type":44,"tag":100,"props":4704,"children":4705},{"style":400},[4706],{"type":50,"value":2853},{"type":44,"tag":100,"props":4708,"children":4709},{"class":102,"line":2856},[4710,4714,4718,4722,4726,4730,4734,4738,4742],{"type":44,"tag":100,"props":4711,"children":4712},{"style":113},[4713],{"type":50,"value":422},{"type":44,"tag":100,"props":4715,"children":4716},{"style":400},[4717],{"type":50,"value":427},{"type":44,"tag":100,"props":4719,"children":4720},{"style":390},[4721],{"type":50,"value":2691},{"type":44,"tag":100,"props":4723,"children":4724},{"style":113},[4725],{"type":50,"value":2874},{"type":44,"tag":100,"props":4727,"children":4728},{"style":400},[4729],{"type":50,"value":786},{"type":44,"tag":100,"props":4731,"children":4732},{"style":113},[4733],{"type":50,"value":2426},{"type":44,"tag":100,"props":4735,"children":4736},{"style":400},[4737],{"type":50,"value":437},{"type":44,"tag":100,"props":4739,"children":4740},{"style":390},[4741],{"type":50,"value":408},{"type":44,"tag":100,"props":4743,"children":4744},{"style":400},[4745],{"type":50,"value":2895},{"type":44,"tag":100,"props":4747,"children":4748},{"class":102,"line":2898},[4749,4753,4757,4761,4765,4769,4773,4777,4781,4785,4789,4793,4797,4801,4805,4809,4813,4817,4821,4825,4829,4833,4837,4841,4845],{"type":44,"tag":100,"props":4750,"children":4751},{"style":113},[4752],{"type":50,"value":654},{"type":44,"tag":100,"props":4754,"children":4755},{"style":400},[4756],{"type":50,"value":427},{"type":44,"tag":100,"props":4758,"children":4759},{"style":113},[4760],{"type":50,"value":1340},{"type":44,"tag":100,"props":4762,"children":4763},{"style":400},[4764],{"type":50,"value":427},{"type":44,"tag":100,"props":4766,"children":4767},{"style":390},[4768],{"type":50,"value":2691},{"type":44,"tag":100,"props":4770,"children":4771},{"style":113},[4772],{"type":50,"value":2874},{"type":44,"tag":100,"props":4774,"children":4775},{"style":400},[4776],{"type":50,"value":786},{"type":44,"tag":100,"props":4778,"children":4779},{"style":113},[4780],{"type":50,"value":2426},{"type":44,"tag":100,"props":4782,"children":4783},{"style":400},[4784],{"type":50,"value":437},{"type":44,"tag":100,"props":4786,"children":4787},{"style":390},[4788],{"type":50,"value":664},{"type":44,"tag":100,"props":4790,"children":4791},{"style":113},[4792],{"type":50,"value":1262},{"type":44,"tag":100,"props":4794,"children":4795},{"style":400},[4796],{"type":50,"value":427},{"type":44,"tag":100,"props":4798,"children":4799},{"style":113},[4800],{"type":50,"value":2925},{"type":44,"tag":100,"props":4802,"children":4803},{"style":400},[4804],{"type":50,"value":786},{"type":44,"tag":100,"props":4806,"children":4807},{"style":113},[4808],{"type":50,"value":2784},{"type":44,"tag":100,"props":4810,"children":4811},{"style":400},[4812],{"type":50,"value":750},{"type":44,"tag":100,"props":4814,"children":4815},{"style":113},[4816],{"type":50,"value":679},{"type":44,"tag":100,"props":4818,"children":4819},{"style":400},[4820],{"type":50,"value":437},{"type":44,"tag":100,"props":4822,"children":4823},{"style":390},[4824],{"type":50,"value":432},{"type":44,"tag":100,"props":4826,"children":4827},{"style":113},[4828],{"type":50,"value":745},{"type":44,"tag":100,"props":4830,"children":4831},{"style":400},[4832],{"type":50,"value":750},{"type":44,"tag":100,"props":4834,"children":4835},{"style":113},[4836],{"type":50,"value":689},{"type":44,"tag":100,"props":4838,"children":4839},{"style":400},[4840],{"type":50,"value":437},{"type":44,"tag":100,"props":4842,"children":4843},{"style":390},[4844],{"type":50,"value":408},{"type":44,"tag":100,"props":4846,"children":4847},{"style":400},[4848],{"type":50,"value":2974},{"type":44,"tag":100,"props":4850,"children":4851},{"class":102,"line":2977},[4852,4856,4860,4864,4868,4872,4876,4880],{"type":44,"tag":100,"props":4853,"children":4854},{"style":113},[4855],{"type":50,"value":514},{"type":44,"tag":100,"props":4857,"children":4858},{"style":400},[4859],{"type":50,"value":427},{"type":44,"tag":100,"props":4861,"children":4862},{"style":113},[4863],{"type":50,"value":2815},{"type":44,"tag":100,"props":4865,"children":4866},{"style":400},[4867],{"type":50,"value":786},{"type":44,"tag":100,"props":4869,"children":4870},{"style":113},[4871],{"type":50,"value":2999},{"type":44,"tag":100,"props":4873,"children":4874},{"style":400},[4875],{"type":50,"value":437},{"type":44,"tag":100,"props":4877,"children":4878},{"style":390},[4879],{"type":50,"value":408},{"type":44,"tag":100,"props":4881,"children":4882},{"style":400},[4883],{"type":50,"value":3012},{"type":44,"tag":100,"props":4885,"children":4886},{"class":102,"line":3015},[4887,4891,4895,4899,4903,4907,4911,4915,4919,4923,4927,4931,4935,4939,4943,4947,4951,4955,4959,4963,4967],{"type":44,"tag":100,"props":4888,"children":4889},{"style":113},[4890],{"type":50,"value":654},{"type":44,"tag":100,"props":4892,"children":4893},{"style":400},[4894],{"type":50,"value":427},{"type":44,"tag":100,"props":4896,"children":4897},{"style":113},[4898],{"type":50,"value":1205},{"type":44,"tag":100,"props":4900,"children":4901},{"style":400},[4902],{"type":50,"value":427},{"type":44,"tag":100,"props":4904,"children":4905},{"style":113},[4906],{"type":50,"value":2815},{"type":44,"tag":100,"props":4908,"children":4909},{"style":400},[4910],{"type":50,"value":786},{"type":44,"tag":100,"props":4912,"children":4913},{"style":113},[4914],{"type":50,"value":2999},{"type":44,"tag":100,"props":4916,"children":4917},{"style":400},[4918],{"type":50,"value":437},{"type":44,"tag":100,"props":4920,"children":4921},{"style":390},[4922],{"type":50,"value":664},{"type":44,"tag":100,"props":4924,"children":4925},{"style":113},[4926],{"type":50,"value":1262},{"type":44,"tag":100,"props":4928,"children":4929},{"style":400},[4930],{"type":50,"value":427},{"type":44,"tag":100,"props":4932,"children":4933},{"style":113},[4934],{"type":50,"value":2925},{"type":44,"tag":100,"props":4936,"children":4937},{"style":400},[4938],{"type":50,"value":786},{"type":44,"tag":100,"props":4940,"children":4941},{"style":113},[4942],{"type":50,"value":2784},{"type":44,"tag":100,"props":4944,"children":4945},{"style":400},[4946],{"type":50,"value":750},{"type":44,"tag":100,"props":4948,"children":4949},{"style":113},[4950],{"type":50,"value":679},{"type":44,"tag":100,"props":4952,"children":4953},{"style":400},[4954],{"type":50,"value":684},{"type":44,"tag":100,"props":4956,"children":4957},{"style":113},[4958],{"type":50,"value":689},{"type":44,"tag":100,"props":4960,"children":4961},{"style":400},[4962],{"type":50,"value":437},{"type":44,"tag":100,"props":4964,"children":4965},{"style":390},[4966],{"type":50,"value":408},{"type":44,"tag":100,"props":4968,"children":4969},{"style":400},[4970],{"type":50,"value":3078},{"type":44,"tag":100,"props":4972,"children":4973},{"class":102,"line":3081},[4974,4978],{"type":44,"tag":100,"props":4975,"children":4976},{"style":390},[4977],{"type":50,"value":776},{"type":44,"tag":100,"props":4979,"children":4980},{"style":400},[4981],{"type":50,"value":3091},{"type":44,"tag":100,"props":4983,"children":4984},{"class":102,"line":3094},[4985,4989],{"type":44,"tag":100,"props":4986,"children":4987},{"style":390},[4988],{"type":50,"value":3100},{"type":44,"tag":100,"props":4990,"children":4991},{"style":400},[4992],{"type":50,"value":3105},{"type":44,"tag":100,"props":4994,"children":4995},{"class":102,"line":3108},[4996,5000,5004,5008,5012,5016,5020,5024],{"type":44,"tag":100,"props":4997,"children":4998},{"style":390},[4999],{"type":50,"value":3114},{"type":44,"tag":100,"props":5001,"children":5002},{"style":113},[5003],{"type":50,"value":2874},{"type":44,"tag":100,"props":5005,"children":5006},{"style":400},[5007],{"type":50,"value":786},{"type":44,"tag":100,"props":5009,"children":5010},{"style":113},[5011],{"type":50,"value":2762},{"type":44,"tag":100,"props":5013,"children":5014},{"style":390},[5015],{"type":50,"value":2591},{"type":44,"tag":100,"props":5017,"children":5018},{"style":113},[5019],{"type":50,"value":3135},{"type":44,"tag":100,"props":5021,"children":5022},{"style":400},[5023],{"type":50,"value":786},{"type":44,"tag":100,"props":5025,"children":5026},{"style":113},[5027],{"type":50,"value":3144},{"type":44,"tag":100,"props":5029,"children":5030},{"class":102,"line":3147},[5031,5035,5039,5043,5047,5051,5055,5059,5063],{"type":44,"tag":100,"props":5032,"children":5033},{"style":390},[5034],{"type":50,"value":800},{"type":44,"tag":100,"props":5036,"children":5037},{"style":113},[5038],{"type":50,"value":2874},{"type":44,"tag":100,"props":5040,"children":5041},{"style":400},[5042],{"type":50,"value":786},{"type":44,"tag":100,"props":5044,"children":5045},{"style":113},[5046],{"type":50,"value":2762},{"type":44,"tag":100,"props":5048,"children":5049},{"style":400},[5050],{"type":50,"value":750},{"type":44,"tag":100,"props":5052,"children":5053},{"style":113},[5054],{"type":50,"value":2925},{"type":44,"tag":100,"props":5056,"children":5057},{"style":400},[5058],{"type":50,"value":786},{"type":44,"tag":100,"props":5060,"children":5061},{"style":113},[5062],{"type":50,"value":2784},{"type":44,"tag":100,"props":5064,"children":5065},{"style":400},[5066],{"type":50,"value":3185},{"type":44,"tag":100,"props":5068,"children":5069},{"class":102,"line":3188},[5070,5074,5078,5082,5086],{"type":44,"tag":100,"props":5071,"children":5072},{"style":390},[5073],{"type":50,"value":814},{"type":44,"tag":100,"props":5075,"children":5076},{"style":113},[5077],{"type":50,"value":2874},{"type":44,"tag":100,"props":5079,"children":5080},{"style":400},[5081],{"type":50,"value":786},{"type":44,"tag":100,"props":5083,"children":5084},{"style":113},[5085],{"type":50,"value":2762},{"type":44,"tag":100,"props":5087,"children":5088},{"style":400},[5089],{"type":50,"value":3185},{"type":44,"tag":124,"props":5091,"children":5093},{"id":5092},"_3-product-performance-rpt_product_performancesql",[5094,5096],{"type":50,"value":5095},"3) Product performance - ",{"type":44,"tag":81,"props":5097,"children":5099},{"className":5098},[],[5100],{"type":50,"value":5101},"rpt_product_performance.sql",{"type":44,"tag":53,"props":5103,"children":5104},{},[5105],{"type":50,"value":5106},"A product catalog report showing all products with their key attributes and status.",{"type":44,"tag":5108,"props":5109,"children":5110},"note",{},[5111],{"type":44,"tag":53,"props":5112,"children":5113},{},[5114,5116,5122,5124,5130],{"type":50,"value":5115},"A full product performance report would need an order_line_items staging table to connect orders to individual products. Shopify stores line items as nested JSON in the orders table. For production use, ask Claude Code to create a ",{"type":44,"tag":81,"props":5117,"children":5119},{"className":5118},[],[5120],{"type":50,"value":5121},"staging.stg_order_line_items",{"type":50,"value":5123}," asset that flattens this data. This simplified version shows product catalog metrics from ",{"type":44,"tag":81,"props":5125,"children":5127},{"className":5126},[],[5128],{"type":50,"value":5129},"stg_products",{"type":50,"value":786},{"type":44,"tag":53,"props":5132,"children":5133},{},[5134,5135,5144],{"type":50,"value":183},{"type":44,"tag":185,"props":5136,"children":5137},{},[5138],{"type":44,"tag":81,"props":5139,"children":5141},{"className":5140},[],[5142],{"type":50,"value":5143},"ecommerce\u002Fassets\u002Freports\u002Frpt_product_performance.sql",{"type":50,"value":195},{"type":44,"tag":90,"props":5146,"children":5148},{"className":208,"code":5147,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_product_performance\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_products\ncolumns:\n  - name: product_id\n    type: varchar\n    checks:\n      - name: not_null\n      - name: unique\n@bruin *\u002F\n\nSELECT\n    product_id,\n    product_name,\n    category,\n    vendor,\n    price,\n    product_status,\n    created_at,\n    updated_at\nFROM staging.stg_products\nORDER BY product_name\n",[5149],{"type":44,"tag":81,"props":5150,"children":5151},{"__ignoreMap":7},[5152,5159,5167,5174,5181,5188,5195,5203,5210,5218,5226,5233,5240,5247,5254,5261,5268,5276,5284,5292,5300,5308,5316,5324,5332,5352],{"type":44,"tag":100,"props":5153,"children":5154},{"class":102,"line":103},[5155],{"type":44,"tag":100,"props":5156,"children":5157},{"style":220},[5158],{"type":50,"value":223},{"type":44,"tag":100,"props":5160,"children":5161},{"class":102,"line":226},[5162],{"type":44,"tag":100,"props":5163,"children":5164},{"style":220},[5165],{"type":50,"value":5166},"name: reports.rpt_product_performance\n",{"type":44,"tag":100,"props":5168,"children":5169},{"class":102,"line":235},[5170],{"type":44,"tag":100,"props":5171,"children":5172},{"style":220},[5173],{"type":50,"value":241},{"type":44,"tag":100,"props":5175,"children":5176},{"class":102,"line":24},[5177],{"type":44,"tag":100,"props":5178,"children":5179},{"style":220},[5180],{"type":50,"value":249},{"type":44,"tag":100,"props":5182,"children":5183},{"class":102,"line":252},[5184],{"type":44,"tag":100,"props":5185,"children":5186},{"style":220},[5187],{"type":50,"value":258},{"type":44,"tag":100,"props":5189,"children":5190},{"class":102,"line":261},[5191],{"type":44,"tag":100,"props":5192,"children":5193},{"style":220},[5194],{"type":50,"value":267},{"type":44,"tag":100,"props":5196,"children":5197},{"class":102,"line":270},[5198],{"type":44,"tag":100,"props":5199,"children":5200},{"style":220},[5201],{"type":50,"value":5202},"  - staging.stg_products\n",{"type":44,"tag":100,"props":5204,"children":5205},{"class":102,"line":279},[5206],{"type":44,"tag":100,"props":5207,"children":5208},{"style":220},[5209],{"type":50,"value":285},{"type":44,"tag":100,"props":5211,"children":5212},{"class":102,"line":288},[5213],{"type":44,"tag":100,"props":5214,"children":5215},{"style":220},[5216],{"type":50,"value":5217},"  - name: product_id\n",{"type":44,"tag":100,"props":5219,"children":5220},{"class":102,"line":297},[5221],{"type":44,"tag":100,"props":5222,"children":5223},{"style":220},[5224],{"type":50,"value":5225},"    type: varchar\n",{"type":44,"tag":100,"props":5227,"children":5228},{"class":102,"line":306},[5229],{"type":44,"tag":100,"props":5230,"children":5231},{"style":220},[5232],{"type":50,"value":312},{"type":44,"tag":100,"props":5234,"children":5235},{"class":102,"line":315},[5236],{"type":44,"tag":100,"props":5237,"children":5238},{"style":220},[5239],{"type":50,"value":321},{"type":44,"tag":100,"props":5241,"children":5242},{"class":102,"line":324},[5243],{"type":44,"tag":100,"props":5244,"children":5245},{"style":220},[5246],{"type":50,"value":330},{"type":44,"tag":100,"props":5248,"children":5249},{"class":102,"line":333},[5250],{"type":44,"tag":100,"props":5251,"children":5252},{"style":220},[5253],{"type":50,"value":374},{"type":44,"tag":100,"props":5255,"children":5256},{"class":102,"line":11},[5257],{"type":44,"tag":100,"props":5258,"children":5259},{"emptyLinePlaceholder":23},[5260],{"type":50,"value":383},{"type":44,"tag":100,"props":5262,"children":5263},{"class":102,"line":350},[5264],{"type":44,"tag":100,"props":5265,"children":5266},{"style":390},[5267],{"type":50,"value":393},{"type":44,"tag":100,"props":5269,"children":5270},{"class":102,"line":359},[5271],{"type":44,"tag":100,"props":5272,"children":5273},{"style":400},[5274],{"type":50,"value":5275},"    product_id,\n",{"type":44,"tag":100,"props":5277,"children":5278},{"class":102,"line":368},[5279],{"type":44,"tag":100,"props":5280,"children":5281},{"style":400},[5282],{"type":50,"value":5283},"    product_name,\n",{"type":44,"tag":100,"props":5285,"children":5286},{"class":102,"line":377},[5287],{"type":44,"tag":100,"props":5288,"children":5289},{"style":400},[5290],{"type":50,"value":5291},"    category,\n",{"type":44,"tag":100,"props":5293,"children":5294},{"class":102,"line":386},[5295],{"type":44,"tag":100,"props":5296,"children":5297},{"style":400},[5298],{"type":50,"value":5299},"    vendor,\n",{"type":44,"tag":100,"props":5301,"children":5302},{"class":102,"line":396},[5303],{"type":44,"tag":100,"props":5304,"children":5305},{"style":400},[5306],{"type":50,"value":5307},"    price,\n",{"type":44,"tag":100,"props":5309,"children":5310},{"class":102,"line":416},[5311],{"type":44,"tag":100,"props":5312,"children":5313},{"style":400},[5314],{"type":50,"value":5315},"    product_status,\n",{"type":44,"tag":100,"props":5317,"children":5318},{"class":102,"line":449},[5319],{"type":44,"tag":100,"props":5320,"children":5321},{"style":400},[5322],{"type":50,"value":5323},"    created_at,\n",{"type":44,"tag":100,"props":5325,"children":5326},{"class":102,"line":481},[5327],{"type":44,"tag":100,"props":5328,"children":5329},{"style":400},[5330],{"type":50,"value":5331},"    updated_at\n",{"type":44,"tag":100,"props":5333,"children":5334},{"class":102,"line":508},[5335,5339,5343,5347],{"type":44,"tag":100,"props":5336,"children":5337},{"style":390},[5338],{"type":50,"value":776},{"type":44,"tag":100,"props":5340,"children":5341},{"style":113},[5342],{"type":50,"value":781},{"type":44,"tag":100,"props":5344,"children":5345},{"style":400},[5346],{"type":50,"value":786},{"type":44,"tag":100,"props":5348,"children":5349},{"style":113},[5350],{"type":50,"value":5351},"stg_products\n",{"type":44,"tag":100,"props":5353,"children":5354},{"class":102,"line":531},[5355,5359],{"type":44,"tag":100,"props":5356,"children":5357},{"style":390},[5358],{"type":50,"value":814},{"type":44,"tag":100,"props":5360,"children":5361},{"style":400},[5362],{"type":50,"value":5363}," product_name\n",{"type":44,"tag":124,"props":5365,"children":5367},{"id":5366},"_4-marketing-roi-rpt_marketing_roisql",[5368,5370],{"type":50,"value":5369},"4) Marketing ROI - ",{"type":44,"tag":81,"props":5371,"children":5373},{"className":5372},[],[5374],{"type":50,"value":5375},"rpt_marketing_roi.sql",{"type":44,"tag":53,"props":5377,"children":5378},{},[5379],{"type":50,"value":5380},"Spend, revenue, and ROAS by marketing channel. This is the report that answers \"where should we spend more?\"",{"type":44,"tag":53,"props":5382,"children":5383},{},[5384,5385,5394],{"type":50,"value":183},{"type":44,"tag":185,"props":5386,"children":5387},{},[5388],{"type":44,"tag":81,"props":5389,"children":5391},{"className":5390},[],[5392],{"type":50,"value":5393},"ecommerce\u002Fassets\u002Freports\u002Frpt_marketing_roi.sql",{"type":50,"value":195},{"type":44,"tag":197,"props":5396,"children":5397},{":variants":199,"group":200},[5398,6769,8064],{"type":44,"tag":203,"props":5399,"children":5400},{"v-slot:clickhouse":7},[5401],{"type":44,"tag":90,"props":5402,"children":5404},{"className":208,"code":5403,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_marketing_roi\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_marketing_spend\n  - staging.stg_web_sessions\n  - staging.stg_orders\ncolumns:\n  - name: channel\n    type: varchar\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nWITH channel_spend AS (\n    SELECT\n        spend_date,\n        channel,\n        sum(spend) AS total_spend,\n        sum(impressions) AS total_impressions,\n        sum(clicks) AS total_clicks,\n        sum(conversions) AS total_conversions\n    FROM staging.stg_marketing_spend\n    GROUP BY spend_date, channel\n),\nchannel_sessions AS (\n    SELECT\n        session_date,\n        channel,\n        sum(total_sessions) AS sessions,\n        sum(new_users) AS new_users,\n        sum(purchase_events) AS purchases\n    FROM staging.stg_web_sessions\n    GROUP BY session_date, channel\n),\nchannel_revenue AS (\n    SELECT\n        toDate(order_date) AS order_date,\n        ws.channel,\n        sum(o.order_total) AS attributed_revenue\n    FROM staging.stg_orders o\n    INNER JOIN staging.stg_web_sessions ws\n        ON toDate(o.order_date) = ws.session_date\n    WHERE o.payment_status = 'paid'\n    GROUP BY toDate(order_date), ws.channel\n)\nSELECT\n    cs.spend_date AS report_date,\n    cs.channel,\n    cs.total_spend,\n    cs.total_impressions,\n    cs.total_clicks,\n    cs.total_conversions,\n    sess.sessions,\n    sess.new_users,\n    cr.attributed_revenue,\n    round(cr.attributed_revenue \u002F nullIf(cs.total_spend, 0), 2) AS roas,\n    round(cs.total_spend \u002F nullIf(cs.total_conversions, 0), 2) AS cost_per_acquisition,\n    round(cs.total_clicks \u002F nullIf(cs.total_impressions, 0) * 100, 2) AS click_through_rate\nFROM channel_spend cs\nLEFT JOIN channel_sessions sess\n    ON cs.spend_date = sess.session_date\n    AND cs.channel = sess.channel\nLEFT JOIN channel_revenue cr\n    ON cs.spend_date = cr.order_date\n    AND cs.channel = cr.channel\nORDER BY cs.spend_date DESC, cs.total_spend DESC\n",[5405],{"type":44,"tag":81,"props":5406,"children":5407},{"__ignoreMap":7},[5408,5415,5423,5430,5437,5444,5451,5459,5467,5474,5481,5489,5496,5503,5510,5517,5524,5544,5551,5559,5567,5589,5610,5631,5652,5672,5684,5691,5707,5714,5722,5729,5754,5775,5796,5816,5828,5835,5851,5858,5874,5895,5931,5954,5979,6025,6052,6079,6087,6095,6121,6141,6162,6183,6204,6225,6247,6268,6290,6369,6446,6535,6548,6562,6599,6636,6649,6687,6723],{"type":44,"tag":100,"props":5409,"children":5410},{"class":102,"line":103},[5411],{"type":44,"tag":100,"props":5412,"children":5413},{"style":220},[5414],{"type":50,"value":223},{"type":44,"tag":100,"props":5416,"children":5417},{"class":102,"line":226},[5418],{"type":44,"tag":100,"props":5419,"children":5420},{"style":220},[5421],{"type":50,"value":5422},"name: reports.rpt_marketing_roi\n",{"type":44,"tag":100,"props":5424,"children":5425},{"class":102,"line":235},[5426],{"type":44,"tag":100,"props":5427,"children":5428},{"style":220},[5429],{"type":50,"value":241},{"type":44,"tag":100,"props":5431,"children":5432},{"class":102,"line":24},[5433],{"type":44,"tag":100,"props":5434,"children":5435},{"style":220},[5436],{"type":50,"value":249},{"type":44,"tag":100,"props":5438,"children":5439},{"class":102,"line":252},[5440],{"type":44,"tag":100,"props":5441,"children":5442},{"style":220},[5443],{"type":50,"value":258},{"type":44,"tag":100,"props":5445,"children":5446},{"class":102,"line":261},[5447],{"type":44,"tag":100,"props":5448,"children":5449},{"style":220},[5450],{"type":50,"value":267},{"type":44,"tag":100,"props":5452,"children":5453},{"class":102,"line":270},[5454],{"type":44,"tag":100,"props":5455,"children":5456},{"style":220},[5457],{"type":50,"value":5458},"  - staging.stg_marketing_spend\n",{"type":44,"tag":100,"props":5460,"children":5461},{"class":102,"line":279},[5462],{"type":44,"tag":100,"props":5463,"children":5464},{"style":220},[5465],{"type":50,"value":5466},"  - staging.stg_web_sessions\n",{"type":44,"tag":100,"props":5468,"children":5469},{"class":102,"line":288},[5470],{"type":44,"tag":100,"props":5471,"children":5472},{"style":220},[5473],{"type":50,"value":276},{"type":44,"tag":100,"props":5475,"children":5476},{"class":102,"line":297},[5477],{"type":44,"tag":100,"props":5478,"children":5479},{"style":220},[5480],{"type":50,"value":285},{"type":44,"tag":100,"props":5482,"children":5483},{"class":102,"line":306},[5484],{"type":44,"tag":100,"props":5485,"children":5486},{"style":220},[5487],{"type":50,"value":5488},"  - name: channel\n",{"type":44,"tag":100,"props":5490,"children":5491},{"class":102,"line":315},[5492],{"type":44,"tag":100,"props":5493,"children":5494},{"style":220},[5495],{"type":50,"value":5225},{"type":44,"tag":100,"props":5497,"children":5498},{"class":102,"line":324},[5499],{"type":44,"tag":100,"props":5500,"children":5501},{"style":220},[5502],{"type":50,"value":312},{"type":44,"tag":100,"props":5504,"children":5505},{"class":102,"line":333},[5506],{"type":44,"tag":100,"props":5507,"children":5508},{"style":220},[5509],{"type":50,"value":321},{"type":44,"tag":100,"props":5511,"children":5512},{"class":102,"line":11},[5513],{"type":44,"tag":100,"props":5514,"children":5515},{"style":220},[5516],{"type":50,"value":374},{"type":44,"tag":100,"props":5518,"children":5519},{"class":102,"line":350},[5520],{"type":44,"tag":100,"props":5521,"children":5522},{"emptyLinePlaceholder":23},[5523],{"type":50,"value":383},{"type":44,"tag":100,"props":5525,"children":5526},{"class":102,"line":359},[5527,5531,5536,5540],{"type":44,"tag":100,"props":5528,"children":5529},{"style":390},[5530],{"type":50,"value":2387},{"type":44,"tag":100,"props":5532,"children":5533},{"style":400},[5534],{"type":50,"value":5535}," channel_spend ",{"type":44,"tag":100,"props":5537,"children":5538},{"style":390},[5539],{"type":50,"value":408},{"type":44,"tag":100,"props":5541,"children":5542},{"style":400},[5543],{"type":50,"value":2401},{"type":44,"tag":100,"props":5545,"children":5546},{"class":102,"line":368},[5547],{"type":44,"tag":100,"props":5548,"children":5549},{"style":390},[5550],{"type":50,"value":2409},{"type":44,"tag":100,"props":5552,"children":5553},{"class":102,"line":377},[5554],{"type":44,"tag":100,"props":5555,"children":5556},{"style":400},[5557],{"type":50,"value":5558},"        spend_date,\n",{"type":44,"tag":100,"props":5560,"children":5561},{"class":102,"line":386},[5562],{"type":44,"tag":100,"props":5563,"children":5564},{"style":400},[5565],{"type":50,"value":5566},"        channel,\n",{"type":44,"tag":100,"props":5568,"children":5569},{"class":102,"line":396},[5570,5575,5580,5584],{"type":44,"tag":100,"props":5571,"children":5572},{"style":113},[5573],{"type":50,"value":5574},"        sum",{"type":44,"tag":100,"props":5576,"children":5577},{"style":400},[5578],{"type":50,"value":5579},"(spend) ",{"type":44,"tag":100,"props":5581,"children":5582},{"style":390},[5583],{"type":50,"value":408},{"type":44,"tag":100,"props":5585,"children":5586},{"style":400},[5587],{"type":50,"value":5588}," total_spend,\n",{"type":44,"tag":100,"props":5590,"children":5591},{"class":102,"line":416},[5592,5596,5601,5605],{"type":44,"tag":100,"props":5593,"children":5594},{"style":113},[5595],{"type":50,"value":5574},{"type":44,"tag":100,"props":5597,"children":5598},{"style":400},[5599],{"type":50,"value":5600},"(impressions) ",{"type":44,"tag":100,"props":5602,"children":5603},{"style":390},[5604],{"type":50,"value":408},{"type":44,"tag":100,"props":5606,"children":5607},{"style":400},[5608],{"type":50,"value":5609}," total_impressions,\n",{"type":44,"tag":100,"props":5611,"children":5612},{"class":102,"line":449},[5613,5617,5622,5626],{"type":44,"tag":100,"props":5614,"children":5615},{"style":113},[5616],{"type":50,"value":5574},{"type":44,"tag":100,"props":5618,"children":5619},{"style":400},[5620],{"type":50,"value":5621},"(clicks) ",{"type":44,"tag":100,"props":5623,"children":5624},{"style":390},[5625],{"type":50,"value":408},{"type":44,"tag":100,"props":5627,"children":5628},{"style":400},[5629],{"type":50,"value":5630}," total_clicks,\n",{"type":44,"tag":100,"props":5632,"children":5633},{"class":102,"line":481},[5634,5638,5643,5647],{"type":44,"tag":100,"props":5635,"children":5636},{"style":113},[5637],{"type":50,"value":5574},{"type":44,"tag":100,"props":5639,"children":5640},{"style":400},[5641],{"type":50,"value":5642},"(conversions) ",{"type":44,"tag":100,"props":5644,"children":5645},{"style":390},[5646],{"type":50,"value":408},{"type":44,"tag":100,"props":5648,"children":5649},{"style":400},[5650],{"type":50,"value":5651}," total_conversions\n",{"type":44,"tag":100,"props":5653,"children":5654},{"class":102,"line":508},[5655,5659,5663,5667],{"type":44,"tag":100,"props":5656,"children":5657},{"style":390},[5658],{"type":50,"value":2524},{"type":44,"tag":100,"props":5660,"children":5661},{"style":113},[5662],{"type":50,"value":781},{"type":44,"tag":100,"props":5664,"children":5665},{"style":400},[5666],{"type":50,"value":786},{"type":44,"tag":100,"props":5668,"children":5669},{"style":113},[5670],{"type":50,"value":5671},"stg_marketing_spend\n",{"type":44,"tag":100,"props":5673,"children":5674},{"class":102,"line":531},[5675,5679],{"type":44,"tag":100,"props":5676,"children":5677},{"style":390},[5678],{"type":50,"value":2725},{"type":44,"tag":100,"props":5680,"children":5681},{"style":400},[5682],{"type":50,"value":5683}," spend_date, channel\n",{"type":44,"tag":100,"props":5685,"children":5686},{"class":102,"line":604},[5687],{"type":44,"tag":100,"props":5688,"children":5689},{"style":400},[5690],{"type":50,"value":2643},{"type":44,"tag":100,"props":5692,"children":5693},{"class":102,"line":626},[5694,5699,5703],{"type":44,"tag":100,"props":5695,"children":5696},{"style":400},[5697],{"type":50,"value":5698},"channel_sessions ",{"type":44,"tag":100,"props":5700,"children":5701},{"style":390},[5702],{"type":50,"value":408},{"type":44,"tag":100,"props":5704,"children":5705},{"style":400},[5706],{"type":50,"value":2401},{"type":44,"tag":100,"props":5708,"children":5709},{"class":102,"line":648},[5710],{"type":44,"tag":100,"props":5711,"children":5712},{"style":390},[5713],{"type":50,"value":2409},{"type":44,"tag":100,"props":5715,"children":5716},{"class":102,"line":705},[5717],{"type":44,"tag":100,"props":5718,"children":5719},{"style":400},[5720],{"type":50,"value":5721},"        session_date,\n",{"type":44,"tag":100,"props":5723,"children":5724},{"class":102,"line":770},[5725],{"type":44,"tag":100,"props":5726,"children":5727},{"style":400},[5728],{"type":50,"value":5566},{"type":44,"tag":100,"props":5730,"children":5731},{"class":102,"line":794},[5732,5736,5741,5745,5750],{"type":44,"tag":100,"props":5733,"children":5734},{"style":113},[5735],{"type":50,"value":5574},{"type":44,"tag":100,"props":5737,"children":5738},{"style":400},[5739],{"type":50,"value":5740},"(total_sessions) ",{"type":44,"tag":100,"props":5742,"children":5743},{"style":390},[5744],{"type":50,"value":408},{"type":44,"tag":100,"props":5746,"children":5747},{"style":390},[5748],{"type":50,"value":5749}," sessions",{"type":44,"tag":100,"props":5751,"children":5752},{"style":400},[5753],{"type":50,"value":2431},{"type":44,"tag":100,"props":5755,"children":5756},{"class":102,"line":808},[5757,5761,5766,5770],{"type":44,"tag":100,"props":5758,"children":5759},{"style":113},[5760],{"type":50,"value":5574},{"type":44,"tag":100,"props":5762,"children":5763},{"style":400},[5764],{"type":50,"value":5765},"(new_users) ",{"type":44,"tag":100,"props":5767,"children":5768},{"style":390},[5769],{"type":50,"value":408},{"type":44,"tag":100,"props":5771,"children":5772},{"style":400},[5773],{"type":50,"value":5774}," new_users,\n",{"type":44,"tag":100,"props":5776,"children":5777},{"class":102,"line":1484},[5778,5782,5787,5791],{"type":44,"tag":100,"props":5779,"children":5780},{"style":113},[5781],{"type":50,"value":5574},{"type":44,"tag":100,"props":5783,"children":5784},{"style":400},[5785],{"type":50,"value":5786},"(purchase_events) ",{"type":44,"tag":100,"props":5788,"children":5789},{"style":390},[5790],{"type":50,"value":408},{"type":44,"tag":100,"props":5792,"children":5793},{"style":400},[5794],{"type":50,"value":5795}," purchases\n",{"type":44,"tag":100,"props":5797,"children":5798},{"class":102,"line":2747},[5799,5803,5807,5811],{"type":44,"tag":100,"props":5800,"children":5801},{"style":390},[5802],{"type":50,"value":2524},{"type":44,"tag":100,"props":5804,"children":5805},{"style":113},[5806],{"type":50,"value":781},{"type":44,"tag":100,"props":5808,"children":5809},{"style":400},[5810],{"type":50,"value":786},{"type":44,"tag":100,"props":5812,"children":5813},{"style":113},[5814],{"type":50,"value":5815},"stg_web_sessions\n",{"type":44,"tag":100,"props":5817,"children":5818},{"class":102,"line":2769},[5819,5823],{"type":44,"tag":100,"props":5820,"children":5821},{"style":390},[5822],{"type":50,"value":2725},{"type":44,"tag":100,"props":5824,"children":5825},{"style":400},[5826],{"type":50,"value":5827}," session_date, channel\n",{"type":44,"tag":100,"props":5829,"children":5830},{"class":102,"line":2791},[5831],{"type":44,"tag":100,"props":5832,"children":5833},{"style":400},[5834],{"type":50,"value":2643},{"type":44,"tag":100,"props":5836,"children":5837},{"class":102,"line":2856},[5838,5843,5847],{"type":44,"tag":100,"props":5839,"children":5840},{"style":400},[5841],{"type":50,"value":5842},"channel_revenue ",{"type":44,"tag":100,"props":5844,"children":5845},{"style":390},[5846],{"type":50,"value":408},{"type":44,"tag":100,"props":5848,"children":5849},{"style":400},[5850],{"type":50,"value":2401},{"type":44,"tag":100,"props":5852,"children":5853},{"class":102,"line":2898},[5854],{"type":44,"tag":100,"props":5855,"children":5856},{"style":390},[5857],{"type":50,"value":2409},{"type":44,"tag":100,"props":5859,"children":5860},{"class":102,"line":2977},[5861,5866,5870],{"type":44,"tag":100,"props":5862,"children":5863},{"style":400},[5864],{"type":50,"value":5865},"        toDate(order_date) ",{"type":44,"tag":100,"props":5867,"children":5868},{"style":390},[5869],{"type":50,"value":408},{"type":44,"tag":100,"props":5871,"children":5872},{"style":400},[5873],{"type":50,"value":413},{"type":44,"tag":100,"props":5875,"children":5876},{"class":102,"line":3015},[5877,5882,5886,5891],{"type":44,"tag":100,"props":5878,"children":5879},{"style":113},[5880],{"type":50,"value":5881},"        ws",{"type":44,"tag":100,"props":5883,"children":5884},{"style":400},[5885],{"type":50,"value":786},{"type":44,"tag":100,"props":5887,"children":5888},{"style":113},[5889],{"type":50,"value":5890},"channel",{"type":44,"tag":100,"props":5892,"children":5893},{"style":400},[5894],{"type":50,"value":2431},{"type":44,"tag":100,"props":5896,"children":5897},{"class":102,"line":3081},[5898,5902,5906,5910,5914,5918,5922,5926],{"type":44,"tag":100,"props":5899,"children":5900},{"style":113},[5901],{"type":50,"value":5574},{"type":44,"tag":100,"props":5903,"children":5904},{"style":400},[5905],{"type":50,"value":427},{"type":44,"tag":100,"props":5907,"children":5908},{"style":113},[5909],{"type":50,"value":2478},{"type":44,"tag":100,"props":5911,"children":5912},{"style":400},[5913],{"type":50,"value":786},{"type":44,"tag":100,"props":5915,"children":5916},{"style":113},[5917],{"type":50,"value":2999},{"type":44,"tag":100,"props":5919,"children":5920},{"style":400},[5921],{"type":50,"value":437},{"type":44,"tag":100,"props":5923,"children":5924},{"style":390},[5925],{"type":50,"value":408},{"type":44,"tag":100,"props":5927,"children":5928},{"style":400},[5929],{"type":50,"value":5930}," attributed_revenue\n",{"type":44,"tag":100,"props":5932,"children":5933},{"class":102,"line":3094},[5934,5938,5942,5946,5950],{"type":44,"tag":100,"props":5935,"children":5936},{"style":390},[5937],{"type":50,"value":2524},{"type":44,"tag":100,"props":5939,"children":5940},{"style":113},[5941],{"type":50,"value":781},{"type":44,"tag":100,"props":5943,"children":5944},{"style":400},[5945],{"type":50,"value":786},{"type":44,"tag":100,"props":5947,"children":5948},{"style":113},[5949],{"type":50,"value":1408},{"type":44,"tag":100,"props":5951,"children":5952},{"style":400},[5953],{"type":50,"value":1413},{"type":44,"tag":100,"props":5955,"children":5956},{"class":102,"line":3108},[5957,5961,5965,5969,5974],{"type":44,"tag":100,"props":5958,"children":5959},{"style":390},[5960],{"type":50,"value":2548},{"type":44,"tag":100,"props":5962,"children":5963},{"style":113},[5964],{"type":50,"value":781},{"type":44,"tag":100,"props":5966,"children":5967},{"style":400},[5968],{"type":50,"value":786},{"type":44,"tag":100,"props":5970,"children":5971},{"style":113},[5972],{"type":50,"value":5973},"stg_web_sessions",{"type":44,"tag":100,"props":5975,"children":5976},{"style":400},[5977],{"type":50,"value":5978}," ws\n",{"type":44,"tag":100,"props":5980,"children":5981},{"class":102,"line":3147},[5982,5986,5991,5995,5999,6003,6007,6011,6016,6020],{"type":44,"tag":100,"props":5983,"children":5984},{"style":390},[5985],{"type":50,"value":2574},{"type":44,"tag":100,"props":5987,"children":5988},{"style":400},[5989],{"type":50,"value":5990}," toDate(",{"type":44,"tag":100,"props":5992,"children":5993},{"style":113},[5994],{"type":50,"value":2478},{"type":44,"tag":100,"props":5996,"children":5997},{"style":400},[5998],{"type":50,"value":786},{"type":44,"tag":100,"props":6000,"children":6001},{"style":113},[6002],{"type":50,"value":2487},{"type":44,"tag":100,"props":6004,"children":6005},{"style":400},[6006],{"type":50,"value":437},{"type":44,"tag":100,"props":6008,"children":6009},{"style":390},[6010],{"type":50,"value":460},{"type":44,"tag":100,"props":6012,"children":6013},{"style":113},[6014],{"type":50,"value":6015}," ws",{"type":44,"tag":100,"props":6017,"children":6018},{"style":400},[6019],{"type":50,"value":786},{"type":44,"tag":100,"props":6021,"children":6022},{"style":113},[6023],{"type":50,"value":6024},"session_date\n",{"type":44,"tag":100,"props":6026,"children":6027},{"class":102,"line":3188},[6028,6032,6036,6040,6044,6048],{"type":44,"tag":100,"props":6029,"children":6030},{"style":390},[6031],{"type":50,"value":2613},{"type":44,"tag":100,"props":6033,"children":6034},{"style":113},[6035],{"type":50,"value":1426},{"type":44,"tag":100,"props":6037,"children":6038},{"style":400},[6039],{"type":50,"value":786},{"type":44,"tag":100,"props":6041,"children":6042},{"style":113},[6043],{"type":50,"value":2626},{"type":44,"tag":100,"props":6045,"children":6046},{"style":390},[6047],{"type":50,"value":2591},{"type":44,"tag":100,"props":6049,"children":6050},{"style":119},[6051],{"type":50,"value":2635},{"type":44,"tag":100,"props":6053,"children":6055},{"class":102,"line":6054},47,[6056,6060,6065,6070,6074],{"type":44,"tag":100,"props":6057,"children":6058},{"style":390},[6059],{"type":50,"value":2725},{"type":44,"tag":100,"props":6061,"children":6062},{"style":400},[6063],{"type":50,"value":6064}," toDate(order_date), ",{"type":44,"tag":100,"props":6066,"children":6067},{"style":113},[6068],{"type":50,"value":6069},"ws",{"type":44,"tag":100,"props":6071,"children":6072},{"style":400},[6073],{"type":50,"value":786},{"type":44,"tag":100,"props":6075,"children":6076},{"style":113},[6077],{"type":50,"value":6078},"channel\n",{"type":44,"tag":100,"props":6080,"children":6082},{"class":102,"line":6081},48,[6083],{"type":44,"tag":100,"props":6084,"children":6085},{"style":400},[6086],{"type":50,"value":1464},{"type":44,"tag":100,"props":6088,"children":6090},{"class":102,"line":6089},49,[6091],{"type":44,"tag":100,"props":6092,"children":6093},{"style":390},[6094],{"type":50,"value":393},{"type":44,"tag":100,"props":6096,"children":6098},{"class":102,"line":6097},50,[6099,6103,6107,6112,6116],{"type":44,"tag":100,"props":6100,"children":6101},{"style":113},[6102],{"type":50,"value":2775},{"type":44,"tag":100,"props":6104,"children":6105},{"style":400},[6106],{"type":50,"value":786},{"type":44,"tag":100,"props":6108,"children":6109},{"style":113},[6110],{"type":50,"value":6111},"spend_date",{"type":44,"tag":100,"props":6113,"children":6114},{"style":390},[6115],{"type":50,"value":1661},{"type":44,"tag":100,"props":6117,"children":6118},{"style":400},[6119],{"type":50,"value":6120}," report_date,\n",{"type":44,"tag":100,"props":6122,"children":6124},{"class":102,"line":6123},51,[6125,6129,6133,6137],{"type":44,"tag":100,"props":6126,"children":6127},{"style":113},[6128],{"type":50,"value":2775},{"type":44,"tag":100,"props":6130,"children":6131},{"style":400},[6132],{"type":50,"value":786},{"type":44,"tag":100,"props":6134,"children":6135},{"style":113},[6136],{"type":50,"value":5890},{"type":44,"tag":100,"props":6138,"children":6139},{"style":400},[6140],{"type":50,"value":2431},{"type":44,"tag":100,"props":6142,"children":6144},{"class":102,"line":6143},52,[6145,6149,6153,6158],{"type":44,"tag":100,"props":6146,"children":6147},{"style":113},[6148],{"type":50,"value":2775},{"type":44,"tag":100,"props":6150,"children":6151},{"style":400},[6152],{"type":50,"value":786},{"type":44,"tag":100,"props":6154,"children":6155},{"style":113},[6156],{"type":50,"value":6157},"total_spend",{"type":44,"tag":100,"props":6159,"children":6160},{"style":400},[6161],{"type":50,"value":2431},{"type":44,"tag":100,"props":6163,"children":6165},{"class":102,"line":6164},53,[6166,6170,6174,6179],{"type":44,"tag":100,"props":6167,"children":6168},{"style":113},[6169],{"type":50,"value":2775},{"type":44,"tag":100,"props":6171,"children":6172},{"style":400},[6173],{"type":50,"value":786},{"type":44,"tag":100,"props":6175,"children":6176},{"style":113},[6177],{"type":50,"value":6178},"total_impressions",{"type":44,"tag":100,"props":6180,"children":6181},{"style":400},[6182],{"type":50,"value":2431},{"type":44,"tag":100,"props":6184,"children":6186},{"class":102,"line":6185},54,[6187,6191,6195,6200],{"type":44,"tag":100,"props":6188,"children":6189},{"style":113},[6190],{"type":50,"value":2775},{"type":44,"tag":100,"props":6192,"children":6193},{"style":400},[6194],{"type":50,"value":786},{"type":44,"tag":100,"props":6196,"children":6197},{"style":113},[6198],{"type":50,"value":6199},"total_clicks",{"type":44,"tag":100,"props":6201,"children":6202},{"style":400},[6203],{"type":50,"value":2431},{"type":44,"tag":100,"props":6205,"children":6207},{"class":102,"line":6206},55,[6208,6212,6216,6221],{"type":44,"tag":100,"props":6209,"children":6210},{"style":113},[6211],{"type":50,"value":2775},{"type":44,"tag":100,"props":6213,"children":6214},{"style":400},[6215],{"type":50,"value":786},{"type":44,"tag":100,"props":6217,"children":6218},{"style":113},[6219],{"type":50,"value":6220},"total_conversions",{"type":44,"tag":100,"props":6222,"children":6223},{"style":400},[6224],{"type":50,"value":2431},{"type":44,"tag":100,"props":6226,"children":6228},{"class":102,"line":6227},56,[6229,6234,6238,6243],{"type":44,"tag":100,"props":6230,"children":6231},{"style":113},[6232],{"type":50,"value":6233},"    sess",{"type":44,"tag":100,"props":6235,"children":6236},{"style":400},[6237],{"type":50,"value":786},{"type":44,"tag":100,"props":6239,"children":6240},{"style":113},[6241],{"type":50,"value":6242},"sessions",{"type":44,"tag":100,"props":6244,"children":6245},{"style":400},[6246],{"type":50,"value":2431},{"type":44,"tag":100,"props":6248,"children":6250},{"class":102,"line":6249},57,[6251,6255,6259,6264],{"type":44,"tag":100,"props":6252,"children":6253},{"style":113},[6254],{"type":50,"value":6233},{"type":44,"tag":100,"props":6256,"children":6257},{"style":400},[6258],{"type":50,"value":786},{"type":44,"tag":100,"props":6260,"children":6261},{"style":113},[6262],{"type":50,"value":6263},"new_users",{"type":44,"tag":100,"props":6265,"children":6266},{"style":400},[6267],{"type":50,"value":2431},{"type":44,"tag":100,"props":6269,"children":6271},{"class":102,"line":6270},58,[6272,6277,6281,6286],{"type":44,"tag":100,"props":6273,"children":6274},{"style":113},[6275],{"type":50,"value":6276},"    cr",{"type":44,"tag":100,"props":6278,"children":6279},{"style":400},[6280],{"type":50,"value":786},{"type":44,"tag":100,"props":6282,"children":6283},{"style":113},[6284],{"type":50,"value":6285},"attributed_revenue",{"type":44,"tag":100,"props":6287,"children":6288},{"style":400},[6289],{"type":50,"value":2431},{"type":44,"tag":100,"props":6291,"children":6293},{"class":102,"line":6292},59,[6294,6298,6302,6307,6311,6315,6320,6324,6328,6332,6336,6340,6344,6348,6352,6356,6360,6364],{"type":44,"tag":100,"props":6295,"children":6296},{"style":113},[6297],{"type":50,"value":654},{"type":44,"tag":100,"props":6299,"children":6300},{"style":400},[6301],{"type":50,"value":427},{"type":44,"tag":100,"props":6303,"children":6304},{"style":113},[6305],{"type":50,"value":6306},"cr",{"type":44,"tag":100,"props":6308,"children":6309},{"style":400},[6310],{"type":50,"value":786},{"type":44,"tag":100,"props":6312,"children":6313},{"style":113},[6314],{"type":50,"value":6285},{"type":44,"tag":100,"props":6316,"children":6317},{"style":390},[6318],{"type":50,"value":6319}," \u002F",{"type":44,"tag":100,"props":6321,"children":6322},{"style":113},[6323],{"type":50,"value":669},{"type":44,"tag":100,"props":6325,"children":6326},{"style":400},[6327],{"type":50,"value":427},{"type":44,"tag":100,"props":6329,"children":6330},{"style":113},[6331],{"type":50,"value":2925},{"type":44,"tag":100,"props":6333,"children":6334},{"style":400},[6335],{"type":50,"value":786},{"type":44,"tag":100,"props":6337,"children":6338},{"style":113},[6339],{"type":50,"value":6157},{"type":44,"tag":100,"props":6341,"children":6342},{"style":400},[6343],{"type":50,"value":750},{"type":44,"tag":100,"props":6345,"children":6346},{"style":113},[6347],{"type":50,"value":679},{"type":44,"tag":100,"props":6349,"children":6350},{"style":400},[6351],{"type":50,"value":684},{"type":44,"tag":100,"props":6353,"children":6354},{"style":113},[6355],{"type":50,"value":689},{"type":44,"tag":100,"props":6357,"children":6358},{"style":400},[6359],{"type":50,"value":437},{"type":44,"tag":100,"props":6361,"children":6362},{"style":390},[6363],{"type":50,"value":408},{"type":44,"tag":100,"props":6365,"children":6366},{"style":400},[6367],{"type":50,"value":6368}," roas,\n",{"type":44,"tag":100,"props":6370,"children":6372},{"class":102,"line":6371},60,[6373,6377,6381,6385,6389,6393,6397,6401,6405,6409,6413,6417,6421,6425,6429,6433,6437,6441],{"type":44,"tag":100,"props":6374,"children":6375},{"style":113},[6376],{"type":50,"value":654},{"type":44,"tag":100,"props":6378,"children":6379},{"style":400},[6380],{"type":50,"value":427},{"type":44,"tag":100,"props":6382,"children":6383},{"style":113},[6384],{"type":50,"value":2925},{"type":44,"tag":100,"props":6386,"children":6387},{"style":400},[6388],{"type":50,"value":786},{"type":44,"tag":100,"props":6390,"children":6391},{"style":113},[6392],{"type":50,"value":6157},{"type":44,"tag":100,"props":6394,"children":6395},{"style":390},[6396],{"type":50,"value":6319},{"type":44,"tag":100,"props":6398,"children":6399},{"style":113},[6400],{"type":50,"value":669},{"type":44,"tag":100,"props":6402,"children":6403},{"style":400},[6404],{"type":50,"value":427},{"type":44,"tag":100,"props":6406,"children":6407},{"style":113},[6408],{"type":50,"value":2925},{"type":44,"tag":100,"props":6410,"children":6411},{"style":400},[6412],{"type":50,"value":786},{"type":44,"tag":100,"props":6414,"children":6415},{"style":113},[6416],{"type":50,"value":6220},{"type":44,"tag":100,"props":6418,"children":6419},{"style":400},[6420],{"type":50,"value":750},{"type":44,"tag":100,"props":6422,"children":6423},{"style":113},[6424],{"type":50,"value":679},{"type":44,"tag":100,"props":6426,"children":6427},{"style":400},[6428],{"type":50,"value":684},{"type":44,"tag":100,"props":6430,"children":6431},{"style":113},[6432],{"type":50,"value":689},{"type":44,"tag":100,"props":6434,"children":6435},{"style":400},[6436],{"type":50,"value":437},{"type":44,"tag":100,"props":6438,"children":6439},{"style":390},[6440],{"type":50,"value":408},{"type":44,"tag":100,"props":6442,"children":6443},{"style":400},[6444],{"type":50,"value":6445}," cost_per_acquisition,\n",{"type":44,"tag":100,"props":6447,"children":6449},{"class":102,"line":6448},61,[6450,6454,6458,6462,6466,6470,6474,6478,6482,6486,6490,6494,6498,6502,6506,6510,6514,6518,6522,6526,6530],{"type":44,"tag":100,"props":6451,"children":6452},{"style":113},[6453],{"type":50,"value":654},{"type":44,"tag":100,"props":6455,"children":6456},{"style":400},[6457],{"type":50,"value":427},{"type":44,"tag":100,"props":6459,"children":6460},{"style":113},[6461],{"type":50,"value":2925},{"type":44,"tag":100,"props":6463,"children":6464},{"style":400},[6465],{"type":50,"value":786},{"type":44,"tag":100,"props":6467,"children":6468},{"style":113},[6469],{"type":50,"value":6199},{"type":44,"tag":100,"props":6471,"children":6472},{"style":390},[6473],{"type":50,"value":6319},{"type":44,"tag":100,"props":6475,"children":6476},{"style":113},[6477],{"type":50,"value":669},{"type":44,"tag":100,"props":6479,"children":6480},{"style":400},[6481],{"type":50,"value":427},{"type":44,"tag":100,"props":6483,"children":6484},{"style":113},[6485],{"type":50,"value":2925},{"type":44,"tag":100,"props":6487,"children":6488},{"style":400},[6489],{"type":50,"value":786},{"type":44,"tag":100,"props":6491,"children":6492},{"style":113},[6493],{"type":50,"value":6178},{"type":44,"tag":100,"props":6495,"children":6496},{"style":400},[6497],{"type":50,"value":750},{"type":44,"tag":100,"props":6499,"children":6500},{"style":113},[6501],{"type":50,"value":679},{"type":44,"tag":100,"props":6503,"children":6504},{"style":400},[6505],{"type":50,"value":437},{"type":44,"tag":100,"props":6507,"children":6508},{"style":390},[6509],{"type":50,"value":432},{"type":44,"tag":100,"props":6511,"children":6512},{"style":113},[6513],{"type":50,"value":745},{"type":44,"tag":100,"props":6515,"children":6516},{"style":400},[6517],{"type":50,"value":750},{"type":44,"tag":100,"props":6519,"children":6520},{"style":113},[6521],{"type":50,"value":689},{"type":44,"tag":100,"props":6523,"children":6524},{"style":400},[6525],{"type":50,"value":437},{"type":44,"tag":100,"props":6527,"children":6528},{"style":390},[6529],{"type":50,"value":408},{"type":44,"tag":100,"props":6531,"children":6532},{"style":400},[6533],{"type":50,"value":6534}," click_through_rate\n",{"type":44,"tag":100,"props":6536,"children":6538},{"class":102,"line":6537},62,[6539,6543],{"type":44,"tag":100,"props":6540,"children":6541},{"style":390},[6542],{"type":50,"value":776},{"type":44,"tag":100,"props":6544,"children":6545},{"style":400},[6546],{"type":50,"value":6547}," channel_spend cs\n",{"type":44,"tag":100,"props":6549,"children":6551},{"class":102,"line":6550},63,[6552,6557],{"type":44,"tag":100,"props":6553,"children":6554},{"style":390},[6555],{"type":50,"value":6556},"LEFT JOIN",{"type":44,"tag":100,"props":6558,"children":6559},{"style":400},[6560],{"type":50,"value":6561}," channel_sessions sess\n",{"type":44,"tag":100,"props":6563,"children":6565},{"class":102,"line":6564},64,[6566,6570,6574,6578,6582,6586,6591,6595],{"type":44,"tag":100,"props":6567,"children":6568},{"style":390},[6569],{"type":50,"value":3114},{"type":44,"tag":100,"props":6571,"children":6572},{"style":113},[6573],{"type":50,"value":3135},{"type":44,"tag":100,"props":6575,"children":6576},{"style":400},[6577],{"type":50,"value":786},{"type":44,"tag":100,"props":6579,"children":6580},{"style":113},[6581],{"type":50,"value":6111},{"type":44,"tag":100,"props":6583,"children":6584},{"style":390},[6585],{"type":50,"value":2591},{"type":44,"tag":100,"props":6587,"children":6588},{"style":113},[6589],{"type":50,"value":6590}," sess",{"type":44,"tag":100,"props":6592,"children":6593},{"style":400},[6594],{"type":50,"value":786},{"type":44,"tag":100,"props":6596,"children":6597},{"style":113},[6598],{"type":50,"value":6024},{"type":44,"tag":100,"props":6600,"children":6602},{"class":102,"line":6601},65,[6603,6608,6612,6616,6620,6624,6628,6632],{"type":44,"tag":100,"props":6604,"children":6605},{"style":390},[6606],{"type":50,"value":6607},"    AND",{"type":44,"tag":100,"props":6609,"children":6610},{"style":113},[6611],{"type":50,"value":3135},{"type":44,"tag":100,"props":6613,"children":6614},{"style":400},[6615],{"type":50,"value":786},{"type":44,"tag":100,"props":6617,"children":6618},{"style":113},[6619],{"type":50,"value":5890},{"type":44,"tag":100,"props":6621,"children":6622},{"style":390},[6623],{"type":50,"value":2591},{"type":44,"tag":100,"props":6625,"children":6626},{"style":113},[6627],{"type":50,"value":6590},{"type":44,"tag":100,"props":6629,"children":6630},{"style":400},[6631],{"type":50,"value":786},{"type":44,"tag":100,"props":6633,"children":6634},{"style":113},[6635],{"type":50,"value":6078},{"type":44,"tag":100,"props":6637,"children":6639},{"class":102,"line":6638},66,[6640,6644],{"type":44,"tag":100,"props":6641,"children":6642},{"style":390},[6643],{"type":50,"value":6556},{"type":44,"tag":100,"props":6645,"children":6646},{"style":400},[6647],{"type":50,"value":6648}," channel_revenue cr\n",{"type":44,"tag":100,"props":6650,"children":6652},{"class":102,"line":6651},67,[6653,6657,6661,6665,6669,6673,6678,6682],{"type":44,"tag":100,"props":6654,"children":6655},{"style":390},[6656],{"type":50,"value":3114},{"type":44,"tag":100,"props":6658,"children":6659},{"style":113},[6660],{"type":50,"value":3135},{"type":44,"tag":100,"props":6662,"children":6663},{"style":400},[6664],{"type":50,"value":786},{"type":44,"tag":100,"props":6666,"children":6667},{"style":113},[6668],{"type":50,"value":6111},{"type":44,"tag":100,"props":6670,"children":6671},{"style":390},[6672],{"type":50,"value":2591},{"type":44,"tag":100,"props":6674,"children":6675},{"style":113},[6676],{"type":50,"value":6677}," cr",{"type":44,"tag":100,"props":6679,"children":6680},{"style":400},[6681],{"type":50,"value":786},{"type":44,"tag":100,"props":6683,"children":6684},{"style":113},[6685],{"type":50,"value":6686},"order_date\n",{"type":44,"tag":100,"props":6688,"children":6690},{"class":102,"line":6689},68,[6691,6695,6699,6703,6707,6711,6715,6719],{"type":44,"tag":100,"props":6692,"children":6693},{"style":390},[6694],{"type":50,"value":6607},{"type":44,"tag":100,"props":6696,"children":6697},{"style":113},[6698],{"type":50,"value":3135},{"type":44,"tag":100,"props":6700,"children":6701},{"style":400},[6702],{"type":50,"value":786},{"type":44,"tag":100,"props":6704,"children":6705},{"style":113},[6706],{"type":50,"value":5890},{"type":44,"tag":100,"props":6708,"children":6709},{"style":390},[6710],{"type":50,"value":2591},{"type":44,"tag":100,"props":6712,"children":6713},{"style":113},[6714],{"type":50,"value":6677},{"type":44,"tag":100,"props":6716,"children":6717},{"style":400},[6718],{"type":50,"value":786},{"type":44,"tag":100,"props":6720,"children":6721},{"style":113},[6722],{"type":50,"value":6078},{"type":44,"tag":100,"props":6724,"children":6726},{"class":102,"line":6725},69,[6727,6731,6735,6739,6743,6748,6752,6756,6760,6764],{"type":44,"tag":100,"props":6728,"children":6729},{"style":390},[6730],{"type":50,"value":814},{"type":44,"tag":100,"props":6732,"children":6733},{"style":113},[6734],{"type":50,"value":3135},{"type":44,"tag":100,"props":6736,"children":6737},{"style":400},[6738],{"type":50,"value":786},{"type":44,"tag":100,"props":6740,"children":6741},{"style":113},[6742],{"type":50,"value":6111},{"type":44,"tag":100,"props":6744,"children":6745},{"style":390},[6746],{"type":50,"value":6747}," DESC",{"type":44,"tag":100,"props":6749,"children":6750},{"style":400},[6751],{"type":50,"value":750},{"type":44,"tag":100,"props":6753,"children":6754},{"style":113},[6755],{"type":50,"value":2925},{"type":44,"tag":100,"props":6757,"children":6758},{"style":400},[6759],{"type":50,"value":786},{"type":44,"tag":100,"props":6761,"children":6762},{"style":113},[6763],{"type":50,"value":6157},{"type":44,"tag":100,"props":6765,"children":6766},{"style":390},[6767],{"type":50,"value":6768}," DESC\n",{"type":44,"tag":203,"props":6770,"children":6771},{"v-slot:bigquery":7},[6772],{"type":44,"tag":90,"props":6773,"children":6775},{"className":208,"code":6774,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_marketing_roi\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_marketing_spend\n  - staging.stg_web_sessions\n  - staging.stg_orders\ncolumns:\n  - name: channel\n    type: varchar\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nWITH channel_spend AS (\n    SELECT\n        spend_date,\n        channel,\n        sum(spend) AS total_spend,\n        sum(impressions) AS total_impressions,\n        sum(clicks) AS total_clicks,\n        sum(conversions) AS total_conversions\n    FROM staging.stg_marketing_spend\n    GROUP BY spend_date, channel\n),\nchannel_sessions AS (\n    SELECT\n        session_date,\n        channel,\n        sum(total_sessions) AS sessions,\n        sum(new_users) AS new_users,\n        sum(purchase_events) AS purchases\n    FROM staging.stg_web_sessions\n    GROUP BY session_date, channel\n),\nchannel_revenue AS (\n    SELECT\n        DATE(order_date) AS order_date,\n        ws.channel,\n        sum(o.order_total) AS attributed_revenue\n    FROM staging.stg_orders o\n    INNER JOIN staging.stg_web_sessions ws\n        ON DATE(o.order_date) = ws.session_date\n    WHERE o.payment_status = 'paid'\n    GROUP BY DATE(order_date), ws.channel\n)\nSELECT\n    cs.spend_date AS report_date,\n    cs.channel,\n    cs.total_spend,\n    cs.total_impressions,\n    cs.total_clicks,\n    cs.total_conversions,\n    sess.sessions,\n    sess.new_users,\n    cr.attributed_revenue,\n    round(cr.attributed_revenue \u002F NULLIF(cs.total_spend, 0), 2) AS roas,\n    round(cs.total_spend \u002F NULLIF(cs.total_conversions, 0), 2) AS cost_per_acquisition,\n    round(cs.total_clicks \u002F NULLIF(cs.total_impressions, 0) * 100, 2) AS click_through_rate\nFROM channel_spend cs\nLEFT JOIN channel_sessions sess\n    ON cs.spend_date = sess.session_date\n    AND cs.channel = sess.channel\nLEFT JOIN channel_revenue cr\n    ON cs.spend_date = cr.order_date\n    AND cs.channel = cr.channel\nORDER BY cs.spend_date DESC, cs.total_spend DESC\n",[6776],{"type":44,"tag":81,"props":6777,"children":6778},{"__ignoreMap":7},[6779,6786,6793,6800,6807,6814,6821,6828,6835,6842,6849,6856,6863,6870,6877,6884,6891,6910,6917,6924,6931,6950,6969,6988,7007,7026,7037,7044,7059,7066,7073,7080,7103,7122,7141,7160,7171,7178,7193,7200,7220,7239,7274,7297,7320,7367,7394,7422,7429,7436,7459,7478,7497,7516,7535,7554,7573,7592,7611,7686,7761,7848,7859,7870,7905,7940,7951,7986,8021],{"type":44,"tag":100,"props":6780,"children":6781},{"class":102,"line":103},[6782],{"type":44,"tag":100,"props":6783,"children":6784},{"style":220},[6785],{"type":50,"value":223},{"type":44,"tag":100,"props":6787,"children":6788},{"class":102,"line":226},[6789],{"type":44,"tag":100,"props":6790,"children":6791},{"style":220},[6792],{"type":50,"value":5422},{"type":44,"tag":100,"props":6794,"children":6795},{"class":102,"line":235},[6796],{"type":44,"tag":100,"props":6797,"children":6798},{"style":220},[6799],{"type":50,"value":241},{"type":44,"tag":100,"props":6801,"children":6802},{"class":102,"line":24},[6803],{"type":44,"tag":100,"props":6804,"children":6805},{"style":220},[6806],{"type":50,"value":249},{"type":44,"tag":100,"props":6808,"children":6809},{"class":102,"line":252},[6810],{"type":44,"tag":100,"props":6811,"children":6812},{"style":220},[6813],{"type":50,"value":258},{"type":44,"tag":100,"props":6815,"children":6816},{"class":102,"line":261},[6817],{"type":44,"tag":100,"props":6818,"children":6819},{"style":220},[6820],{"type":50,"value":267},{"type":44,"tag":100,"props":6822,"children":6823},{"class":102,"line":270},[6824],{"type":44,"tag":100,"props":6825,"children":6826},{"style":220},[6827],{"type":50,"value":5458},{"type":44,"tag":100,"props":6829,"children":6830},{"class":102,"line":279},[6831],{"type":44,"tag":100,"props":6832,"children":6833},{"style":220},[6834],{"type":50,"value":5466},{"type":44,"tag":100,"props":6836,"children":6837},{"class":102,"line":288},[6838],{"type":44,"tag":100,"props":6839,"children":6840},{"style":220},[6841],{"type":50,"value":276},{"type":44,"tag":100,"props":6843,"children":6844},{"class":102,"line":297},[6845],{"type":44,"tag":100,"props":6846,"children":6847},{"style":220},[6848],{"type":50,"value":285},{"type":44,"tag":100,"props":6850,"children":6851},{"class":102,"line":306},[6852],{"type":44,"tag":100,"props":6853,"children":6854},{"style":220},[6855],{"type":50,"value":5488},{"type":44,"tag":100,"props":6857,"children":6858},{"class":102,"line":315},[6859],{"type":44,"tag":100,"props":6860,"children":6861},{"style":220},[6862],{"type":50,"value":5225},{"type":44,"tag":100,"props":6864,"children":6865},{"class":102,"line":324},[6866],{"type":44,"tag":100,"props":6867,"children":6868},{"style":220},[6869],{"type":50,"value":312},{"type":44,"tag":100,"props":6871,"children":6872},{"class":102,"line":333},[6873],{"type":44,"tag":100,"props":6874,"children":6875},{"style":220},[6876],{"type":50,"value":321},{"type":44,"tag":100,"props":6878,"children":6879},{"class":102,"line":11},[6880],{"type":44,"tag":100,"props":6881,"children":6882},{"style":220},[6883],{"type":50,"value":374},{"type":44,"tag":100,"props":6885,"children":6886},{"class":102,"line":350},[6887],{"type":44,"tag":100,"props":6888,"children":6889},{"emptyLinePlaceholder":23},[6890],{"type":50,"value":383},{"type":44,"tag":100,"props":6892,"children":6893},{"class":102,"line":359},[6894,6898,6902,6906],{"type":44,"tag":100,"props":6895,"children":6896},{"style":390},[6897],{"type":50,"value":2387},{"type":44,"tag":100,"props":6899,"children":6900},{"style":400},[6901],{"type":50,"value":5535},{"type":44,"tag":100,"props":6903,"children":6904},{"style":390},[6905],{"type":50,"value":408},{"type":44,"tag":100,"props":6907,"children":6908},{"style":400},[6909],{"type":50,"value":2401},{"type":44,"tag":100,"props":6911,"children":6912},{"class":102,"line":368},[6913],{"type":44,"tag":100,"props":6914,"children":6915},{"style":390},[6916],{"type":50,"value":2409},{"type":44,"tag":100,"props":6918,"children":6919},{"class":102,"line":377},[6920],{"type":44,"tag":100,"props":6921,"children":6922},{"style":400},[6923],{"type":50,"value":5558},{"type":44,"tag":100,"props":6925,"children":6926},{"class":102,"line":386},[6927],{"type":44,"tag":100,"props":6928,"children":6929},{"style":400},[6930],{"type":50,"value":5566},{"type":44,"tag":100,"props":6932,"children":6933},{"class":102,"line":396},[6934,6938,6942,6946],{"type":44,"tag":100,"props":6935,"children":6936},{"style":113},[6937],{"type":50,"value":5574},{"type":44,"tag":100,"props":6939,"children":6940},{"style":400},[6941],{"type":50,"value":5579},{"type":44,"tag":100,"props":6943,"children":6944},{"style":390},[6945],{"type":50,"value":408},{"type":44,"tag":100,"props":6947,"children":6948},{"style":400},[6949],{"type":50,"value":5588},{"type":44,"tag":100,"props":6951,"children":6952},{"class":102,"line":416},[6953,6957,6961,6965],{"type":44,"tag":100,"props":6954,"children":6955},{"style":113},[6956],{"type":50,"value":5574},{"type":44,"tag":100,"props":6958,"children":6959},{"style":400},[6960],{"type":50,"value":5600},{"type":44,"tag":100,"props":6962,"children":6963},{"style":390},[6964],{"type":50,"value":408},{"type":44,"tag":100,"props":6966,"children":6967},{"style":400},[6968],{"type":50,"value":5609},{"type":44,"tag":100,"props":6970,"children":6971},{"class":102,"line":449},[6972,6976,6980,6984],{"type":44,"tag":100,"props":6973,"children":6974},{"style":113},[6975],{"type":50,"value":5574},{"type":44,"tag":100,"props":6977,"children":6978},{"style":400},[6979],{"type":50,"value":5621},{"type":44,"tag":100,"props":6981,"children":6982},{"style":390},[6983],{"type":50,"value":408},{"type":44,"tag":100,"props":6985,"children":6986},{"style":400},[6987],{"type":50,"value":5630},{"type":44,"tag":100,"props":6989,"children":6990},{"class":102,"line":481},[6991,6995,6999,7003],{"type":44,"tag":100,"props":6992,"children":6993},{"style":113},[6994],{"type":50,"value":5574},{"type":44,"tag":100,"props":6996,"children":6997},{"style":400},[6998],{"type":50,"value":5642},{"type":44,"tag":100,"props":7000,"children":7001},{"style":390},[7002],{"type":50,"value":408},{"type":44,"tag":100,"props":7004,"children":7005},{"style":400},[7006],{"type":50,"value":5651},{"type":44,"tag":100,"props":7008,"children":7009},{"class":102,"line":508},[7010,7014,7018,7022],{"type":44,"tag":100,"props":7011,"children":7012},{"style":390},[7013],{"type":50,"value":2524},{"type":44,"tag":100,"props":7015,"children":7016},{"style":113},[7017],{"type":50,"value":781},{"type":44,"tag":100,"props":7019,"children":7020},{"style":400},[7021],{"type":50,"value":786},{"type":44,"tag":100,"props":7023,"children":7024},{"style":113},[7025],{"type":50,"value":5671},{"type":44,"tag":100,"props":7027,"children":7028},{"class":102,"line":531},[7029,7033],{"type":44,"tag":100,"props":7030,"children":7031},{"style":390},[7032],{"type":50,"value":2725},{"type":44,"tag":100,"props":7034,"children":7035},{"style":400},[7036],{"type":50,"value":5683},{"type":44,"tag":100,"props":7038,"children":7039},{"class":102,"line":604},[7040],{"type":44,"tag":100,"props":7041,"children":7042},{"style":400},[7043],{"type":50,"value":2643},{"type":44,"tag":100,"props":7045,"children":7046},{"class":102,"line":626},[7047,7051,7055],{"type":44,"tag":100,"props":7048,"children":7049},{"style":400},[7050],{"type":50,"value":5698},{"type":44,"tag":100,"props":7052,"children":7053},{"style":390},[7054],{"type":50,"value":408},{"type":44,"tag":100,"props":7056,"children":7057},{"style":400},[7058],{"type":50,"value":2401},{"type":44,"tag":100,"props":7060,"children":7061},{"class":102,"line":648},[7062],{"type":44,"tag":100,"props":7063,"children":7064},{"style":390},[7065],{"type":50,"value":2409},{"type":44,"tag":100,"props":7067,"children":7068},{"class":102,"line":705},[7069],{"type":44,"tag":100,"props":7070,"children":7071},{"style":400},[7072],{"type":50,"value":5721},{"type":44,"tag":100,"props":7074,"children":7075},{"class":102,"line":770},[7076],{"type":44,"tag":100,"props":7077,"children":7078},{"style":400},[7079],{"type":50,"value":5566},{"type":44,"tag":100,"props":7081,"children":7082},{"class":102,"line":794},[7083,7087,7091,7095,7099],{"type":44,"tag":100,"props":7084,"children":7085},{"style":113},[7086],{"type":50,"value":5574},{"type":44,"tag":100,"props":7088,"children":7089},{"style":400},[7090],{"type":50,"value":5740},{"type":44,"tag":100,"props":7092,"children":7093},{"style":390},[7094],{"type":50,"value":408},{"type":44,"tag":100,"props":7096,"children":7097},{"style":390},[7098],{"type":50,"value":5749},{"type":44,"tag":100,"props":7100,"children":7101},{"style":400},[7102],{"type":50,"value":2431},{"type":44,"tag":100,"props":7104,"children":7105},{"class":102,"line":808},[7106,7110,7114,7118],{"type":44,"tag":100,"props":7107,"children":7108},{"style":113},[7109],{"type":50,"value":5574},{"type":44,"tag":100,"props":7111,"children":7112},{"style":400},[7113],{"type":50,"value":5765},{"type":44,"tag":100,"props":7115,"children":7116},{"style":390},[7117],{"type":50,"value":408},{"type":44,"tag":100,"props":7119,"children":7120},{"style":400},[7121],{"type":50,"value":5774},{"type":44,"tag":100,"props":7123,"children":7124},{"class":102,"line":1484},[7125,7129,7133,7137],{"type":44,"tag":100,"props":7126,"children":7127},{"style":113},[7128],{"type":50,"value":5574},{"type":44,"tag":100,"props":7130,"children":7131},{"style":400},[7132],{"type":50,"value":5786},{"type":44,"tag":100,"props":7134,"children":7135},{"style":390},[7136],{"type":50,"value":408},{"type":44,"tag":100,"props":7138,"children":7139},{"style":400},[7140],{"type":50,"value":5795},{"type":44,"tag":100,"props":7142,"children":7143},{"class":102,"line":2747},[7144,7148,7152,7156],{"type":44,"tag":100,"props":7145,"children":7146},{"style":390},[7147],{"type":50,"value":2524},{"type":44,"tag":100,"props":7149,"children":7150},{"style":113},[7151],{"type":50,"value":781},{"type":44,"tag":100,"props":7153,"children":7154},{"style":400},[7155],{"type":50,"value":786},{"type":44,"tag":100,"props":7157,"children":7158},{"style":113},[7159],{"type":50,"value":5815},{"type":44,"tag":100,"props":7161,"children":7162},{"class":102,"line":2769},[7163,7167],{"type":44,"tag":100,"props":7164,"children":7165},{"style":390},[7166],{"type":50,"value":2725},{"type":44,"tag":100,"props":7168,"children":7169},{"style":400},[7170],{"type":50,"value":5827},{"type":44,"tag":100,"props":7172,"children":7173},{"class":102,"line":2791},[7174],{"type":44,"tag":100,"props":7175,"children":7176},{"style":400},[7177],{"type":50,"value":2643},{"type":44,"tag":100,"props":7179,"children":7180},{"class":102,"line":2856},[7181,7185,7189],{"type":44,"tag":100,"props":7182,"children":7183},{"style":400},[7184],{"type":50,"value":5842},{"type":44,"tag":100,"props":7186,"children":7187},{"style":390},[7188],{"type":50,"value":408},{"type":44,"tag":100,"props":7190,"children":7191},{"style":400},[7192],{"type":50,"value":2401},{"type":44,"tag":100,"props":7194,"children":7195},{"class":102,"line":2898},[7196],{"type":44,"tag":100,"props":7197,"children":7198},{"style":390},[7199],{"type":50,"value":2409},{"type":44,"tag":100,"props":7201,"children":7202},{"class":102,"line":2977},[7203,7208,7212,7216],{"type":44,"tag":100,"props":7204,"children":7205},{"style":390},[7206],{"type":50,"value":7207},"        DATE",{"type":44,"tag":100,"props":7209,"children":7210},{"style":400},[7211],{"type":50,"value":982},{"type":44,"tag":100,"props":7213,"children":7214},{"style":390},[7215],{"type":50,"value":408},{"type":44,"tag":100,"props":7217,"children":7218},{"style":400},[7219],{"type":50,"value":413},{"type":44,"tag":100,"props":7221,"children":7222},{"class":102,"line":3015},[7223,7227,7231,7235],{"type":44,"tag":100,"props":7224,"children":7225},{"style":113},[7226],{"type":50,"value":5881},{"type":44,"tag":100,"props":7228,"children":7229},{"style":400},[7230],{"type":50,"value":786},{"type":44,"tag":100,"props":7232,"children":7233},{"style":113},[7234],{"type":50,"value":5890},{"type":44,"tag":100,"props":7236,"children":7237},{"style":400},[7238],{"type":50,"value":2431},{"type":44,"tag":100,"props":7240,"children":7241},{"class":102,"line":3081},[7242,7246,7250,7254,7258,7262,7266,7270],{"type":44,"tag":100,"props":7243,"children":7244},{"style":113},[7245],{"type":50,"value":5574},{"type":44,"tag":100,"props":7247,"children":7248},{"style":400},[7249],{"type":50,"value":427},{"type":44,"tag":100,"props":7251,"children":7252},{"style":113},[7253],{"type":50,"value":2478},{"type":44,"tag":100,"props":7255,"children":7256},{"style":400},[7257],{"type":50,"value":786},{"type":44,"tag":100,"props":7259,"children":7260},{"style":113},[7261],{"type":50,"value":2999},{"type":44,"tag":100,"props":7263,"children":7264},{"style":400},[7265],{"type":50,"value":437},{"type":44,"tag":100,"props":7267,"children":7268},{"style":390},[7269],{"type":50,"value":408},{"type":44,"tag":100,"props":7271,"children":7272},{"style":400},[7273],{"type":50,"value":5930},{"type":44,"tag":100,"props":7275,"children":7276},{"class":102,"line":3094},[7277,7281,7285,7289,7293],{"type":44,"tag":100,"props":7278,"children":7279},{"style":390},[7280],{"type":50,"value":2524},{"type":44,"tag":100,"props":7282,"children":7283},{"style":113},[7284],{"type":50,"value":781},{"type":44,"tag":100,"props":7286,"children":7287},{"style":400},[7288],{"type":50,"value":786},{"type":44,"tag":100,"props":7290,"children":7291},{"style":113},[7292],{"type":50,"value":1408},{"type":44,"tag":100,"props":7294,"children":7295},{"style":400},[7296],{"type":50,"value":1413},{"type":44,"tag":100,"props":7298,"children":7299},{"class":102,"line":3108},[7300,7304,7308,7312,7316],{"type":44,"tag":100,"props":7301,"children":7302},{"style":390},[7303],{"type":50,"value":2548},{"type":44,"tag":100,"props":7305,"children":7306},{"style":113},[7307],{"type":50,"value":781},{"type":44,"tag":100,"props":7309,"children":7310},{"style":400},[7311],{"type":50,"value":786},{"type":44,"tag":100,"props":7313,"children":7314},{"style":113},[7315],{"type":50,"value":5973},{"type":44,"tag":100,"props":7317,"children":7318},{"style":400},[7319],{"type":50,"value":5978},{"type":44,"tag":100,"props":7321,"children":7322},{"class":102,"line":3147},[7323,7327,7331,7335,7339,7343,7347,7351,7355,7359,7363],{"type":44,"tag":100,"props":7324,"children":7325},{"style":390},[7326],{"type":50,"value":2574},{"type":44,"tag":100,"props":7328,"children":7329},{"style":390},[7330],{"type":50,"value":1476},{"type":44,"tag":100,"props":7332,"children":7333},{"style":400},[7334],{"type":50,"value":427},{"type":44,"tag":100,"props":7336,"children":7337},{"style":113},[7338],{"type":50,"value":2478},{"type":44,"tag":100,"props":7340,"children":7341},{"style":400},[7342],{"type":50,"value":786},{"type":44,"tag":100,"props":7344,"children":7345},{"style":113},[7346],{"type":50,"value":2487},{"type":44,"tag":100,"props":7348,"children":7349},{"style":400},[7350],{"type":50,"value":437},{"type":44,"tag":100,"props":7352,"children":7353},{"style":390},[7354],{"type":50,"value":460},{"type":44,"tag":100,"props":7356,"children":7357},{"style":113},[7358],{"type":50,"value":6015},{"type":44,"tag":100,"props":7360,"children":7361},{"style":400},[7362],{"type":50,"value":786},{"type":44,"tag":100,"props":7364,"children":7365},{"style":113},[7366],{"type":50,"value":6024},{"type":44,"tag":100,"props":7368,"children":7369},{"class":102,"line":3188},[7370,7374,7378,7382,7386,7390],{"type":44,"tag":100,"props":7371,"children":7372},{"style":390},[7373],{"type":50,"value":2613},{"type":44,"tag":100,"props":7375,"children":7376},{"style":113},[7377],{"type":50,"value":1426},{"type":44,"tag":100,"props":7379,"children":7380},{"style":400},[7381],{"type":50,"value":786},{"type":44,"tag":100,"props":7383,"children":7384},{"style":113},[7385],{"type":50,"value":2626},{"type":44,"tag":100,"props":7387,"children":7388},{"style":390},[7389],{"type":50,"value":2591},{"type":44,"tag":100,"props":7391,"children":7392},{"style":119},[7393],{"type":50,"value":2635},{"type":44,"tag":100,"props":7395,"children":7396},{"class":102,"line":6054},[7397,7401,7405,7410,7414,7418],{"type":44,"tag":100,"props":7398,"children":7399},{"style":390},[7400],{"type":50,"value":2725},{"type":44,"tag":100,"props":7402,"children":7403},{"style":390},[7404],{"type":50,"value":1476},{"type":44,"tag":100,"props":7406,"children":7407},{"style":400},[7408],{"type":50,"value":7409},"(order_date), ",{"type":44,"tag":100,"props":7411,"children":7412},{"style":113},[7413],{"type":50,"value":6069},{"type":44,"tag":100,"props":7415,"children":7416},{"style":400},[7417],{"type":50,"value":786},{"type":44,"tag":100,"props":7419,"children":7420},{"style":113},[7421],{"type":50,"value":6078},{"type":44,"tag":100,"props":7423,"children":7424},{"class":102,"line":6081},[7425],{"type":44,"tag":100,"props":7426,"children":7427},{"style":400},[7428],{"type":50,"value":1464},{"type":44,"tag":100,"props":7430,"children":7431},{"class":102,"line":6089},[7432],{"type":44,"tag":100,"props":7433,"children":7434},{"style":390},[7435],{"type":50,"value":393},{"type":44,"tag":100,"props":7437,"children":7438},{"class":102,"line":6097},[7439,7443,7447,7451,7455],{"type":44,"tag":100,"props":7440,"children":7441},{"style":113},[7442],{"type":50,"value":2775},{"type":44,"tag":100,"props":7444,"children":7445},{"style":400},[7446],{"type":50,"value":786},{"type":44,"tag":100,"props":7448,"children":7449},{"style":113},[7450],{"type":50,"value":6111},{"type":44,"tag":100,"props":7452,"children":7453},{"style":390},[7454],{"type":50,"value":1661},{"type":44,"tag":100,"props":7456,"children":7457},{"style":400},[7458],{"type":50,"value":6120},{"type":44,"tag":100,"props":7460,"children":7461},{"class":102,"line":6123},[7462,7466,7470,7474],{"type":44,"tag":100,"props":7463,"children":7464},{"style":113},[7465],{"type":50,"value":2775},{"type":44,"tag":100,"props":7467,"children":7468},{"style":400},[7469],{"type":50,"value":786},{"type":44,"tag":100,"props":7471,"children":7472},{"style":113},[7473],{"type":50,"value":5890},{"type":44,"tag":100,"props":7475,"children":7476},{"style":400},[7477],{"type":50,"value":2431},{"type":44,"tag":100,"props":7479,"children":7480},{"class":102,"line":6143},[7481,7485,7489,7493],{"type":44,"tag":100,"props":7482,"children":7483},{"style":113},[7484],{"type":50,"value":2775},{"type":44,"tag":100,"props":7486,"children":7487},{"style":400},[7488],{"type":50,"value":786},{"type":44,"tag":100,"props":7490,"children":7491},{"style":113},[7492],{"type":50,"value":6157},{"type":44,"tag":100,"props":7494,"children":7495},{"style":400},[7496],{"type":50,"value":2431},{"type":44,"tag":100,"props":7498,"children":7499},{"class":102,"line":6164},[7500,7504,7508,7512],{"type":44,"tag":100,"props":7501,"children":7502},{"style":113},[7503],{"type":50,"value":2775},{"type":44,"tag":100,"props":7505,"children":7506},{"style":400},[7507],{"type":50,"value":786},{"type":44,"tag":100,"props":7509,"children":7510},{"style":113},[7511],{"type":50,"value":6178},{"type":44,"tag":100,"props":7513,"children":7514},{"style":400},[7515],{"type":50,"value":2431},{"type":44,"tag":100,"props":7517,"children":7518},{"class":102,"line":6185},[7519,7523,7527,7531],{"type":44,"tag":100,"props":7520,"children":7521},{"style":113},[7522],{"type":50,"value":2775},{"type":44,"tag":100,"props":7524,"children":7525},{"style":400},[7526],{"type":50,"value":786},{"type":44,"tag":100,"props":7528,"children":7529},{"style":113},[7530],{"type":50,"value":6199},{"type":44,"tag":100,"props":7532,"children":7533},{"style":400},[7534],{"type":50,"value":2431},{"type":44,"tag":100,"props":7536,"children":7537},{"class":102,"line":6206},[7538,7542,7546,7550],{"type":44,"tag":100,"props":7539,"children":7540},{"style":113},[7541],{"type":50,"value":2775},{"type":44,"tag":100,"props":7543,"children":7544},{"style":400},[7545],{"type":50,"value":786},{"type":44,"tag":100,"props":7547,"children":7548},{"style":113},[7549],{"type":50,"value":6220},{"type":44,"tag":100,"props":7551,"children":7552},{"style":400},[7553],{"type":50,"value":2431},{"type":44,"tag":100,"props":7555,"children":7556},{"class":102,"line":6227},[7557,7561,7565,7569],{"type":44,"tag":100,"props":7558,"children":7559},{"style":113},[7560],{"type":50,"value":6233},{"type":44,"tag":100,"props":7562,"children":7563},{"style":400},[7564],{"type":50,"value":786},{"type":44,"tag":100,"props":7566,"children":7567},{"style":113},[7568],{"type":50,"value":6242},{"type":44,"tag":100,"props":7570,"children":7571},{"style":400},[7572],{"type":50,"value":2431},{"type":44,"tag":100,"props":7574,"children":7575},{"class":102,"line":6249},[7576,7580,7584,7588],{"type":44,"tag":100,"props":7577,"children":7578},{"style":113},[7579],{"type":50,"value":6233},{"type":44,"tag":100,"props":7581,"children":7582},{"style":400},[7583],{"type":50,"value":786},{"type":44,"tag":100,"props":7585,"children":7586},{"style":113},[7587],{"type":50,"value":6263},{"type":44,"tag":100,"props":7589,"children":7590},{"style":400},[7591],{"type":50,"value":2431},{"type":44,"tag":100,"props":7593,"children":7594},{"class":102,"line":6270},[7595,7599,7603,7607],{"type":44,"tag":100,"props":7596,"children":7597},{"style":113},[7598],{"type":50,"value":6276},{"type":44,"tag":100,"props":7600,"children":7601},{"style":400},[7602],{"type":50,"value":786},{"type":44,"tag":100,"props":7604,"children":7605},{"style":113},[7606],{"type":50,"value":6285},{"type":44,"tag":100,"props":7608,"children":7609},{"style":400},[7610],{"type":50,"value":2431},{"type":44,"tag":100,"props":7612,"children":7613},{"class":102,"line":6292},[7614,7618,7622,7626,7630,7634,7638,7642,7646,7650,7654,7658,7662,7666,7670,7674,7678,7682],{"type":44,"tag":100,"props":7615,"children":7616},{"style":113},[7617],{"type":50,"value":654},{"type":44,"tag":100,"props":7619,"children":7620},{"style":400},[7621],{"type":50,"value":427},{"type":44,"tag":100,"props":7623,"children":7624},{"style":113},[7625],{"type":50,"value":6306},{"type":44,"tag":100,"props":7627,"children":7628},{"style":400},[7629],{"type":50,"value":786},{"type":44,"tag":100,"props":7631,"children":7632},{"style":113},[7633],{"type":50,"value":6285},{"type":44,"tag":100,"props":7635,"children":7636},{"style":390},[7637],{"type":50,"value":6319},{"type":44,"tag":100,"props":7639,"children":7640},{"style":113},[7641],{"type":50,"value":1262},{"type":44,"tag":100,"props":7643,"children":7644},{"style":400},[7645],{"type":50,"value":427},{"type":44,"tag":100,"props":7647,"children":7648},{"style":113},[7649],{"type":50,"value":2925},{"type":44,"tag":100,"props":7651,"children":7652},{"style":400},[7653],{"type":50,"value":786},{"type":44,"tag":100,"props":7655,"children":7656},{"style":113},[7657],{"type":50,"value":6157},{"type":44,"tag":100,"props":7659,"children":7660},{"style":400},[7661],{"type":50,"value":750},{"type":44,"tag":100,"props":7663,"children":7664},{"style":113},[7665],{"type":50,"value":679},{"type":44,"tag":100,"props":7667,"children":7668},{"style":400},[7669],{"type":50,"value":684},{"type":44,"tag":100,"props":7671,"children":7672},{"style":113},[7673],{"type":50,"value":689},{"type":44,"tag":100,"props":7675,"children":7676},{"style":400},[7677],{"type":50,"value":437},{"type":44,"tag":100,"props":7679,"children":7680},{"style":390},[7681],{"type":50,"value":408},{"type":44,"tag":100,"props":7683,"children":7684},{"style":400},[7685],{"type":50,"value":6368},{"type":44,"tag":100,"props":7687,"children":7688},{"class":102,"line":6371},[7689,7693,7697,7701,7705,7709,7713,7717,7721,7725,7729,7733,7737,7741,7745,7749,7753,7757],{"type":44,"tag":100,"props":7690,"children":7691},{"style":113},[7692],{"type":50,"value":654},{"type":44,"tag":100,"props":7694,"children":7695},{"style":400},[7696],{"type":50,"value":427},{"type":44,"tag":100,"props":7698,"children":7699},{"style":113},[7700],{"type":50,"value":2925},{"type":44,"tag":100,"props":7702,"children":7703},{"style":400},[7704],{"type":50,"value":786},{"type":44,"tag":100,"props":7706,"children":7707},{"style":113},[7708],{"type":50,"value":6157},{"type":44,"tag":100,"props":7710,"children":7711},{"style":390},[7712],{"type":50,"value":6319},{"type":44,"tag":100,"props":7714,"children":7715},{"style":113},[7716],{"type":50,"value":1262},{"type":44,"tag":100,"props":7718,"children":7719},{"style":400},[7720],{"type":50,"value":427},{"type":44,"tag":100,"props":7722,"children":7723},{"style":113},[7724],{"type":50,"value":2925},{"type":44,"tag":100,"props":7726,"children":7727},{"style":400},[7728],{"type":50,"value":786},{"type":44,"tag":100,"props":7730,"children":7731},{"style":113},[7732],{"type":50,"value":6220},{"type":44,"tag":100,"props":7734,"children":7735},{"style":400},[7736],{"type":50,"value":750},{"type":44,"tag":100,"props":7738,"children":7739},{"style":113},[7740],{"type":50,"value":679},{"type":44,"tag":100,"props":7742,"children":7743},{"style":400},[7744],{"type":50,"value":684},{"type":44,"tag":100,"props":7746,"children":7747},{"style":113},[7748],{"type":50,"value":689},{"type":44,"tag":100,"props":7750,"children":7751},{"style":400},[7752],{"type":50,"value":437},{"type":44,"tag":100,"props":7754,"children":7755},{"style":390},[7756],{"type":50,"value":408},{"type":44,"tag":100,"props":7758,"children":7759},{"style":400},[7760],{"type":50,"value":6445},{"type":44,"tag":100,"props":7762,"children":7763},{"class":102,"line":6448},[7764,7768,7772,7776,7780,7784,7788,7792,7796,7800,7804,7808,7812,7816,7820,7824,7828,7832,7836,7840,7844],{"type":44,"tag":100,"props":7765,"children":7766},{"style":113},[7767],{"type":50,"value":654},{"type":44,"tag":100,"props":7769,"children":7770},{"style":400},[7771],{"type":50,"value":427},{"type":44,"tag":100,"props":7773,"children":7774},{"style":113},[7775],{"type":50,"value":2925},{"type":44,"tag":100,"props":7777,"children":7778},{"style":400},[7779],{"type":50,"value":786},{"type":44,"tag":100,"props":7781,"children":7782},{"style":113},[7783],{"type":50,"value":6199},{"type":44,"tag":100,"props":7785,"children":7786},{"style":390},[7787],{"type":50,"value":6319},{"type":44,"tag":100,"props":7789,"children":7790},{"style":113},[7791],{"type":50,"value":1262},{"type":44,"tag":100,"props":7793,"children":7794},{"style":400},[7795],{"type":50,"value":427},{"type":44,"tag":100,"props":7797,"children":7798},{"style":113},[7799],{"type":50,"value":2925},{"type":44,"tag":100,"props":7801,"children":7802},{"style":400},[7803],{"type":50,"value":786},{"type":44,"tag":100,"props":7805,"children":7806},{"style":113},[7807],{"type":50,"value":6178},{"type":44,"tag":100,"props":7809,"children":7810},{"style":400},[7811],{"type":50,"value":750},{"type":44,"tag":100,"props":7813,"children":7814},{"style":113},[7815],{"type":50,"value":679},{"type":44,"tag":100,"props":7817,"children":7818},{"style":400},[7819],{"type":50,"value":437},{"type":44,"tag":100,"props":7821,"children":7822},{"style":390},[7823],{"type":50,"value":432},{"type":44,"tag":100,"props":7825,"children":7826},{"style":113},[7827],{"type":50,"value":745},{"type":44,"tag":100,"props":7829,"children":7830},{"style":400},[7831],{"type":50,"value":750},{"type":44,"tag":100,"props":7833,"children":7834},{"style":113},[7835],{"type":50,"value":689},{"type":44,"tag":100,"props":7837,"children":7838},{"style":400},[7839],{"type":50,"value":437},{"type":44,"tag":100,"props":7841,"children":7842},{"style":390},[7843],{"type":50,"value":408},{"type":44,"tag":100,"props":7845,"children":7846},{"style":400},[7847],{"type":50,"value":6534},{"type":44,"tag":100,"props":7849,"children":7850},{"class":102,"line":6537},[7851,7855],{"type":44,"tag":100,"props":7852,"children":7853},{"style":390},[7854],{"type":50,"value":776},{"type":44,"tag":100,"props":7856,"children":7857},{"style":400},[7858],{"type":50,"value":6547},{"type":44,"tag":100,"props":7860,"children":7861},{"class":102,"line":6550},[7862,7866],{"type":44,"tag":100,"props":7863,"children":7864},{"style":390},[7865],{"type":50,"value":6556},{"type":44,"tag":100,"props":7867,"children":7868},{"style":400},[7869],{"type":50,"value":6561},{"type":44,"tag":100,"props":7871,"children":7872},{"class":102,"line":6564},[7873,7877,7881,7885,7889,7893,7897,7901],{"type":44,"tag":100,"props":7874,"children":7875},{"style":390},[7876],{"type":50,"value":3114},{"type":44,"tag":100,"props":7878,"children":7879},{"style":113},[7880],{"type":50,"value":3135},{"type":44,"tag":100,"props":7882,"children":7883},{"style":400},[7884],{"type":50,"value":786},{"type":44,"tag":100,"props":7886,"children":7887},{"style":113},[7888],{"type":50,"value":6111},{"type":44,"tag":100,"props":7890,"children":7891},{"style":390},[7892],{"type":50,"value":2591},{"type":44,"tag":100,"props":7894,"children":7895},{"style":113},[7896],{"type":50,"value":6590},{"type":44,"tag":100,"props":7898,"children":7899},{"style":400},[7900],{"type":50,"value":786},{"type":44,"tag":100,"props":7902,"children":7903},{"style":113},[7904],{"type":50,"value":6024},{"type":44,"tag":100,"props":7906,"children":7907},{"class":102,"line":6601},[7908,7912,7916,7920,7924,7928,7932,7936],{"type":44,"tag":100,"props":7909,"children":7910},{"style":390},[7911],{"type":50,"value":6607},{"type":44,"tag":100,"props":7913,"children":7914},{"style":113},[7915],{"type":50,"value":3135},{"type":44,"tag":100,"props":7917,"children":7918},{"style":400},[7919],{"type":50,"value":786},{"type":44,"tag":100,"props":7921,"children":7922},{"style":113},[7923],{"type":50,"value":5890},{"type":44,"tag":100,"props":7925,"children":7926},{"style":390},[7927],{"type":50,"value":2591},{"type":44,"tag":100,"props":7929,"children":7930},{"style":113},[7931],{"type":50,"value":6590},{"type":44,"tag":100,"props":7933,"children":7934},{"style":400},[7935],{"type":50,"value":786},{"type":44,"tag":100,"props":7937,"children":7938},{"style":113},[7939],{"type":50,"value":6078},{"type":44,"tag":100,"props":7941,"children":7942},{"class":102,"line":6638},[7943,7947],{"type":44,"tag":100,"props":7944,"children":7945},{"style":390},[7946],{"type":50,"value":6556},{"type":44,"tag":100,"props":7948,"children":7949},{"style":400},[7950],{"type":50,"value":6648},{"type":44,"tag":100,"props":7952,"children":7953},{"class":102,"line":6651},[7954,7958,7962,7966,7970,7974,7978,7982],{"type":44,"tag":100,"props":7955,"children":7956},{"style":390},[7957],{"type":50,"value":3114},{"type":44,"tag":100,"props":7959,"children":7960},{"style":113},[7961],{"type":50,"value":3135},{"type":44,"tag":100,"props":7963,"children":7964},{"style":400},[7965],{"type":50,"value":786},{"type":44,"tag":100,"props":7967,"children":7968},{"style":113},[7969],{"type":50,"value":6111},{"type":44,"tag":100,"props":7971,"children":7972},{"style":390},[7973],{"type":50,"value":2591},{"type":44,"tag":100,"props":7975,"children":7976},{"style":113},[7977],{"type":50,"value":6677},{"type":44,"tag":100,"props":7979,"children":7980},{"style":400},[7981],{"type":50,"value":786},{"type":44,"tag":100,"props":7983,"children":7984},{"style":113},[7985],{"type":50,"value":6686},{"type":44,"tag":100,"props":7987,"children":7988},{"class":102,"line":6689},[7989,7993,7997,8001,8005,8009,8013,8017],{"type":44,"tag":100,"props":7990,"children":7991},{"style":390},[7992],{"type":50,"value":6607},{"type":44,"tag":100,"props":7994,"children":7995},{"style":113},[7996],{"type":50,"value":3135},{"type":44,"tag":100,"props":7998,"children":7999},{"style":400},[8000],{"type":50,"value":786},{"type":44,"tag":100,"props":8002,"children":8003},{"style":113},[8004],{"type":50,"value":5890},{"type":44,"tag":100,"props":8006,"children":8007},{"style":390},[8008],{"type":50,"value":2591},{"type":44,"tag":100,"props":8010,"children":8011},{"style":113},[8012],{"type":50,"value":6677},{"type":44,"tag":100,"props":8014,"children":8015},{"style":400},[8016],{"type":50,"value":786},{"type":44,"tag":100,"props":8018,"children":8019},{"style":113},[8020],{"type":50,"value":6078},{"type":44,"tag":100,"props":8022,"children":8023},{"class":102,"line":6725},[8024,8028,8032,8036,8040,8044,8048,8052,8056,8060],{"type":44,"tag":100,"props":8025,"children":8026},{"style":390},[8027],{"type":50,"value":814},{"type":44,"tag":100,"props":8029,"children":8030},{"style":113},[8031],{"type":50,"value":3135},{"type":44,"tag":100,"props":8033,"children":8034},{"style":400},[8035],{"type":50,"value":786},{"type":44,"tag":100,"props":8037,"children":8038},{"style":113},[8039],{"type":50,"value":6111},{"type":44,"tag":100,"props":8041,"children":8042},{"style":390},[8043],{"type":50,"value":6747},{"type":44,"tag":100,"props":8045,"children":8046},{"style":400},[8047],{"type":50,"value":750},{"type":44,"tag":100,"props":8049,"children":8050},{"style":113},[8051],{"type":50,"value":2925},{"type":44,"tag":100,"props":8053,"children":8054},{"style":400},[8055],{"type":50,"value":786},{"type":44,"tag":100,"props":8057,"children":8058},{"style":113},[8059],{"type":50,"value":6157},{"type":44,"tag":100,"props":8061,"children":8062},{"style":390},[8063],{"type":50,"value":6768},{"type":44,"tag":203,"props":8065,"children":8066},{"v-slot:snowflake":7},[8067],{"type":44,"tag":90,"props":8068,"children":8070},{"className":208,"code":8069,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_marketing_roi\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - staging.stg_marketing_spend\n  - staging.stg_web_sessions\n  - staging.stg_orders\ncolumns:\n  - name: channel\n    type: varchar\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nWITH channel_spend AS (\n    SELECT\n        spend_date,\n        channel,\n        sum(spend) AS total_spend,\n        sum(impressions) AS total_impressions,\n        sum(clicks) AS total_clicks,\n        sum(conversions) AS total_conversions\n    FROM staging.stg_marketing_spend\n    GROUP BY spend_date, channel\n),\nchannel_sessions AS (\n    SELECT\n        session_date,\n        channel,\n        sum(total_sessions) AS sessions,\n        sum(new_users) AS new_users,\n        sum(purchase_events) AS purchases\n    FROM staging.stg_web_sessions\n    GROUP BY session_date, channel\n),\nchannel_revenue AS (\n    SELECT\n        order_date::DATE AS order_date,\n        ws.channel,\n        sum(o.order_total) AS attributed_revenue\n    FROM staging.stg_orders o\n    INNER JOIN staging.stg_web_sessions ws\n        ON order_date::DATE = ws.session_date\n    WHERE o.payment_status = 'paid'\n    GROUP BY order_date::DATE, ws.channel\n)\nSELECT\n    cs.spend_date AS report_date,\n    cs.channel,\n    cs.total_spend,\n    cs.total_impressions,\n    cs.total_clicks,\n    cs.total_conversions,\n    sess.sessions,\n    sess.new_users,\n    cr.attributed_revenue,\n    round(cr.attributed_revenue \u002F NULLIF(cs.total_spend, 0), 2) AS roas,\n    round(cs.total_spend \u002F NULLIF(cs.total_conversions, 0), 2) AS cost_per_acquisition,\n    round(cs.total_clicks \u002F NULLIF(cs.total_impressions, 0) * 100, 2) AS click_through_rate\nFROM channel_spend cs\nLEFT JOIN channel_sessions sess\n    ON cs.spend_date = sess.session_date\n    AND cs.channel = sess.channel\nLEFT JOIN channel_revenue cr\n    ON cs.spend_date = cr.order_date\n    AND cs.channel = cr.channel\nORDER BY cs.spend_date DESC, cs.total_spend DESC\n",[8071],{"type":44,"tag":81,"props":8072,"children":8073},{"__ignoreMap":7},[8074,8081,8088,8095,8102,8109,8116,8123,8130,8137,8144,8151,8158,8165,8172,8179,8186,8205,8212,8219,8226,8245,8264,8283,8302,8321,8332,8339,8354,8361,8368,8375,8398,8417,8436,8455,8466,8473,8488,8495,8515,8534,8569,8592,8615,8646,8673,8704,8711,8718,8741,8760,8779,8798,8817,8836,8855,8874,8893,8968,9043,9130,9141,9152,9187,9222,9233,9268,9303],{"type":44,"tag":100,"props":8075,"children":8076},{"class":102,"line":103},[8077],{"type":44,"tag":100,"props":8078,"children":8079},{"style":220},[8080],{"type":50,"value":223},{"type":44,"tag":100,"props":8082,"children":8083},{"class":102,"line":226},[8084],{"type":44,"tag":100,"props":8085,"children":8086},{"style":220},[8087],{"type":50,"value":5422},{"type":44,"tag":100,"props":8089,"children":8090},{"class":102,"line":235},[8091],{"type":44,"tag":100,"props":8092,"children":8093},{"style":220},[8094],{"type":50,"value":241},{"type":44,"tag":100,"props":8096,"children":8097},{"class":102,"line":24},[8098],{"type":44,"tag":100,"props":8099,"children":8100},{"style":220},[8101],{"type":50,"value":249},{"type":44,"tag":100,"props":8103,"children":8104},{"class":102,"line":252},[8105],{"type":44,"tag":100,"props":8106,"children":8107},{"style":220},[8108],{"type":50,"value":258},{"type":44,"tag":100,"props":8110,"children":8111},{"class":102,"line":261},[8112],{"type":44,"tag":100,"props":8113,"children":8114},{"style":220},[8115],{"type":50,"value":267},{"type":44,"tag":100,"props":8117,"children":8118},{"class":102,"line":270},[8119],{"type":44,"tag":100,"props":8120,"children":8121},{"style":220},[8122],{"type":50,"value":5458},{"type":44,"tag":100,"props":8124,"children":8125},{"class":102,"line":279},[8126],{"type":44,"tag":100,"props":8127,"children":8128},{"style":220},[8129],{"type":50,"value":5466},{"type":44,"tag":100,"props":8131,"children":8132},{"class":102,"line":288},[8133],{"type":44,"tag":100,"props":8134,"children":8135},{"style":220},[8136],{"type":50,"value":276},{"type":44,"tag":100,"props":8138,"children":8139},{"class":102,"line":297},[8140],{"type":44,"tag":100,"props":8141,"children":8142},{"style":220},[8143],{"type":50,"value":285},{"type":44,"tag":100,"props":8145,"children":8146},{"class":102,"line":306},[8147],{"type":44,"tag":100,"props":8148,"children":8149},{"style":220},[8150],{"type":50,"value":5488},{"type":44,"tag":100,"props":8152,"children":8153},{"class":102,"line":315},[8154],{"type":44,"tag":100,"props":8155,"children":8156},{"style":220},[8157],{"type":50,"value":5225},{"type":44,"tag":100,"props":8159,"children":8160},{"class":102,"line":324},[8161],{"type":44,"tag":100,"props":8162,"children":8163},{"style":220},[8164],{"type":50,"value":312},{"type":44,"tag":100,"props":8166,"children":8167},{"class":102,"line":333},[8168],{"type":44,"tag":100,"props":8169,"children":8170},{"style":220},[8171],{"type":50,"value":321},{"type":44,"tag":100,"props":8173,"children":8174},{"class":102,"line":11},[8175],{"type":44,"tag":100,"props":8176,"children":8177},{"style":220},[8178],{"type":50,"value":374},{"type":44,"tag":100,"props":8180,"children":8181},{"class":102,"line":350},[8182],{"type":44,"tag":100,"props":8183,"children":8184},{"emptyLinePlaceholder":23},[8185],{"type":50,"value":383},{"type":44,"tag":100,"props":8187,"children":8188},{"class":102,"line":359},[8189,8193,8197,8201],{"type":44,"tag":100,"props":8190,"children":8191},{"style":390},[8192],{"type":50,"value":2387},{"type":44,"tag":100,"props":8194,"children":8195},{"style":400},[8196],{"type":50,"value":5535},{"type":44,"tag":100,"props":8198,"children":8199},{"style":390},[8200],{"type":50,"value":408},{"type":44,"tag":100,"props":8202,"children":8203},{"style":400},[8204],{"type":50,"value":2401},{"type":44,"tag":100,"props":8206,"children":8207},{"class":102,"line":368},[8208],{"type":44,"tag":100,"props":8209,"children":8210},{"style":390},[8211],{"type":50,"value":2409},{"type":44,"tag":100,"props":8213,"children":8214},{"class":102,"line":377},[8215],{"type":44,"tag":100,"props":8216,"children":8217},{"style":400},[8218],{"type":50,"value":5558},{"type":44,"tag":100,"props":8220,"children":8221},{"class":102,"line":386},[8222],{"type":44,"tag":100,"props":8223,"children":8224},{"style":400},[8225],{"type":50,"value":5566},{"type":44,"tag":100,"props":8227,"children":8228},{"class":102,"line":396},[8229,8233,8237,8241],{"type":44,"tag":100,"props":8230,"children":8231},{"style":113},[8232],{"type":50,"value":5574},{"type":44,"tag":100,"props":8234,"children":8235},{"style":400},[8236],{"type":50,"value":5579},{"type":44,"tag":100,"props":8238,"children":8239},{"style":390},[8240],{"type":50,"value":408},{"type":44,"tag":100,"props":8242,"children":8243},{"style":400},[8244],{"type":50,"value":5588},{"type":44,"tag":100,"props":8246,"children":8247},{"class":102,"line":416},[8248,8252,8256,8260],{"type":44,"tag":100,"props":8249,"children":8250},{"style":113},[8251],{"type":50,"value":5574},{"type":44,"tag":100,"props":8253,"children":8254},{"style":400},[8255],{"type":50,"value":5600},{"type":44,"tag":100,"props":8257,"children":8258},{"style":390},[8259],{"type":50,"value":408},{"type":44,"tag":100,"props":8261,"children":8262},{"style":400},[8263],{"type":50,"value":5609},{"type":44,"tag":100,"props":8265,"children":8266},{"class":102,"line":449},[8267,8271,8275,8279],{"type":44,"tag":100,"props":8268,"children":8269},{"style":113},[8270],{"type":50,"value":5574},{"type":44,"tag":100,"props":8272,"children":8273},{"style":400},[8274],{"type":50,"value":5621},{"type":44,"tag":100,"props":8276,"children":8277},{"style":390},[8278],{"type":50,"value":408},{"type":44,"tag":100,"props":8280,"children":8281},{"style":400},[8282],{"type":50,"value":5630},{"type":44,"tag":100,"props":8284,"children":8285},{"class":102,"line":481},[8286,8290,8294,8298],{"type":44,"tag":100,"props":8287,"children":8288},{"style":113},[8289],{"type":50,"value":5574},{"type":44,"tag":100,"props":8291,"children":8292},{"style":400},[8293],{"type":50,"value":5642},{"type":44,"tag":100,"props":8295,"children":8296},{"style":390},[8297],{"type":50,"value":408},{"type":44,"tag":100,"props":8299,"children":8300},{"style":400},[8301],{"type":50,"value":5651},{"type":44,"tag":100,"props":8303,"children":8304},{"class":102,"line":508},[8305,8309,8313,8317],{"type":44,"tag":100,"props":8306,"children":8307},{"style":390},[8308],{"type":50,"value":2524},{"type":44,"tag":100,"props":8310,"children":8311},{"style":113},[8312],{"type":50,"value":781},{"type":44,"tag":100,"props":8314,"children":8315},{"style":400},[8316],{"type":50,"value":786},{"type":44,"tag":100,"props":8318,"children":8319},{"style":113},[8320],{"type":50,"value":5671},{"type":44,"tag":100,"props":8322,"children":8323},{"class":102,"line":531},[8324,8328],{"type":44,"tag":100,"props":8325,"children":8326},{"style":390},[8327],{"type":50,"value":2725},{"type":44,"tag":100,"props":8329,"children":8330},{"style":400},[8331],{"type":50,"value":5683},{"type":44,"tag":100,"props":8333,"children":8334},{"class":102,"line":604},[8335],{"type":44,"tag":100,"props":8336,"children":8337},{"style":400},[8338],{"type":50,"value":2643},{"type":44,"tag":100,"props":8340,"children":8341},{"class":102,"line":626},[8342,8346,8350],{"type":44,"tag":100,"props":8343,"children":8344},{"style":400},[8345],{"type":50,"value":5698},{"type":44,"tag":100,"props":8347,"children":8348},{"style":390},[8349],{"type":50,"value":408},{"type":44,"tag":100,"props":8351,"children":8352},{"style":400},[8353],{"type":50,"value":2401},{"type":44,"tag":100,"props":8355,"children":8356},{"class":102,"line":648},[8357],{"type":44,"tag":100,"props":8358,"children":8359},{"style":390},[8360],{"type":50,"value":2409},{"type":44,"tag":100,"props":8362,"children":8363},{"class":102,"line":705},[8364],{"type":44,"tag":100,"props":8365,"children":8366},{"style":400},[8367],{"type":50,"value":5721},{"type":44,"tag":100,"props":8369,"children":8370},{"class":102,"line":770},[8371],{"type":44,"tag":100,"props":8372,"children":8373},{"style":400},[8374],{"type":50,"value":5566},{"type":44,"tag":100,"props":8376,"children":8377},{"class":102,"line":794},[8378,8382,8386,8390,8394],{"type":44,"tag":100,"props":8379,"children":8380},{"style":113},[8381],{"type":50,"value":5574},{"type":44,"tag":100,"props":8383,"children":8384},{"style":400},[8385],{"type":50,"value":5740},{"type":44,"tag":100,"props":8387,"children":8388},{"style":390},[8389],{"type":50,"value":408},{"type":44,"tag":100,"props":8391,"children":8392},{"style":390},[8393],{"type":50,"value":5749},{"type":44,"tag":100,"props":8395,"children":8396},{"style":400},[8397],{"type":50,"value":2431},{"type":44,"tag":100,"props":8399,"children":8400},{"class":102,"line":808},[8401,8405,8409,8413],{"type":44,"tag":100,"props":8402,"children":8403},{"style":113},[8404],{"type":50,"value":5574},{"type":44,"tag":100,"props":8406,"children":8407},{"style":400},[8408],{"type":50,"value":5765},{"type":44,"tag":100,"props":8410,"children":8411},{"style":390},[8412],{"type":50,"value":408},{"type":44,"tag":100,"props":8414,"children":8415},{"style":400},[8416],{"type":50,"value":5774},{"type":44,"tag":100,"props":8418,"children":8419},{"class":102,"line":1484},[8420,8424,8428,8432],{"type":44,"tag":100,"props":8421,"children":8422},{"style":113},[8423],{"type":50,"value":5574},{"type":44,"tag":100,"props":8425,"children":8426},{"style":400},[8427],{"type":50,"value":5786},{"type":44,"tag":100,"props":8429,"children":8430},{"style":390},[8431],{"type":50,"value":408},{"type":44,"tag":100,"props":8433,"children":8434},{"style":400},[8435],{"type":50,"value":5795},{"type":44,"tag":100,"props":8437,"children":8438},{"class":102,"line":2747},[8439,8443,8447,8451],{"type":44,"tag":100,"props":8440,"children":8441},{"style":390},[8442],{"type":50,"value":2524},{"type":44,"tag":100,"props":8444,"children":8445},{"style":113},[8446],{"type":50,"value":781},{"type":44,"tag":100,"props":8448,"children":8449},{"style":400},[8450],{"type":50,"value":786},{"type":44,"tag":100,"props":8452,"children":8453},{"style":113},[8454],{"type":50,"value":5815},{"type":44,"tag":100,"props":8456,"children":8457},{"class":102,"line":2769},[8458,8462],{"type":44,"tag":100,"props":8459,"children":8460},{"style":390},[8461],{"type":50,"value":2725},{"type":44,"tag":100,"props":8463,"children":8464},{"style":400},[8465],{"type":50,"value":5827},{"type":44,"tag":100,"props":8467,"children":8468},{"class":102,"line":2791},[8469],{"type":44,"tag":100,"props":8470,"children":8471},{"style":400},[8472],{"type":50,"value":2643},{"type":44,"tag":100,"props":8474,"children":8475},{"class":102,"line":2856},[8476,8480,8484],{"type":44,"tag":100,"props":8477,"children":8478},{"style":400},[8479],{"type":50,"value":5842},{"type":44,"tag":100,"props":8481,"children":8482},{"style":390},[8483],{"type":50,"value":408},{"type":44,"tag":100,"props":8485,"children":8486},{"style":400},[8487],{"type":50,"value":2401},{"type":44,"tag":100,"props":8489,"children":8490},{"class":102,"line":2898},[8491],{"type":44,"tag":100,"props":8492,"children":8493},{"style":390},[8494],{"type":50,"value":2409},{"type":44,"tag":100,"props":8496,"children":8497},{"class":102,"line":2977},[8498,8503,8507,8511],{"type":44,"tag":100,"props":8499,"children":8500},{"style":400},[8501],{"type":50,"value":8502},"        order_date::",{"type":44,"tag":100,"props":8504,"children":8505},{"style":390},[8506],{"type":50,"value":1656},{"type":44,"tag":100,"props":8508,"children":8509},{"style":390},[8510],{"type":50,"value":1661},{"type":44,"tag":100,"props":8512,"children":8513},{"style":400},[8514],{"type":50,"value":413},{"type":44,"tag":100,"props":8516,"children":8517},{"class":102,"line":3015},[8518,8522,8526,8530],{"type":44,"tag":100,"props":8519,"children":8520},{"style":113},[8521],{"type":50,"value":5881},{"type":44,"tag":100,"props":8523,"children":8524},{"style":400},[8525],{"type":50,"value":786},{"type":44,"tag":100,"props":8527,"children":8528},{"style":113},[8529],{"type":50,"value":5890},{"type":44,"tag":100,"props":8531,"children":8532},{"style":400},[8533],{"type":50,"value":2431},{"type":44,"tag":100,"props":8535,"children":8536},{"class":102,"line":3081},[8537,8541,8545,8549,8553,8557,8561,8565],{"type":44,"tag":100,"props":8538,"children":8539},{"style":113},[8540],{"type":50,"value":5574},{"type":44,"tag":100,"props":8542,"children":8543},{"style":400},[8544],{"type":50,"value":427},{"type":44,"tag":100,"props":8546,"children":8547},{"style":113},[8548],{"type":50,"value":2478},{"type":44,"tag":100,"props":8550,"children":8551},{"style":400},[8552],{"type":50,"value":786},{"type":44,"tag":100,"props":8554,"children":8555},{"style":113},[8556],{"type":50,"value":2999},{"type":44,"tag":100,"props":8558,"children":8559},{"style":400},[8560],{"type":50,"value":437},{"type":44,"tag":100,"props":8562,"children":8563},{"style":390},[8564],{"type":50,"value":408},{"type":44,"tag":100,"props":8566,"children":8567},{"style":400},[8568],{"type":50,"value":5930},{"type":44,"tag":100,"props":8570,"children":8571},{"class":102,"line":3094},[8572,8576,8580,8584,8588],{"type":44,"tag":100,"props":8573,"children":8574},{"style":390},[8575],{"type":50,"value":2524},{"type":44,"tag":100,"props":8577,"children":8578},{"style":113},[8579],{"type":50,"value":781},{"type":44,"tag":100,"props":8581,"children":8582},{"style":400},[8583],{"type":50,"value":786},{"type":44,"tag":100,"props":8585,"children":8586},{"style":113},[8587],{"type":50,"value":1408},{"type":44,"tag":100,"props":8589,"children":8590},{"style":400},[8591],{"type":50,"value":1413},{"type":44,"tag":100,"props":8593,"children":8594},{"class":102,"line":3108},[8595,8599,8603,8607,8611],{"type":44,"tag":100,"props":8596,"children":8597},{"style":390},[8598],{"type":50,"value":2548},{"type":44,"tag":100,"props":8600,"children":8601},{"style":113},[8602],{"type":50,"value":781},{"type":44,"tag":100,"props":8604,"children":8605},{"style":400},[8606],{"type":50,"value":786},{"type":44,"tag":100,"props":8608,"children":8609},{"style":113},[8610],{"type":50,"value":5973},{"type":44,"tag":100,"props":8612,"children":8613},{"style":400},[8614],{"type":50,"value":5978},{"type":44,"tag":100,"props":8616,"children":8617},{"class":102,"line":3147},[8618,8622,8626,8630,8634,8638,8642],{"type":44,"tag":100,"props":8619,"children":8620},{"style":390},[8621],{"type":50,"value":2574},{"type":44,"tag":100,"props":8623,"children":8624},{"style":400},[8625],{"type":50,"value":2211},{"type":44,"tag":100,"props":8627,"children":8628},{"style":390},[8629],{"type":50,"value":1656},{"type":44,"tag":100,"props":8631,"children":8632},{"style":390},[8633],{"type":50,"value":2591},{"type":44,"tag":100,"props":8635,"children":8636},{"style":113},[8637],{"type":50,"value":6015},{"type":44,"tag":100,"props":8639,"children":8640},{"style":400},[8641],{"type":50,"value":786},{"type":44,"tag":100,"props":8643,"children":8644},{"style":113},[8645],{"type":50,"value":6024},{"type":44,"tag":100,"props":8647,"children":8648},{"class":102,"line":3188},[8649,8653,8657,8661,8665,8669],{"type":44,"tag":100,"props":8650,"children":8651},{"style":390},[8652],{"type":50,"value":2613},{"type":44,"tag":100,"props":8654,"children":8655},{"style":113},[8656],{"type":50,"value":1426},{"type":44,"tag":100,"props":8658,"children":8659},{"style":400},[8660],{"type":50,"value":786},{"type":44,"tag":100,"props":8662,"children":8663},{"style":113},[8664],{"type":50,"value":2626},{"type":44,"tag":100,"props":8666,"children":8667},{"style":390},[8668],{"type":50,"value":2591},{"type":44,"tag":100,"props":8670,"children":8671},{"style":119},[8672],{"type":50,"value":2635},{"type":44,"tag":100,"props":8674,"children":8675},{"class":102,"line":6054},[8676,8680,8684,8688,8692,8696,8700],{"type":44,"tag":100,"props":8677,"children":8678},{"style":390},[8679],{"type":50,"value":2725},{"type":44,"tag":100,"props":8681,"children":8682},{"style":400},[8683],{"type":50,"value":2211},{"type":44,"tag":100,"props":8685,"children":8686},{"style":390},[8687],{"type":50,"value":1656},{"type":44,"tag":100,"props":8689,"children":8690},{"style":400},[8691],{"type":50,"value":750},{"type":44,"tag":100,"props":8693,"children":8694},{"style":113},[8695],{"type":50,"value":6069},{"type":44,"tag":100,"props":8697,"children":8698},{"style":400},[8699],{"type":50,"value":786},{"type":44,"tag":100,"props":8701,"children":8702},{"style":113},[8703],{"type":50,"value":6078},{"type":44,"tag":100,"props":8705,"children":8706},{"class":102,"line":6081},[8707],{"type":44,"tag":100,"props":8708,"children":8709},{"style":400},[8710],{"type":50,"value":1464},{"type":44,"tag":100,"props":8712,"children":8713},{"class":102,"line":6089},[8714],{"type":44,"tag":100,"props":8715,"children":8716},{"style":390},[8717],{"type":50,"value":393},{"type":44,"tag":100,"props":8719,"children":8720},{"class":102,"line":6097},[8721,8725,8729,8733,8737],{"type":44,"tag":100,"props":8722,"children":8723},{"style":113},[8724],{"type":50,"value":2775},{"type":44,"tag":100,"props":8726,"children":8727},{"style":400},[8728],{"type":50,"value":786},{"type":44,"tag":100,"props":8730,"children":8731},{"style":113},[8732],{"type":50,"value":6111},{"type":44,"tag":100,"props":8734,"children":8735},{"style":390},[8736],{"type":50,"value":1661},{"type":44,"tag":100,"props":8738,"children":8739},{"style":400},[8740],{"type":50,"value":6120},{"type":44,"tag":100,"props":8742,"children":8743},{"class":102,"line":6123},[8744,8748,8752,8756],{"type":44,"tag":100,"props":8745,"children":8746},{"style":113},[8747],{"type":50,"value":2775},{"type":44,"tag":100,"props":8749,"children":8750},{"style":400},[8751],{"type":50,"value":786},{"type":44,"tag":100,"props":8753,"children":8754},{"style":113},[8755],{"type":50,"value":5890},{"type":44,"tag":100,"props":8757,"children":8758},{"style":400},[8759],{"type":50,"value":2431},{"type":44,"tag":100,"props":8761,"children":8762},{"class":102,"line":6143},[8763,8767,8771,8775],{"type":44,"tag":100,"props":8764,"children":8765},{"style":113},[8766],{"type":50,"value":2775},{"type":44,"tag":100,"props":8768,"children":8769},{"style":400},[8770],{"type":50,"value":786},{"type":44,"tag":100,"props":8772,"children":8773},{"style":113},[8774],{"type":50,"value":6157},{"type":44,"tag":100,"props":8776,"children":8777},{"style":400},[8778],{"type":50,"value":2431},{"type":44,"tag":100,"props":8780,"children":8781},{"class":102,"line":6164},[8782,8786,8790,8794],{"type":44,"tag":100,"props":8783,"children":8784},{"style":113},[8785],{"type":50,"value":2775},{"type":44,"tag":100,"props":8787,"children":8788},{"style":400},[8789],{"type":50,"value":786},{"type":44,"tag":100,"props":8791,"children":8792},{"style":113},[8793],{"type":50,"value":6178},{"type":44,"tag":100,"props":8795,"children":8796},{"style":400},[8797],{"type":50,"value":2431},{"type":44,"tag":100,"props":8799,"children":8800},{"class":102,"line":6185},[8801,8805,8809,8813],{"type":44,"tag":100,"props":8802,"children":8803},{"style":113},[8804],{"type":50,"value":2775},{"type":44,"tag":100,"props":8806,"children":8807},{"style":400},[8808],{"type":50,"value":786},{"type":44,"tag":100,"props":8810,"children":8811},{"style":113},[8812],{"type":50,"value":6199},{"type":44,"tag":100,"props":8814,"children":8815},{"style":400},[8816],{"type":50,"value":2431},{"type":44,"tag":100,"props":8818,"children":8819},{"class":102,"line":6206},[8820,8824,8828,8832],{"type":44,"tag":100,"props":8821,"children":8822},{"style":113},[8823],{"type":50,"value":2775},{"type":44,"tag":100,"props":8825,"children":8826},{"style":400},[8827],{"type":50,"value":786},{"type":44,"tag":100,"props":8829,"children":8830},{"style":113},[8831],{"type":50,"value":6220},{"type":44,"tag":100,"props":8833,"children":8834},{"style":400},[8835],{"type":50,"value":2431},{"type":44,"tag":100,"props":8837,"children":8838},{"class":102,"line":6227},[8839,8843,8847,8851],{"type":44,"tag":100,"props":8840,"children":8841},{"style":113},[8842],{"type":50,"value":6233},{"type":44,"tag":100,"props":8844,"children":8845},{"style":400},[8846],{"type":50,"value":786},{"type":44,"tag":100,"props":8848,"children":8849},{"style":113},[8850],{"type":50,"value":6242},{"type":44,"tag":100,"props":8852,"children":8853},{"style":400},[8854],{"type":50,"value":2431},{"type":44,"tag":100,"props":8856,"children":8857},{"class":102,"line":6249},[8858,8862,8866,8870],{"type":44,"tag":100,"props":8859,"children":8860},{"style":113},[8861],{"type":50,"value":6233},{"type":44,"tag":100,"props":8863,"children":8864},{"style":400},[8865],{"type":50,"value":786},{"type":44,"tag":100,"props":8867,"children":8868},{"style":113},[8869],{"type":50,"value":6263},{"type":44,"tag":100,"props":8871,"children":8872},{"style":400},[8873],{"type":50,"value":2431},{"type":44,"tag":100,"props":8875,"children":8876},{"class":102,"line":6270},[8877,8881,8885,8889],{"type":44,"tag":100,"props":8878,"children":8879},{"style":113},[8880],{"type":50,"value":6276},{"type":44,"tag":100,"props":8882,"children":8883},{"style":400},[8884],{"type":50,"value":786},{"type":44,"tag":100,"props":8886,"children":8887},{"style":113},[8888],{"type":50,"value":6285},{"type":44,"tag":100,"props":8890,"children":8891},{"style":400},[8892],{"type":50,"value":2431},{"type":44,"tag":100,"props":8894,"children":8895},{"class":102,"line":6292},[8896,8900,8904,8908,8912,8916,8920,8924,8928,8932,8936,8940,8944,8948,8952,8956,8960,8964],{"type":44,"tag":100,"props":8897,"children":8898},{"style":113},[8899],{"type":50,"value":654},{"type":44,"tag":100,"props":8901,"children":8902},{"style":400},[8903],{"type":50,"value":427},{"type":44,"tag":100,"props":8905,"children":8906},{"style":113},[8907],{"type":50,"value":6306},{"type":44,"tag":100,"props":8909,"children":8910},{"style":400},[8911],{"type":50,"value":786},{"type":44,"tag":100,"props":8913,"children":8914},{"style":113},[8915],{"type":50,"value":6285},{"type":44,"tag":100,"props":8917,"children":8918},{"style":390},[8919],{"type":50,"value":6319},{"type":44,"tag":100,"props":8921,"children":8922},{"style":113},[8923],{"type":50,"value":1262},{"type":44,"tag":100,"props":8925,"children":8926},{"style":400},[8927],{"type":50,"value":427},{"type":44,"tag":100,"props":8929,"children":8930},{"style":113},[8931],{"type":50,"value":2925},{"type":44,"tag":100,"props":8933,"children":8934},{"style":400},[8935],{"type":50,"value":786},{"type":44,"tag":100,"props":8937,"children":8938},{"style":113},[8939],{"type":50,"value":6157},{"type":44,"tag":100,"props":8941,"children":8942},{"style":400},[8943],{"type":50,"value":750},{"type":44,"tag":100,"props":8945,"children":8946},{"style":113},[8947],{"type":50,"value":679},{"type":44,"tag":100,"props":8949,"children":8950},{"style":400},[8951],{"type":50,"value":684},{"type":44,"tag":100,"props":8953,"children":8954},{"style":113},[8955],{"type":50,"value":689},{"type":44,"tag":100,"props":8957,"children":8958},{"style":400},[8959],{"type":50,"value":437},{"type":44,"tag":100,"props":8961,"children":8962},{"style":390},[8963],{"type":50,"value":408},{"type":44,"tag":100,"props":8965,"children":8966},{"style":400},[8967],{"type":50,"value":6368},{"type":44,"tag":100,"props":8969,"children":8970},{"class":102,"line":6371},[8971,8975,8979,8983,8987,8991,8995,8999,9003,9007,9011,9015,9019,9023,9027,9031,9035,9039],{"type":44,"tag":100,"props":8972,"children":8973},{"style":113},[8974],{"type":50,"value":654},{"type":44,"tag":100,"props":8976,"children":8977},{"style":400},[8978],{"type":50,"value":427},{"type":44,"tag":100,"props":8980,"children":8981},{"style":113},[8982],{"type":50,"value":2925},{"type":44,"tag":100,"props":8984,"children":8985},{"style":400},[8986],{"type":50,"value":786},{"type":44,"tag":100,"props":8988,"children":8989},{"style":113},[8990],{"type":50,"value":6157},{"type":44,"tag":100,"props":8992,"children":8993},{"style":390},[8994],{"type":50,"value":6319},{"type":44,"tag":100,"props":8996,"children":8997},{"style":113},[8998],{"type":50,"value":1262},{"type":44,"tag":100,"props":9000,"children":9001},{"style":400},[9002],{"type":50,"value":427},{"type":44,"tag":100,"props":9004,"children":9005},{"style":113},[9006],{"type":50,"value":2925},{"type":44,"tag":100,"props":9008,"children":9009},{"style":400},[9010],{"type":50,"value":786},{"type":44,"tag":100,"props":9012,"children":9013},{"style":113},[9014],{"type":50,"value":6220},{"type":44,"tag":100,"props":9016,"children":9017},{"style":400},[9018],{"type":50,"value":750},{"type":44,"tag":100,"props":9020,"children":9021},{"style":113},[9022],{"type":50,"value":679},{"type":44,"tag":100,"props":9024,"children":9025},{"style":400},[9026],{"type":50,"value":684},{"type":44,"tag":100,"props":9028,"children":9029},{"style":113},[9030],{"type":50,"value":689},{"type":44,"tag":100,"props":9032,"children":9033},{"style":400},[9034],{"type":50,"value":437},{"type":44,"tag":100,"props":9036,"children":9037},{"style":390},[9038],{"type":50,"value":408},{"type":44,"tag":100,"props":9040,"children":9041},{"style":400},[9042],{"type":50,"value":6445},{"type":44,"tag":100,"props":9044,"children":9045},{"class":102,"line":6448},[9046,9050,9054,9058,9062,9066,9070,9074,9078,9082,9086,9090,9094,9098,9102,9106,9110,9114,9118,9122,9126],{"type":44,"tag":100,"props":9047,"children":9048},{"style":113},[9049],{"type":50,"value":654},{"type":44,"tag":100,"props":9051,"children":9052},{"style":400},[9053],{"type":50,"value":427},{"type":44,"tag":100,"props":9055,"children":9056},{"style":113},[9057],{"type":50,"value":2925},{"type":44,"tag":100,"props":9059,"children":9060},{"style":400},[9061],{"type":50,"value":786},{"type":44,"tag":100,"props":9063,"children":9064},{"style":113},[9065],{"type":50,"value":6199},{"type":44,"tag":100,"props":9067,"children":9068},{"style":390},[9069],{"type":50,"value":6319},{"type":44,"tag":100,"props":9071,"children":9072},{"style":113},[9073],{"type":50,"value":1262},{"type":44,"tag":100,"props":9075,"children":9076},{"style":400},[9077],{"type":50,"value":427},{"type":44,"tag":100,"props":9079,"children":9080},{"style":113},[9081],{"type":50,"value":2925},{"type":44,"tag":100,"props":9083,"children":9084},{"style":400},[9085],{"type":50,"value":786},{"type":44,"tag":100,"props":9087,"children":9088},{"style":113},[9089],{"type":50,"value":6178},{"type":44,"tag":100,"props":9091,"children":9092},{"style":400},[9093],{"type":50,"value":750},{"type":44,"tag":100,"props":9095,"children":9096},{"style":113},[9097],{"type":50,"value":679},{"type":44,"tag":100,"props":9099,"children":9100},{"style":400},[9101],{"type":50,"value":437},{"type":44,"tag":100,"props":9103,"children":9104},{"style":390},[9105],{"type":50,"value":432},{"type":44,"tag":100,"props":9107,"children":9108},{"style":113},[9109],{"type":50,"value":745},{"type":44,"tag":100,"props":9111,"children":9112},{"style":400},[9113],{"type":50,"value":750},{"type":44,"tag":100,"props":9115,"children":9116},{"style":113},[9117],{"type":50,"value":689},{"type":44,"tag":100,"props":9119,"children":9120},{"style":400},[9121],{"type":50,"value":437},{"type":44,"tag":100,"props":9123,"children":9124},{"style":390},[9125],{"type":50,"value":408},{"type":44,"tag":100,"props":9127,"children":9128},{"style":400},[9129],{"type":50,"value":6534},{"type":44,"tag":100,"props":9131,"children":9132},{"class":102,"line":6537},[9133,9137],{"type":44,"tag":100,"props":9134,"children":9135},{"style":390},[9136],{"type":50,"value":776},{"type":44,"tag":100,"props":9138,"children":9139},{"style":400},[9140],{"type":50,"value":6547},{"type":44,"tag":100,"props":9142,"children":9143},{"class":102,"line":6550},[9144,9148],{"type":44,"tag":100,"props":9145,"children":9146},{"style":390},[9147],{"type":50,"value":6556},{"type":44,"tag":100,"props":9149,"children":9150},{"style":400},[9151],{"type":50,"value":6561},{"type":44,"tag":100,"props":9153,"children":9154},{"class":102,"line":6564},[9155,9159,9163,9167,9171,9175,9179,9183],{"type":44,"tag":100,"props":9156,"children":9157},{"style":390},[9158],{"type":50,"value":3114},{"type":44,"tag":100,"props":9160,"children":9161},{"style":113},[9162],{"type":50,"value":3135},{"type":44,"tag":100,"props":9164,"children":9165},{"style":400},[9166],{"type":50,"value":786},{"type":44,"tag":100,"props":9168,"children":9169},{"style":113},[9170],{"type":50,"value":6111},{"type":44,"tag":100,"props":9172,"children":9173},{"style":390},[9174],{"type":50,"value":2591},{"type":44,"tag":100,"props":9176,"children":9177},{"style":113},[9178],{"type":50,"value":6590},{"type":44,"tag":100,"props":9180,"children":9181},{"style":400},[9182],{"type":50,"value":786},{"type":44,"tag":100,"props":9184,"children":9185},{"style":113},[9186],{"type":50,"value":6024},{"type":44,"tag":100,"props":9188,"children":9189},{"class":102,"line":6601},[9190,9194,9198,9202,9206,9210,9214,9218],{"type":44,"tag":100,"props":9191,"children":9192},{"style":390},[9193],{"type":50,"value":6607},{"type":44,"tag":100,"props":9195,"children":9196},{"style":113},[9197],{"type":50,"value":3135},{"type":44,"tag":100,"props":9199,"children":9200},{"style":400},[9201],{"type":50,"value":786},{"type":44,"tag":100,"props":9203,"children":9204},{"style":113},[9205],{"type":50,"value":5890},{"type":44,"tag":100,"props":9207,"children":9208},{"style":390},[9209],{"type":50,"value":2591},{"type":44,"tag":100,"props":9211,"children":9212},{"style":113},[9213],{"type":50,"value":6590},{"type":44,"tag":100,"props":9215,"children":9216},{"style":400},[9217],{"type":50,"value":786},{"type":44,"tag":100,"props":9219,"children":9220},{"style":113},[9221],{"type":50,"value":6078},{"type":44,"tag":100,"props":9223,"children":9224},{"class":102,"line":6638},[9225,9229],{"type":44,"tag":100,"props":9226,"children":9227},{"style":390},[9228],{"type":50,"value":6556},{"type":44,"tag":100,"props":9230,"children":9231},{"style":400},[9232],{"type":50,"value":6648},{"type":44,"tag":100,"props":9234,"children":9235},{"class":102,"line":6651},[9236,9240,9244,9248,9252,9256,9260,9264],{"type":44,"tag":100,"props":9237,"children":9238},{"style":390},[9239],{"type":50,"value":3114},{"type":44,"tag":100,"props":9241,"children":9242},{"style":113},[9243],{"type":50,"value":3135},{"type":44,"tag":100,"props":9245,"children":9246},{"style":400},[9247],{"type":50,"value":786},{"type":44,"tag":100,"props":9249,"children":9250},{"style":113},[9251],{"type":50,"value":6111},{"type":44,"tag":100,"props":9253,"children":9254},{"style":390},[9255],{"type":50,"value":2591},{"type":44,"tag":100,"props":9257,"children":9258},{"style":113},[9259],{"type":50,"value":6677},{"type":44,"tag":100,"props":9261,"children":9262},{"style":400},[9263],{"type":50,"value":786},{"type":44,"tag":100,"props":9265,"children":9266},{"style":113},[9267],{"type":50,"value":6686},{"type":44,"tag":100,"props":9269,"children":9270},{"class":102,"line":6689},[9271,9275,9279,9283,9287,9291,9295,9299],{"type":44,"tag":100,"props":9272,"children":9273},{"style":390},[9274],{"type":50,"value":6607},{"type":44,"tag":100,"props":9276,"children":9277},{"style":113},[9278],{"type":50,"value":3135},{"type":44,"tag":100,"props":9280,"children":9281},{"style":400},[9282],{"type":50,"value":786},{"type":44,"tag":100,"props":9284,"children":9285},{"style":113},[9286],{"type":50,"value":5890},{"type":44,"tag":100,"props":9288,"children":9289},{"style":390},[9290],{"type":50,"value":2591},{"type":44,"tag":100,"props":9292,"children":9293},{"style":113},[9294],{"type":50,"value":6677},{"type":44,"tag":100,"props":9296,"children":9297},{"style":400},[9298],{"type":50,"value":786},{"type":44,"tag":100,"props":9300,"children":9301},{"style":113},[9302],{"type":50,"value":6078},{"type":44,"tag":100,"props":9304,"children":9305},{"class":102,"line":6725},[9306,9310,9314,9318,9322,9326,9330,9334,9338,9342],{"type":44,"tag":100,"props":9307,"children":9308},{"style":390},[9309],{"type":50,"value":814},{"type":44,"tag":100,"props":9311,"children":9312},{"style":113},[9313],{"type":50,"value":3135},{"type":44,"tag":100,"props":9315,"children":9316},{"style":400},[9317],{"type":50,"value":786},{"type":44,"tag":100,"props":9319,"children":9320},{"style":113},[9321],{"type":50,"value":6111},{"type":44,"tag":100,"props":9323,"children":9324},{"style":390},[9325],{"type":50,"value":6747},{"type":44,"tag":100,"props":9327,"children":9328},{"style":400},[9329],{"type":50,"value":750},{"type":44,"tag":100,"props":9331,"children":9332},{"style":113},[9333],{"type":50,"value":2925},{"type":44,"tag":100,"props":9335,"children":9336},{"style":400},[9337],{"type":50,"value":786},{"type":44,"tag":100,"props":9339,"children":9340},{"style":113},[9341],{"type":50,"value":6157},{"type":44,"tag":100,"props":9343,"children":9344},{"style":390},[9345],{"type":50,"value":6768},{"type":44,"tag":124,"props":9347,"children":9349},{"id":9348},"_5-daily-kpis-rpt_daily_kpissql",[9350,9352],{"type":50,"value":9351},"5) Daily KPIs - ",{"type":44,"tag":81,"props":9353,"children":9355},{"className":9354},[],[9356],{"type":50,"value":9357},"rpt_daily_kpis.sql",{"type":44,"tag":53,"props":9359,"children":9360},{},[9361],{"type":50,"value":9362},"A single unified daily view of the whole business. One table, all the numbers that matter.",{"type":44,"tag":53,"props":9364,"children":9365},{},[9366,9367,9376],{"type":50,"value":183},{"type":44,"tag":185,"props":9368,"children":9369},{},[9370],{"type":44,"tag":81,"props":9371,"children":9373},{"className":9372},[],[9374],{"type":50,"value":9375},"ecommerce\u002Fassets\u002Freports\u002Frpt_daily_kpis.sql",{"type":50,"value":195},{"type":44,"tag":197,"props":9378,"children":9379},{":variants":199,"group":200},[9380,10644,11890],{"type":44,"tag":203,"props":9381,"children":9382},{"v-slot:clickhouse":7},[9383],{"type":44,"tag":90,"props":9384,"children":9386},{"className":208,"code":9385,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_daily_kpis\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - reports.rpt_daily_revenue\n  - staging.stg_customers\n  - staging.stg_orders\n  - staging.stg_web_sessions\n  - staging.stg_marketing_spend\ncolumns:\n  - name: kpi_date\n    type: date\n    checks:\n      - name: not_null\n      - name: unique\n@bruin *\u002F\n\nWITH daily_customers AS (\n    SELECT\n        toDate(o.order_date) AS order_date,\n        countIf(toDate(c.first_seen_at) = toDate(o.order_date)) AS new_customers,\n        countIf(toDate(c.first_seen_at) \u003C toDate(o.order_date)) AS returning_customers\n    FROM staging.stg_orders o\n    LEFT JOIN staging.stg_customers c\n        ON o.customer_email = c.customer_email\n    WHERE o.payment_status = 'paid'\n    GROUP BY toDate(o.order_date)\n),\ndaily_sessions AS (\n    SELECT\n        session_date,\n        sum(total_sessions) AS sessions,\n        sum(new_users) AS new_visitors,\n        sum(purchase_events) AS purchases\n    FROM staging.stg_web_sessions\n    GROUP BY session_date\n),\ndaily_spend AS (\n    SELECT\n        spend_date,\n        sum(spend) AS total_ad_spend\n    FROM staging.stg_marketing_spend\n    GROUP BY spend_date\n)\nSELECT\n    r.order_date AS kpi_date,\n    r.net_revenue,\n    r.total_orders,\n    r.paid_orders,\n    r.avg_order_value,\n    r.cancellation_rate,\n    dc.new_customers,\n    dc.returning_customers,\n    ds.sessions,\n    ds.new_visitors,\n    round(ds.purchases \u002F nullIf(ds.sessions, 0) * 100, 2) AS conversion_rate,\n    sp.total_ad_spend,\n    round(r.net_revenue \u002F nullIf(sp.total_ad_spend, 0), 2) AS overall_roas\nFROM reports.rpt_daily_revenue r\nLEFT JOIN daily_customers dc ON r.order_date = dc.order_date\nLEFT JOIN daily_sessions ds ON r.order_date = ds.session_date\nLEFT JOIN daily_spend sp ON r.order_date = sp.spend_date\nORDER BY kpi_date DESC\n",[9387],{"type":44,"tag":81,"props":9388,"children":9389},{"__ignoreMap":7},[9390,9397,9405,9412,9419,9426,9433,9441,9448,9455,9462,9469,9476,9484,9491,9498,9505,9512,9519,9526,9546,9553,9585,9643,9700,9723,9747,9782,9809,9836,9843,9859,9866,9873,9896,9916,9935,9954,9966,9973,9989,9996,10003,10023,10042,10054,10061,10068,10093,10113,10133,10153,10173,10193,10214,10234,10254,10274,10364,10385,10463,10489,10536,10581,10627],{"type":44,"tag":100,"props":9391,"children":9392},{"class":102,"line":103},[9393],{"type":44,"tag":100,"props":9394,"children":9395},{"style":220},[9396],{"type":50,"value":223},{"type":44,"tag":100,"props":9398,"children":9399},{"class":102,"line":226},[9400],{"type":44,"tag":100,"props":9401,"children":9402},{"style":220},[9403],{"type":50,"value":9404},"name: reports.rpt_daily_kpis\n",{"type":44,"tag":100,"props":9406,"children":9407},{"class":102,"line":235},[9408],{"type":44,"tag":100,"props":9409,"children":9410},{"style":220},[9411],{"type":50,"value":241},{"type":44,"tag":100,"props":9413,"children":9414},{"class":102,"line":24},[9415],{"type":44,"tag":100,"props":9416,"children":9417},{"style":220},[9418],{"type":50,"value":249},{"type":44,"tag":100,"props":9420,"children":9421},{"class":102,"line":252},[9422],{"type":44,"tag":100,"props":9423,"children":9424},{"style":220},[9425],{"type":50,"value":258},{"type":44,"tag":100,"props":9427,"children":9428},{"class":102,"line":261},[9429],{"type":44,"tag":100,"props":9430,"children":9431},{"style":220},[9432],{"type":50,"value":267},{"type":44,"tag":100,"props":9434,"children":9435},{"class":102,"line":270},[9436],{"type":44,"tag":100,"props":9437,"children":9438},{"style":220},[9439],{"type":50,"value":9440},"  - reports.rpt_daily_revenue\n",{"type":44,"tag":100,"props":9442,"children":9443},{"class":102,"line":279},[9444],{"type":44,"tag":100,"props":9445,"children":9446},{"style":220},[9447],{"type":50,"value":2329},{"type":44,"tag":100,"props":9449,"children":9450},{"class":102,"line":288},[9451],{"type":44,"tag":100,"props":9452,"children":9453},{"style":220},[9454],{"type":50,"value":276},{"type":44,"tag":100,"props":9456,"children":9457},{"class":102,"line":297},[9458],{"type":44,"tag":100,"props":9459,"children":9460},{"style":220},[9461],{"type":50,"value":5466},{"type":44,"tag":100,"props":9463,"children":9464},{"class":102,"line":306},[9465],{"type":44,"tag":100,"props":9466,"children":9467},{"style":220},[9468],{"type":50,"value":5458},{"type":44,"tag":100,"props":9470,"children":9471},{"class":102,"line":315},[9472],{"type":44,"tag":100,"props":9473,"children":9474},{"style":220},[9475],{"type":50,"value":285},{"type":44,"tag":100,"props":9477,"children":9478},{"class":102,"line":324},[9479],{"type":44,"tag":100,"props":9480,"children":9481},{"style":220},[9482],{"type":50,"value":9483},"  - name: kpi_date\n",{"type":44,"tag":100,"props":9485,"children":9486},{"class":102,"line":333},[9487],{"type":44,"tag":100,"props":9488,"children":9489},{"style":220},[9490],{"type":50,"value":303},{"type":44,"tag":100,"props":9492,"children":9493},{"class":102,"line":11},[9494],{"type":44,"tag":100,"props":9495,"children":9496},{"style":220},[9497],{"type":50,"value":312},{"type":44,"tag":100,"props":9499,"children":9500},{"class":102,"line":350},[9501],{"type":44,"tag":100,"props":9502,"children":9503},{"style":220},[9504],{"type":50,"value":321},{"type":44,"tag":100,"props":9506,"children":9507},{"class":102,"line":359},[9508],{"type":44,"tag":100,"props":9509,"children":9510},{"style":220},[9511],{"type":50,"value":330},{"type":44,"tag":100,"props":9513,"children":9514},{"class":102,"line":368},[9515],{"type":44,"tag":100,"props":9516,"children":9517},{"style":220},[9518],{"type":50,"value":374},{"type":44,"tag":100,"props":9520,"children":9521},{"class":102,"line":377},[9522],{"type":44,"tag":100,"props":9523,"children":9524},{"emptyLinePlaceholder":23},[9525],{"type":50,"value":383},{"type":44,"tag":100,"props":9527,"children":9528},{"class":102,"line":386},[9529,9533,9538,9542],{"type":44,"tag":100,"props":9530,"children":9531},{"style":390},[9532],{"type":50,"value":2387},{"type":44,"tag":100,"props":9534,"children":9535},{"style":400},[9536],{"type":50,"value":9537}," daily_customers ",{"type":44,"tag":100,"props":9539,"children":9540},{"style":390},[9541],{"type":50,"value":408},{"type":44,"tag":100,"props":9543,"children":9544},{"style":400},[9545],{"type":50,"value":2401},{"type":44,"tag":100,"props":9547,"children":9548},{"class":102,"line":396},[9549],{"type":44,"tag":100,"props":9550,"children":9551},{"style":390},[9552],{"type":50,"value":2409},{"type":44,"tag":100,"props":9554,"children":9555},{"class":102,"line":416},[9556,9561,9565,9569,9573,9577,9581],{"type":44,"tag":100,"props":9557,"children":9558},{"style":400},[9559],{"type":50,"value":9560},"        toDate(",{"type":44,"tag":100,"props":9562,"children":9563},{"style":113},[9564],{"type":50,"value":2478},{"type":44,"tag":100,"props":9566,"children":9567},{"style":400},[9568],{"type":50,"value":786},{"type":44,"tag":100,"props":9570,"children":9571},{"style":113},[9572],{"type":50,"value":2487},{"type":44,"tag":100,"props":9574,"children":9575},{"style":400},[9576],{"type":50,"value":437},{"type":44,"tag":100,"props":9578,"children":9579},{"style":390},[9580],{"type":50,"value":408},{"type":44,"tag":100,"props":9582,"children":9583},{"style":400},[9584],{"type":50,"value":413},{"type":44,"tag":100,"props":9586,"children":9587},{"class":102,"line":449},[9588,9593,9597,9601,9605,9609,9613,9617,9621,9625,9629,9634,9638],{"type":44,"tag":100,"props":9589,"children":9590},{"style":400},[9591],{"type":50,"value":9592},"        countIf(toDate(",{"type":44,"tag":100,"props":9594,"children":9595},{"style":113},[9596],{"type":50,"value":2444},{"type":44,"tag":100,"props":9598,"children":9599},{"style":400},[9600],{"type":50,"value":786},{"type":44,"tag":100,"props":9602,"children":9603},{"style":113},[9604],{"type":50,"value":2453},{"type":44,"tag":100,"props":9606,"children":9607},{"style":400},[9608],{"type":50,"value":437},{"type":44,"tag":100,"props":9610,"children":9611},{"style":390},[9612],{"type":50,"value":460},{"type":44,"tag":100,"props":9614,"children":9615},{"style":400},[9616],{"type":50,"value":5990},{"type":44,"tag":100,"props":9618,"children":9619},{"style":113},[9620],{"type":50,"value":2478},{"type":44,"tag":100,"props":9622,"children":9623},{"style":400},[9624],{"type":50,"value":786},{"type":44,"tag":100,"props":9626,"children":9627},{"style":113},[9628],{"type":50,"value":2487},{"type":44,"tag":100,"props":9630,"children":9631},{"style":400},[9632],{"type":50,"value":9633},")) ",{"type":44,"tag":100,"props":9635,"children":9636},{"style":390},[9637],{"type":50,"value":408},{"type":44,"tag":100,"props":9639,"children":9640},{"style":400},[9641],{"type":50,"value":9642}," new_customers,\n",{"type":44,"tag":100,"props":9644,"children":9645},{"class":102,"line":481},[9646,9650,9654,9658,9662,9666,9671,9675,9679,9683,9687,9691,9695],{"type":44,"tag":100,"props":9647,"children":9648},{"style":400},[9649],{"type":50,"value":9592},{"type":44,"tag":100,"props":9651,"children":9652},{"style":113},[9653],{"type":50,"value":2444},{"type":44,"tag":100,"props":9655,"children":9656},{"style":400},[9657],{"type":50,"value":786},{"type":44,"tag":100,"props":9659,"children":9660},{"style":113},[9661],{"type":50,"value":2453},{"type":44,"tag":100,"props":9663,"children":9664},{"style":400},[9665],{"type":50,"value":437},{"type":44,"tag":100,"props":9667,"children":9668},{"style":390},[9669],{"type":50,"value":9670},"\u003C",{"type":44,"tag":100,"props":9672,"children":9673},{"style":400},[9674],{"type":50,"value":5990},{"type":44,"tag":100,"props":9676,"children":9677},{"style":113},[9678],{"type":50,"value":2478},{"type":44,"tag":100,"props":9680,"children":9681},{"style":400},[9682],{"type":50,"value":786},{"type":44,"tag":100,"props":9684,"children":9685},{"style":113},[9686],{"type":50,"value":2487},{"type":44,"tag":100,"props":9688,"children":9689},{"style":400},[9690],{"type":50,"value":9633},{"type":44,"tag":100,"props":9692,"children":9693},{"style":390},[9694],{"type":50,"value":408},{"type":44,"tag":100,"props":9696,"children":9697},{"style":400},[9698],{"type":50,"value":9699}," returning_customers\n",{"type":44,"tag":100,"props":9701,"children":9702},{"class":102,"line":508},[9703,9707,9711,9715,9719],{"type":44,"tag":100,"props":9704,"children":9705},{"style":390},[9706],{"type":50,"value":2524},{"type":44,"tag":100,"props":9708,"children":9709},{"style":113},[9710],{"type":50,"value":781},{"type":44,"tag":100,"props":9712,"children":9713},{"style":400},[9714],{"type":50,"value":786},{"type":44,"tag":100,"props":9716,"children":9717},{"style":113},[9718],{"type":50,"value":1408},{"type":44,"tag":100,"props":9720,"children":9721},{"style":400},[9722],{"type":50,"value":1413},{"type":44,"tag":100,"props":9724,"children":9725},{"class":102,"line":531},[9726,9731,9735,9739,9743],{"type":44,"tag":100,"props":9727,"children":9728},{"style":390},[9729],{"type":50,"value":9730},"    LEFT JOIN",{"type":44,"tag":100,"props":9732,"children":9733},{"style":113},[9734],{"type":50,"value":781},{"type":44,"tag":100,"props":9736,"children":9737},{"style":400},[9738],{"type":50,"value":786},{"type":44,"tag":100,"props":9740,"children":9741},{"style":113},[9742],{"type":50,"value":2561},{"type":44,"tag":100,"props":9744,"children":9745},{"style":400},[9746],{"type":50,"value":2566},{"type":44,"tag":100,"props":9748,"children":9749},{"class":102,"line":604},[9750,9754,9758,9762,9766,9770,9774,9778],{"type":44,"tag":100,"props":9751,"children":9752},{"style":390},[9753],{"type":50,"value":2574},{"type":44,"tag":100,"props":9755,"children":9756},{"style":113},[9757],{"type":50,"value":1426},{"type":44,"tag":100,"props":9759,"children":9760},{"style":400},[9761],{"type":50,"value":786},{"type":44,"tag":100,"props":9763,"children":9764},{"style":113},[9765],{"type":50,"value":2426},{"type":44,"tag":100,"props":9767,"children":9768},{"style":390},[9769],{"type":50,"value":2591},{"type":44,"tag":100,"props":9771,"children":9772},{"style":113},[9773],{"type":50,"value":2596},{"type":44,"tag":100,"props":9775,"children":9776},{"style":400},[9777],{"type":50,"value":786},{"type":44,"tag":100,"props":9779,"children":9780},{"style":113},[9781],{"type":50,"value":2605},{"type":44,"tag":100,"props":9783,"children":9784},{"class":102,"line":626},[9785,9789,9793,9797,9801,9805],{"type":44,"tag":100,"props":9786,"children":9787},{"style":390},[9788],{"type":50,"value":2613},{"type":44,"tag":100,"props":9790,"children":9791},{"style":113},[9792],{"type":50,"value":1426},{"type":44,"tag":100,"props":9794,"children":9795},{"style":400},[9796],{"type":50,"value":786},{"type":44,"tag":100,"props":9798,"children":9799},{"style":113},[9800],{"type":50,"value":2626},{"type":44,"tag":100,"props":9802,"children":9803},{"style":390},[9804],{"type":50,"value":2591},{"type":44,"tag":100,"props":9806,"children":9807},{"style":119},[9808],{"type":50,"value":2635},{"type":44,"tag":100,"props":9810,"children":9811},{"class":102,"line":648},[9812,9816,9820,9824,9828,9832],{"type":44,"tag":100,"props":9813,"children":9814},{"style":390},[9815],{"type":50,"value":2725},{"type":44,"tag":100,"props":9817,"children":9818},{"style":400},[9819],{"type":50,"value":5990},{"type":44,"tag":100,"props":9821,"children":9822},{"style":113},[9823],{"type":50,"value":2478},{"type":44,"tag":100,"props":9825,"children":9826},{"style":400},[9827],{"type":50,"value":786},{"type":44,"tag":100,"props":9829,"children":9830},{"style":113},[9831],{"type":50,"value":2487},{"type":44,"tag":100,"props":9833,"children":9834},{"style":400},[9835],{"type":50,"value":1464},{"type":44,"tag":100,"props":9837,"children":9838},{"class":102,"line":705},[9839],{"type":44,"tag":100,"props":9840,"children":9841},{"style":400},[9842],{"type":50,"value":2643},{"type":44,"tag":100,"props":9844,"children":9845},{"class":102,"line":770},[9846,9851,9855],{"type":44,"tag":100,"props":9847,"children":9848},{"style":400},[9849],{"type":50,"value":9850},"daily_sessions ",{"type":44,"tag":100,"props":9852,"children":9853},{"style":390},[9854],{"type":50,"value":408},{"type":44,"tag":100,"props":9856,"children":9857},{"style":400},[9858],{"type":50,"value":2401},{"type":44,"tag":100,"props":9860,"children":9861},{"class":102,"line":794},[9862],{"type":44,"tag":100,"props":9863,"children":9864},{"style":390},[9865],{"type":50,"value":2409},{"type":44,"tag":100,"props":9867,"children":9868},{"class":102,"line":808},[9869],{"type":44,"tag":100,"props":9870,"children":9871},{"style":400},[9872],{"type":50,"value":5721},{"type":44,"tag":100,"props":9874,"children":9875},{"class":102,"line":1484},[9876,9880,9884,9888,9892],{"type":44,"tag":100,"props":9877,"children":9878},{"style":113},[9879],{"type":50,"value":5574},{"type":44,"tag":100,"props":9881,"children":9882},{"style":400},[9883],{"type":50,"value":5740},{"type":44,"tag":100,"props":9885,"children":9886},{"style":390},[9887],{"type":50,"value":408},{"type":44,"tag":100,"props":9889,"children":9890},{"style":390},[9891],{"type":50,"value":5749},{"type":44,"tag":100,"props":9893,"children":9894},{"style":400},[9895],{"type":50,"value":2431},{"type":44,"tag":100,"props":9897,"children":9898},{"class":102,"line":2747},[9899,9903,9907,9911],{"type":44,"tag":100,"props":9900,"children":9901},{"style":113},[9902],{"type":50,"value":5574},{"type":44,"tag":100,"props":9904,"children":9905},{"style":400},[9906],{"type":50,"value":5765},{"type":44,"tag":100,"props":9908,"children":9909},{"style":390},[9910],{"type":50,"value":408},{"type":44,"tag":100,"props":9912,"children":9913},{"style":400},[9914],{"type":50,"value":9915}," new_visitors,\n",{"type":44,"tag":100,"props":9917,"children":9918},{"class":102,"line":2769},[9919,9923,9927,9931],{"type":44,"tag":100,"props":9920,"children":9921},{"style":113},[9922],{"type":50,"value":5574},{"type":44,"tag":100,"props":9924,"children":9925},{"style":400},[9926],{"type":50,"value":5786},{"type":44,"tag":100,"props":9928,"children":9929},{"style":390},[9930],{"type":50,"value":408},{"type":44,"tag":100,"props":9932,"children":9933},{"style":400},[9934],{"type":50,"value":5795},{"type":44,"tag":100,"props":9936,"children":9937},{"class":102,"line":2791},[9938,9942,9946,9950],{"type":44,"tag":100,"props":9939,"children":9940},{"style":390},[9941],{"type":50,"value":2524},{"type":44,"tag":100,"props":9943,"children":9944},{"style":113},[9945],{"type":50,"value":781},{"type":44,"tag":100,"props":9947,"children":9948},{"style":400},[9949],{"type":50,"value":786},{"type":44,"tag":100,"props":9951,"children":9952},{"style":113},[9953],{"type":50,"value":5815},{"type":44,"tag":100,"props":9955,"children":9956},{"class":102,"line":2856},[9957,9961],{"type":44,"tag":100,"props":9958,"children":9959},{"style":390},[9960],{"type":50,"value":2725},{"type":44,"tag":100,"props":9962,"children":9963},{"style":400},[9964],{"type":50,"value":9965}," session_date\n",{"type":44,"tag":100,"props":9967,"children":9968},{"class":102,"line":2898},[9969],{"type":44,"tag":100,"props":9970,"children":9971},{"style":400},[9972],{"type":50,"value":2643},{"type":44,"tag":100,"props":9974,"children":9975},{"class":102,"line":2977},[9976,9981,9985],{"type":44,"tag":100,"props":9977,"children":9978},{"style":400},[9979],{"type":50,"value":9980},"daily_spend ",{"type":44,"tag":100,"props":9982,"children":9983},{"style":390},[9984],{"type":50,"value":408},{"type":44,"tag":100,"props":9986,"children":9987},{"style":400},[9988],{"type":50,"value":2401},{"type":44,"tag":100,"props":9990,"children":9991},{"class":102,"line":3015},[9992],{"type":44,"tag":100,"props":9993,"children":9994},{"style":390},[9995],{"type":50,"value":2409},{"type":44,"tag":100,"props":9997,"children":9998},{"class":102,"line":3081},[9999],{"type":44,"tag":100,"props":10000,"children":10001},{"style":400},[10002],{"type":50,"value":5558},{"type":44,"tag":100,"props":10004,"children":10005},{"class":102,"line":3094},[10006,10010,10014,10018],{"type":44,"tag":100,"props":10007,"children":10008},{"style":113},[10009],{"type":50,"value":5574},{"type":44,"tag":100,"props":10011,"children":10012},{"style":400},[10013],{"type":50,"value":5579},{"type":44,"tag":100,"props":10015,"children":10016},{"style":390},[10017],{"type":50,"value":408},{"type":44,"tag":100,"props":10019,"children":10020},{"style":400},[10021],{"type":50,"value":10022}," total_ad_spend\n",{"type":44,"tag":100,"props":10024,"children":10025},{"class":102,"line":3108},[10026,10030,10034,10038],{"type":44,"tag":100,"props":10027,"children":10028},{"style":390},[10029],{"type":50,"value":2524},{"type":44,"tag":100,"props":10031,"children":10032},{"style":113},[10033],{"type":50,"value":781},{"type":44,"tag":100,"props":10035,"children":10036},{"style":400},[10037],{"type":50,"value":786},{"type":44,"tag":100,"props":10039,"children":10040},{"style":113},[10041],{"type":50,"value":5671},{"type":44,"tag":100,"props":10043,"children":10044},{"class":102,"line":3147},[10045,10049],{"type":44,"tag":100,"props":10046,"children":10047},{"style":390},[10048],{"type":50,"value":2725},{"type":44,"tag":100,"props":10050,"children":10051},{"style":400},[10052],{"type":50,"value":10053}," spend_date\n",{"type":44,"tag":100,"props":10055,"children":10056},{"class":102,"line":3188},[10057],{"type":44,"tag":100,"props":10058,"children":10059},{"style":400},[10060],{"type":50,"value":1464},{"type":44,"tag":100,"props":10062,"children":10063},{"class":102,"line":6054},[10064],{"type":44,"tag":100,"props":10065,"children":10066},{"style":390},[10067],{"type":50,"value":393},{"type":44,"tag":100,"props":10069,"children":10070},{"class":102,"line":6081},[10071,10076,10080,10084,10088],{"type":44,"tag":100,"props":10072,"children":10073},{"style":113},[10074],{"type":50,"value":10075},"    r",{"type":44,"tag":100,"props":10077,"children":10078},{"style":400},[10079],{"type":50,"value":786},{"type":44,"tag":100,"props":10081,"children":10082},{"style":113},[10083],{"type":50,"value":2487},{"type":44,"tag":100,"props":10085,"children":10086},{"style":390},[10087],{"type":50,"value":1661},{"type":44,"tag":100,"props":10089,"children":10090},{"style":400},[10091],{"type":50,"value":10092}," kpi_date,\n",{"type":44,"tag":100,"props":10094,"children":10095},{"class":102,"line":6089},[10096,10100,10104,10109],{"type":44,"tag":100,"props":10097,"children":10098},{"style":113},[10099],{"type":50,"value":10075},{"type":44,"tag":100,"props":10101,"children":10102},{"style":400},[10103],{"type":50,"value":786},{"type":44,"tag":100,"props":10105,"children":10106},{"style":113},[10107],{"type":50,"value":10108},"net_revenue",{"type":44,"tag":100,"props":10110,"children":10111},{"style":400},[10112],{"type":50,"value":2431},{"type":44,"tag":100,"props":10114,"children":10115},{"class":102,"line":6097},[10116,10120,10124,10129],{"type":44,"tag":100,"props":10117,"children":10118},{"style":113},[10119],{"type":50,"value":10075},{"type":44,"tag":100,"props":10121,"children":10122},{"style":400},[10123],{"type":50,"value":786},{"type":44,"tag":100,"props":10125,"children":10126},{"style":113},[10127],{"type":50,"value":10128},"total_orders",{"type":44,"tag":100,"props":10130,"children":10131},{"style":400},[10132],{"type":50,"value":2431},{"type":44,"tag":100,"props":10134,"children":10135},{"class":102,"line":6123},[10136,10140,10144,10149],{"type":44,"tag":100,"props":10137,"children":10138},{"style":113},[10139],{"type":50,"value":10075},{"type":44,"tag":100,"props":10141,"children":10142},{"style":400},[10143],{"type":50,"value":786},{"type":44,"tag":100,"props":10145,"children":10146},{"style":113},[10147],{"type":50,"value":10148},"paid_orders",{"type":44,"tag":100,"props":10150,"children":10151},{"style":400},[10152],{"type":50,"value":2431},{"type":44,"tag":100,"props":10154,"children":10155},{"class":102,"line":6143},[10156,10160,10164,10169],{"type":44,"tag":100,"props":10157,"children":10158},{"style":113},[10159],{"type":50,"value":10075},{"type":44,"tag":100,"props":10161,"children":10162},{"style":400},[10163],{"type":50,"value":786},{"type":44,"tag":100,"props":10165,"children":10166},{"style":113},[10167],{"type":50,"value":10168},"avg_order_value",{"type":44,"tag":100,"props":10170,"children":10171},{"style":400},[10172],{"type":50,"value":2431},{"type":44,"tag":100,"props":10174,"children":10175},{"class":102,"line":6164},[10176,10180,10184,10189],{"type":44,"tag":100,"props":10177,"children":10178},{"style":113},[10179],{"type":50,"value":10075},{"type":44,"tag":100,"props":10181,"children":10182},{"style":400},[10183],{"type":50,"value":786},{"type":44,"tag":100,"props":10185,"children":10186},{"style":113},[10187],{"type":50,"value":10188},"cancellation_rate",{"type":44,"tag":100,"props":10190,"children":10191},{"style":400},[10192],{"type":50,"value":2431},{"type":44,"tag":100,"props":10194,"children":10195},{"class":102,"line":6185},[10196,10201,10205,10210],{"type":44,"tag":100,"props":10197,"children":10198},{"style":113},[10199],{"type":50,"value":10200},"    dc",{"type":44,"tag":100,"props":10202,"children":10203},{"style":400},[10204],{"type":50,"value":786},{"type":44,"tag":100,"props":10206,"children":10207},{"style":113},[10208],{"type":50,"value":10209},"new_customers",{"type":44,"tag":100,"props":10211,"children":10212},{"style":400},[10213],{"type":50,"value":2431},{"type":44,"tag":100,"props":10215,"children":10216},{"class":102,"line":6206},[10217,10221,10225,10230],{"type":44,"tag":100,"props":10218,"children":10219},{"style":113},[10220],{"type":50,"value":10200},{"type":44,"tag":100,"props":10222,"children":10223},{"style":400},[10224],{"type":50,"value":786},{"type":44,"tag":100,"props":10226,"children":10227},{"style":113},[10228],{"type":50,"value":10229},"returning_customers",{"type":44,"tag":100,"props":10231,"children":10232},{"style":400},[10233],{"type":50,"value":2431},{"type":44,"tag":100,"props":10235,"children":10236},{"class":102,"line":6227},[10237,10242,10246,10250],{"type":44,"tag":100,"props":10238,"children":10239},{"style":113},[10240],{"type":50,"value":10241},"    ds",{"type":44,"tag":100,"props":10243,"children":10244},{"style":400},[10245],{"type":50,"value":786},{"type":44,"tag":100,"props":10247,"children":10248},{"style":113},[10249],{"type":50,"value":6242},{"type":44,"tag":100,"props":10251,"children":10252},{"style":400},[10253],{"type":50,"value":2431},{"type":44,"tag":100,"props":10255,"children":10256},{"class":102,"line":6249},[10257,10261,10265,10270],{"type":44,"tag":100,"props":10258,"children":10259},{"style":113},[10260],{"type":50,"value":10241},{"type":44,"tag":100,"props":10262,"children":10263},{"style":400},[10264],{"type":50,"value":786},{"type":44,"tag":100,"props":10266,"children":10267},{"style":113},[10268],{"type":50,"value":10269},"new_visitors",{"type":44,"tag":100,"props":10271,"children":10272},{"style":400},[10273],{"type":50,"value":2431},{"type":44,"tag":100,"props":10275,"children":10276},{"class":102,"line":6270},[10277,10281,10285,10290,10294,10299,10303,10307,10311,10315,10319,10323,10327,10331,10335,10339,10343,10347,10351,10355,10359],{"type":44,"tag":100,"props":10278,"children":10279},{"style":113},[10280],{"type":50,"value":654},{"type":44,"tag":100,"props":10282,"children":10283},{"style":400},[10284],{"type":50,"value":427},{"type":44,"tag":100,"props":10286,"children":10287},{"style":113},[10288],{"type":50,"value":10289},"ds",{"type":44,"tag":100,"props":10291,"children":10292},{"style":400},[10293],{"type":50,"value":786},{"type":44,"tag":100,"props":10295,"children":10296},{"style":113},[10297],{"type":50,"value":10298},"purchases",{"type":44,"tag":100,"props":10300,"children":10301},{"style":390},[10302],{"type":50,"value":6319},{"type":44,"tag":100,"props":10304,"children":10305},{"style":113},[10306],{"type":50,"value":669},{"type":44,"tag":100,"props":10308,"children":10309},{"style":400},[10310],{"type":50,"value":427},{"type":44,"tag":100,"props":10312,"children":10313},{"style":113},[10314],{"type":50,"value":10289},{"type":44,"tag":100,"props":10316,"children":10317},{"style":400},[10318],{"type":50,"value":786},{"type":44,"tag":100,"props":10320,"children":10321},{"style":113},[10322],{"type":50,"value":6242},{"type":44,"tag":100,"props":10324,"children":10325},{"style":400},[10326],{"type":50,"value":750},{"type":44,"tag":100,"props":10328,"children":10329},{"style":113},[10330],{"type":50,"value":679},{"type":44,"tag":100,"props":10332,"children":10333},{"style":400},[10334],{"type":50,"value":437},{"type":44,"tag":100,"props":10336,"children":10337},{"style":390},[10338],{"type":50,"value":432},{"type":44,"tag":100,"props":10340,"children":10341},{"style":113},[10342],{"type":50,"value":745},{"type":44,"tag":100,"props":10344,"children":10345},{"style":400},[10346],{"type":50,"value":750},{"type":44,"tag":100,"props":10348,"children":10349},{"style":113},[10350],{"type":50,"value":689},{"type":44,"tag":100,"props":10352,"children":10353},{"style":400},[10354],{"type":50,"value":437},{"type":44,"tag":100,"props":10356,"children":10357},{"style":390},[10358],{"type":50,"value":408},{"type":44,"tag":100,"props":10360,"children":10361},{"style":400},[10362],{"type":50,"value":10363}," conversion_rate,\n",{"type":44,"tag":100,"props":10365,"children":10366},{"class":102,"line":6292},[10367,10372,10376,10381],{"type":44,"tag":100,"props":10368,"children":10369},{"style":113},[10370],{"type":50,"value":10371},"    sp",{"type":44,"tag":100,"props":10373,"children":10374},{"style":400},[10375],{"type":50,"value":786},{"type":44,"tag":100,"props":10377,"children":10378},{"style":113},[10379],{"type":50,"value":10380},"total_ad_spend",{"type":44,"tag":100,"props":10382,"children":10383},{"style":400},[10384],{"type":50,"value":2431},{"type":44,"tag":100,"props":10386,"children":10387},{"class":102,"line":6371},[10388,10392,10396,10401,10405,10409,10413,10417,10421,10426,10430,10434,10438,10442,10446,10450,10454,10458],{"type":44,"tag":100,"props":10389,"children":10390},{"style":113},[10391],{"type":50,"value":654},{"type":44,"tag":100,"props":10393,"children":10394},{"style":400},[10395],{"type":50,"value":427},{"type":44,"tag":100,"props":10397,"children":10398},{"style":113},[10399],{"type":50,"value":10400},"r",{"type":44,"tag":100,"props":10402,"children":10403},{"style":400},[10404],{"type":50,"value":786},{"type":44,"tag":100,"props":10406,"children":10407},{"style":113},[10408],{"type":50,"value":10108},{"type":44,"tag":100,"props":10410,"children":10411},{"style":390},[10412],{"type":50,"value":6319},{"type":44,"tag":100,"props":10414,"children":10415},{"style":113},[10416],{"type":50,"value":669},{"type":44,"tag":100,"props":10418,"children":10419},{"style":400},[10420],{"type":50,"value":427},{"type":44,"tag":100,"props":10422,"children":10423},{"style":113},[10424],{"type":50,"value":10425},"sp",{"type":44,"tag":100,"props":10427,"children":10428},{"style":400},[10429],{"type":50,"value":786},{"type":44,"tag":100,"props":10431,"children":10432},{"style":113},[10433],{"type":50,"value":10380},{"type":44,"tag":100,"props":10435,"children":10436},{"style":400},[10437],{"type":50,"value":750},{"type":44,"tag":100,"props":10439,"children":10440},{"style":113},[10441],{"type":50,"value":679},{"type":44,"tag":100,"props":10443,"children":10444},{"style":400},[10445],{"type":50,"value":684},{"type":44,"tag":100,"props":10447,"children":10448},{"style":113},[10449],{"type":50,"value":689},{"type":44,"tag":100,"props":10451,"children":10452},{"style":400},[10453],{"type":50,"value":437},{"type":44,"tag":100,"props":10455,"children":10456},{"style":390},[10457],{"type":50,"value":408},{"type":44,"tag":100,"props":10459,"children":10460},{"style":400},[10461],{"type":50,"value":10462}," overall_roas\n",{"type":44,"tag":100,"props":10464,"children":10465},{"class":102,"line":6448},[10466,10470,10475,10479,10484],{"type":44,"tag":100,"props":10467,"children":10468},{"style":390},[10469],{"type":50,"value":776},{"type":44,"tag":100,"props":10471,"children":10472},{"style":113},[10473],{"type":50,"value":10474}," reports",{"type":44,"tag":100,"props":10476,"children":10477},{"style":400},[10478],{"type":50,"value":786},{"type":44,"tag":100,"props":10480,"children":10481},{"style":113},[10482],{"type":50,"value":10483},"rpt_daily_revenue",{"type":44,"tag":100,"props":10485,"children":10486},{"style":400},[10487],{"type":50,"value":10488}," r\n",{"type":44,"tag":100,"props":10490,"children":10491},{"class":102,"line":6537},[10492,10496,10501,10506,10511,10515,10519,10523,10528,10532],{"type":44,"tag":100,"props":10493,"children":10494},{"style":390},[10495],{"type":50,"value":6556},{"type":44,"tag":100,"props":10497,"children":10498},{"style":400},[10499],{"type":50,"value":10500}," daily_customers dc ",{"type":44,"tag":100,"props":10502,"children":10503},{"style":390},[10504],{"type":50,"value":10505},"ON",{"type":44,"tag":100,"props":10507,"children":10508},{"style":113},[10509],{"type":50,"value":10510}," r",{"type":44,"tag":100,"props":10512,"children":10513},{"style":400},[10514],{"type":50,"value":786},{"type":44,"tag":100,"props":10516,"children":10517},{"style":113},[10518],{"type":50,"value":2487},{"type":44,"tag":100,"props":10520,"children":10521},{"style":390},[10522],{"type":50,"value":2591},{"type":44,"tag":100,"props":10524,"children":10525},{"style":113},[10526],{"type":50,"value":10527}," dc",{"type":44,"tag":100,"props":10529,"children":10530},{"style":400},[10531],{"type":50,"value":786},{"type":44,"tag":100,"props":10533,"children":10534},{"style":113},[10535],{"type":50,"value":6686},{"type":44,"tag":100,"props":10537,"children":10538},{"class":102,"line":6550},[10539,10543,10548,10552,10556,10560,10564,10568,10573,10577],{"type":44,"tag":100,"props":10540,"children":10541},{"style":390},[10542],{"type":50,"value":6556},{"type":44,"tag":100,"props":10544,"children":10545},{"style":400},[10546],{"type":50,"value":10547}," daily_sessions ds ",{"type":44,"tag":100,"props":10549,"children":10550},{"style":390},[10551],{"type":50,"value":10505},{"type":44,"tag":100,"props":10553,"children":10554},{"style":113},[10555],{"type":50,"value":10510},{"type":44,"tag":100,"props":10557,"children":10558},{"style":400},[10559],{"type":50,"value":786},{"type":44,"tag":100,"props":10561,"children":10562},{"style":113},[10563],{"type":50,"value":2487},{"type":44,"tag":100,"props":10565,"children":10566},{"style":390},[10567],{"type":50,"value":2591},{"type":44,"tag":100,"props":10569,"children":10570},{"style":113},[10571],{"type":50,"value":10572}," ds",{"type":44,"tag":100,"props":10574,"children":10575},{"style":400},[10576],{"type":50,"value":786},{"type":44,"tag":100,"props":10578,"children":10579},{"style":113},[10580],{"type":50,"value":6024},{"type":44,"tag":100,"props":10582,"children":10583},{"class":102,"line":6564},[10584,10588,10593,10597,10601,10605,10609,10613,10618,10622],{"type":44,"tag":100,"props":10585,"children":10586},{"style":390},[10587],{"type":50,"value":6556},{"type":44,"tag":100,"props":10589,"children":10590},{"style":400},[10591],{"type":50,"value":10592}," daily_spend sp ",{"type":44,"tag":100,"props":10594,"children":10595},{"style":390},[10596],{"type":50,"value":10505},{"type":44,"tag":100,"props":10598,"children":10599},{"style":113},[10600],{"type":50,"value":10510},{"type":44,"tag":100,"props":10602,"children":10603},{"style":400},[10604],{"type":50,"value":786},{"type":44,"tag":100,"props":10606,"children":10607},{"style":113},[10608],{"type":50,"value":2487},{"type":44,"tag":100,"props":10610,"children":10611},{"style":390},[10612],{"type":50,"value":2591},{"type":44,"tag":100,"props":10614,"children":10615},{"style":113},[10616],{"type":50,"value":10617}," sp",{"type":44,"tag":100,"props":10619,"children":10620},{"style":400},[10621],{"type":50,"value":786},{"type":44,"tag":100,"props":10623,"children":10624},{"style":113},[10625],{"type":50,"value":10626},"spend_date\n",{"type":44,"tag":100,"props":10628,"children":10629},{"class":102,"line":6601},[10630,10634,10639],{"type":44,"tag":100,"props":10631,"children":10632},{"style":390},[10633],{"type":50,"value":814},{"type":44,"tag":100,"props":10635,"children":10636},{"style":400},[10637],{"type":50,"value":10638}," kpi_date ",{"type":44,"tag":100,"props":10640,"children":10641},{"style":390},[10642],{"type":50,"value":10643},"DESC\n",{"type":44,"tag":203,"props":10645,"children":10646},{"v-slot:bigquery":7},[10647],{"type":44,"tag":90,"props":10648,"children":10650},{"className":208,"code":10649,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_daily_kpis\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - reports.rpt_daily_revenue\n  - staging.stg_customers\n  - staging.stg_orders\n  - staging.stg_web_sessions\n  - staging.stg_marketing_spend\ncolumns:\n  - name: kpi_date\n    type: date\n    checks:\n      - name: not_null\n      - name: unique\n@bruin *\u002F\n\nWITH daily_customers AS (\n    SELECT\n        DATE(o.order_date) AS order_date,\n        COUNTIF(DATE(c.first_seen_at) = DATE(o.order_date)) AS new_customers,\n        COUNTIF(DATE(c.first_seen_at) \u003C DATE(o.order_date)) AS returning_customers\n    FROM staging.stg_orders o\n    LEFT JOIN staging.stg_customers c\n        ON o.customer_email = c.customer_email\n    WHERE o.payment_status = 'paid'\n    GROUP BY DATE(o.order_date)\n),\ndaily_sessions AS (\n    SELECT\n        session_date,\n        sum(total_sessions) AS sessions,\n        sum(new_users) AS new_visitors,\n        sum(purchase_events) AS purchases\n    FROM staging.stg_web_sessions\n    GROUP BY session_date\n),\ndaily_spend AS (\n    SELECT\n        spend_date,\n        sum(spend) AS total_ad_spend\n    FROM staging.stg_marketing_spend\n    GROUP BY spend_date\n)\nSELECT\n    r.order_date AS kpi_date,\n    r.net_revenue,\n    r.total_orders,\n    r.paid_orders,\n    r.avg_order_value,\n    r.cancellation_rate,\n    dc.new_customers,\n    dc.returning_customers,\n    ds.sessions,\n    ds.new_visitors,\n    round(ds.purchases \u002F NULLIF(ds.sessions, 0) * 100, 2) AS conversion_rate,\n    sp.total_ad_spend,\n    round(r.net_revenue \u002F NULLIF(sp.total_ad_spend, 0), 2) AS overall_roas\nFROM reports.rpt_daily_revenue r\nLEFT JOIN daily_customers dc ON r.order_date = dc.order_date\nLEFT JOIN daily_sessions ds ON r.order_date = ds.session_date\nLEFT JOIN daily_spend sp ON r.order_date = sp.spend_date\nORDER BY kpi_date DESC\n",[10651],{"type":44,"tag":81,"props":10652,"children":10653},{"__ignoreMap":7},[10654,10661,10668,10675,10682,10689,10696,10703,10710,10717,10724,10731,10738,10745,10752,10759,10766,10773,10780,10787,10806,10813,10848,10916,10983,11006,11029,11064,11091,11122,11129,11144,11151,11158,11181,11200,11219,11238,11249,11256,11271,11278,11285,11304,11323,11334,11341,11348,11371,11390,11409,11428,11447,11466,11485,11504,11523,11542,11629,11648,11723,11746,11789,11832,11875],{"type":44,"tag":100,"props":10655,"children":10656},{"class":102,"line":103},[10657],{"type":44,"tag":100,"props":10658,"children":10659},{"style":220},[10660],{"type":50,"value":223},{"type":44,"tag":100,"props":10662,"children":10663},{"class":102,"line":226},[10664],{"type":44,"tag":100,"props":10665,"children":10666},{"style":220},[10667],{"type":50,"value":9404},{"type":44,"tag":100,"props":10669,"children":10670},{"class":102,"line":235},[10671],{"type":44,"tag":100,"props":10672,"children":10673},{"style":220},[10674],{"type":50,"value":241},{"type":44,"tag":100,"props":10676,"children":10677},{"class":102,"line":24},[10678],{"type":44,"tag":100,"props":10679,"children":10680},{"style":220},[10681],{"type":50,"value":249},{"type":44,"tag":100,"props":10683,"children":10684},{"class":102,"line":252},[10685],{"type":44,"tag":100,"props":10686,"children":10687},{"style":220},[10688],{"type":50,"value":258},{"type":44,"tag":100,"props":10690,"children":10691},{"class":102,"line":261},[10692],{"type":44,"tag":100,"props":10693,"children":10694},{"style":220},[10695],{"type":50,"value":267},{"type":44,"tag":100,"props":10697,"children":10698},{"class":102,"line":270},[10699],{"type":44,"tag":100,"props":10700,"children":10701},{"style":220},[10702],{"type":50,"value":9440},{"type":44,"tag":100,"props":10704,"children":10705},{"class":102,"line":279},[10706],{"type":44,"tag":100,"props":10707,"children":10708},{"style":220},[10709],{"type":50,"value":2329},{"type":44,"tag":100,"props":10711,"children":10712},{"class":102,"line":288},[10713],{"type":44,"tag":100,"props":10714,"children":10715},{"style":220},[10716],{"type":50,"value":276},{"type":44,"tag":100,"props":10718,"children":10719},{"class":102,"line":297},[10720],{"type":44,"tag":100,"props":10721,"children":10722},{"style":220},[10723],{"type":50,"value":5466},{"type":44,"tag":100,"props":10725,"children":10726},{"class":102,"line":306},[10727],{"type":44,"tag":100,"props":10728,"children":10729},{"style":220},[10730],{"type":50,"value":5458},{"type":44,"tag":100,"props":10732,"children":10733},{"class":102,"line":315},[10734],{"type":44,"tag":100,"props":10735,"children":10736},{"style":220},[10737],{"type":50,"value":285},{"type":44,"tag":100,"props":10739,"children":10740},{"class":102,"line":324},[10741],{"type":44,"tag":100,"props":10742,"children":10743},{"style":220},[10744],{"type":50,"value":9483},{"type":44,"tag":100,"props":10746,"children":10747},{"class":102,"line":333},[10748],{"type":44,"tag":100,"props":10749,"children":10750},{"style":220},[10751],{"type":50,"value":303},{"type":44,"tag":100,"props":10753,"children":10754},{"class":102,"line":11},[10755],{"type":44,"tag":100,"props":10756,"children":10757},{"style":220},[10758],{"type":50,"value":312},{"type":44,"tag":100,"props":10760,"children":10761},{"class":102,"line":350},[10762],{"type":44,"tag":100,"props":10763,"children":10764},{"style":220},[10765],{"type":50,"value":321},{"type":44,"tag":100,"props":10767,"children":10768},{"class":102,"line":359},[10769],{"type":44,"tag":100,"props":10770,"children":10771},{"style":220},[10772],{"type":50,"value":330},{"type":44,"tag":100,"props":10774,"children":10775},{"class":102,"line":368},[10776],{"type":44,"tag":100,"props":10777,"children":10778},{"style":220},[10779],{"type":50,"value":374},{"type":44,"tag":100,"props":10781,"children":10782},{"class":102,"line":377},[10783],{"type":44,"tag":100,"props":10784,"children":10785},{"emptyLinePlaceholder":23},[10786],{"type":50,"value":383},{"type":44,"tag":100,"props":10788,"children":10789},{"class":102,"line":386},[10790,10794,10798,10802],{"type":44,"tag":100,"props":10791,"children":10792},{"style":390},[10793],{"type":50,"value":2387},{"type":44,"tag":100,"props":10795,"children":10796},{"style":400},[10797],{"type":50,"value":9537},{"type":44,"tag":100,"props":10799,"children":10800},{"style":390},[10801],{"type":50,"value":408},{"type":44,"tag":100,"props":10803,"children":10804},{"style":400},[10805],{"type":50,"value":2401},{"type":44,"tag":100,"props":10807,"children":10808},{"class":102,"line":396},[10809],{"type":44,"tag":100,"props":10810,"children":10811},{"style":390},[10812],{"type":50,"value":2409},{"type":44,"tag":100,"props":10814,"children":10815},{"class":102,"line":416},[10816,10820,10824,10828,10832,10836,10840,10844],{"type":44,"tag":100,"props":10817,"children":10818},{"style":390},[10819],{"type":50,"value":7207},{"type":44,"tag":100,"props":10821,"children":10822},{"style":400},[10823],{"type":50,"value":427},{"type":44,"tag":100,"props":10825,"children":10826},{"style":113},[10827],{"type":50,"value":2478},{"type":44,"tag":100,"props":10829,"children":10830},{"style":400},[10831],{"type":50,"value":786},{"type":44,"tag":100,"props":10833,"children":10834},{"style":113},[10835],{"type":50,"value":2487},{"type":44,"tag":100,"props":10837,"children":10838},{"style":400},[10839],{"type":50,"value":437},{"type":44,"tag":100,"props":10841,"children":10842},{"style":390},[10843],{"type":50,"value":408},{"type":44,"tag":100,"props":10845,"children":10846},{"style":400},[10847],{"type":50,"value":413},{"type":44,"tag":100,"props":10849,"children":10850},{"class":102,"line":449},[10851,10856,10860,10864,10868,10872,10876,10880,10884,10888,10892,10896,10900,10904,10908,10912],{"type":44,"tag":100,"props":10852,"children":10853},{"style":400},[10854],{"type":50,"value":10855},"        COUNTIF(",{"type":44,"tag":100,"props":10857,"children":10858},{"style":390},[10859],{"type":50,"value":1656},{"type":44,"tag":100,"props":10861,"children":10862},{"style":400},[10863],{"type":50,"value":427},{"type":44,"tag":100,"props":10865,"children":10866},{"style":113},[10867],{"type":50,"value":2444},{"type":44,"tag":100,"props":10869,"children":10870},{"style":400},[10871],{"type":50,"value":786},{"type":44,"tag":100,"props":10873,"children":10874},{"style":113},[10875],{"type":50,"value":2453},{"type":44,"tag":100,"props":10877,"children":10878},{"style":400},[10879],{"type":50,"value":437},{"type":44,"tag":100,"props":10881,"children":10882},{"style":390},[10883],{"type":50,"value":460},{"type":44,"tag":100,"props":10885,"children":10886},{"style":390},[10887],{"type":50,"value":1476},{"type":44,"tag":100,"props":10889,"children":10890},{"style":400},[10891],{"type":50,"value":427},{"type":44,"tag":100,"props":10893,"children":10894},{"style":113},[10895],{"type":50,"value":2478},{"type":44,"tag":100,"props":10897,"children":10898},{"style":400},[10899],{"type":50,"value":786},{"type":44,"tag":100,"props":10901,"children":10902},{"style":113},[10903],{"type":50,"value":2487},{"type":44,"tag":100,"props":10905,"children":10906},{"style":400},[10907],{"type":50,"value":9633},{"type":44,"tag":100,"props":10909,"children":10910},{"style":390},[10911],{"type":50,"value":408},{"type":44,"tag":100,"props":10913,"children":10914},{"style":400},[10915],{"type":50,"value":9642},{"type":44,"tag":100,"props":10917,"children":10918},{"class":102,"line":481},[10919,10923,10927,10931,10935,10939,10943,10947,10951,10955,10959,10963,10967,10971,10975,10979],{"type":44,"tag":100,"props":10920,"children":10921},{"style":400},[10922],{"type":50,"value":10855},{"type":44,"tag":100,"props":10924,"children":10925},{"style":390},[10926],{"type":50,"value":1656},{"type":44,"tag":100,"props":10928,"children":10929},{"style":400},[10930],{"type":50,"value":427},{"type":44,"tag":100,"props":10932,"children":10933},{"style":113},[10934],{"type":50,"value":2444},{"type":44,"tag":100,"props":10936,"children":10937},{"style":400},[10938],{"type":50,"value":786},{"type":44,"tag":100,"props":10940,"children":10941},{"style":113},[10942],{"type":50,"value":2453},{"type":44,"tag":100,"props":10944,"children":10945},{"style":400},[10946],{"type":50,"value":437},{"type":44,"tag":100,"props":10948,"children":10949},{"style":390},[10950],{"type":50,"value":9670},{"type":44,"tag":100,"props":10952,"children":10953},{"style":390},[10954],{"type":50,"value":1476},{"type":44,"tag":100,"props":10956,"children":10957},{"style":400},[10958],{"type":50,"value":427},{"type":44,"tag":100,"props":10960,"children":10961},{"style":113},[10962],{"type":50,"value":2478},{"type":44,"tag":100,"props":10964,"children":10965},{"style":400},[10966],{"type":50,"value":786},{"type":44,"tag":100,"props":10968,"children":10969},{"style":113},[10970],{"type":50,"value":2487},{"type":44,"tag":100,"props":10972,"children":10973},{"style":400},[10974],{"type":50,"value":9633},{"type":44,"tag":100,"props":10976,"children":10977},{"style":390},[10978],{"type":50,"value":408},{"type":44,"tag":100,"props":10980,"children":10981},{"style":400},[10982],{"type":50,"value":9699},{"type":44,"tag":100,"props":10984,"children":10985},{"class":102,"line":508},[10986,10990,10994,10998,11002],{"type":44,"tag":100,"props":10987,"children":10988},{"style":390},[10989],{"type":50,"value":2524},{"type":44,"tag":100,"props":10991,"children":10992},{"style":113},[10993],{"type":50,"value":781},{"type":44,"tag":100,"props":10995,"children":10996},{"style":400},[10997],{"type":50,"value":786},{"type":44,"tag":100,"props":10999,"children":11000},{"style":113},[11001],{"type":50,"value":1408},{"type":44,"tag":100,"props":11003,"children":11004},{"style":400},[11005],{"type":50,"value":1413},{"type":44,"tag":100,"props":11007,"children":11008},{"class":102,"line":531},[11009,11013,11017,11021,11025],{"type":44,"tag":100,"props":11010,"children":11011},{"style":390},[11012],{"type":50,"value":9730},{"type":44,"tag":100,"props":11014,"children":11015},{"style":113},[11016],{"type":50,"value":781},{"type":44,"tag":100,"props":11018,"children":11019},{"style":400},[11020],{"type":50,"value":786},{"type":44,"tag":100,"props":11022,"children":11023},{"style":113},[11024],{"type":50,"value":2561},{"type":44,"tag":100,"props":11026,"children":11027},{"style":400},[11028],{"type":50,"value":2566},{"type":44,"tag":100,"props":11030,"children":11031},{"class":102,"line":604},[11032,11036,11040,11044,11048,11052,11056,11060],{"type":44,"tag":100,"props":11033,"children":11034},{"style":390},[11035],{"type":50,"value":2574},{"type":44,"tag":100,"props":11037,"children":11038},{"style":113},[11039],{"type":50,"value":1426},{"type":44,"tag":100,"props":11041,"children":11042},{"style":400},[11043],{"type":50,"value":786},{"type":44,"tag":100,"props":11045,"children":11046},{"style":113},[11047],{"type":50,"value":2426},{"type":44,"tag":100,"props":11049,"children":11050},{"style":390},[11051],{"type":50,"value":2591},{"type":44,"tag":100,"props":11053,"children":11054},{"style":113},[11055],{"type":50,"value":2596},{"type":44,"tag":100,"props":11057,"children":11058},{"style":400},[11059],{"type":50,"value":786},{"type":44,"tag":100,"props":11061,"children":11062},{"style":113},[11063],{"type":50,"value":2605},{"type":44,"tag":100,"props":11065,"children":11066},{"class":102,"line":626},[11067,11071,11075,11079,11083,11087],{"type":44,"tag":100,"props":11068,"children":11069},{"style":390},[11070],{"type":50,"value":2613},{"type":44,"tag":100,"props":11072,"children":11073},{"style":113},[11074],{"type":50,"value":1426},{"type":44,"tag":100,"props":11076,"children":11077},{"style":400},[11078],{"type":50,"value":786},{"type":44,"tag":100,"props":11080,"children":11081},{"style":113},[11082],{"type":50,"value":2626},{"type":44,"tag":100,"props":11084,"children":11085},{"style":390},[11086],{"type":50,"value":2591},{"type":44,"tag":100,"props":11088,"children":11089},{"style":119},[11090],{"type":50,"value":2635},{"type":44,"tag":100,"props":11092,"children":11093},{"class":102,"line":648},[11094,11098,11102,11106,11110,11114,11118],{"type":44,"tag":100,"props":11095,"children":11096},{"style":390},[11097],{"type":50,"value":2725},{"type":44,"tag":100,"props":11099,"children":11100},{"style":390},[11101],{"type":50,"value":1476},{"type":44,"tag":100,"props":11103,"children":11104},{"style":400},[11105],{"type":50,"value":427},{"type":44,"tag":100,"props":11107,"children":11108},{"style":113},[11109],{"type":50,"value":2478},{"type":44,"tag":100,"props":11111,"children":11112},{"style":400},[11113],{"type":50,"value":786},{"type":44,"tag":100,"props":11115,"children":11116},{"style":113},[11117],{"type":50,"value":2487},{"type":44,"tag":100,"props":11119,"children":11120},{"style":400},[11121],{"type":50,"value":1464},{"type":44,"tag":100,"props":11123,"children":11124},{"class":102,"line":705},[11125],{"type":44,"tag":100,"props":11126,"children":11127},{"style":400},[11128],{"type":50,"value":2643},{"type":44,"tag":100,"props":11130,"children":11131},{"class":102,"line":770},[11132,11136,11140],{"type":44,"tag":100,"props":11133,"children":11134},{"style":400},[11135],{"type":50,"value":9850},{"type":44,"tag":100,"props":11137,"children":11138},{"style":390},[11139],{"type":50,"value":408},{"type":44,"tag":100,"props":11141,"children":11142},{"style":400},[11143],{"type":50,"value":2401},{"type":44,"tag":100,"props":11145,"children":11146},{"class":102,"line":794},[11147],{"type":44,"tag":100,"props":11148,"children":11149},{"style":390},[11150],{"type":50,"value":2409},{"type":44,"tag":100,"props":11152,"children":11153},{"class":102,"line":808},[11154],{"type":44,"tag":100,"props":11155,"children":11156},{"style":400},[11157],{"type":50,"value":5721},{"type":44,"tag":100,"props":11159,"children":11160},{"class":102,"line":1484},[11161,11165,11169,11173,11177],{"type":44,"tag":100,"props":11162,"children":11163},{"style":113},[11164],{"type":50,"value":5574},{"type":44,"tag":100,"props":11166,"children":11167},{"style":400},[11168],{"type":50,"value":5740},{"type":44,"tag":100,"props":11170,"children":11171},{"style":390},[11172],{"type":50,"value":408},{"type":44,"tag":100,"props":11174,"children":11175},{"style":390},[11176],{"type":50,"value":5749},{"type":44,"tag":100,"props":11178,"children":11179},{"style":400},[11180],{"type":50,"value":2431},{"type":44,"tag":100,"props":11182,"children":11183},{"class":102,"line":2747},[11184,11188,11192,11196],{"type":44,"tag":100,"props":11185,"children":11186},{"style":113},[11187],{"type":50,"value":5574},{"type":44,"tag":100,"props":11189,"children":11190},{"style":400},[11191],{"type":50,"value":5765},{"type":44,"tag":100,"props":11193,"children":11194},{"style":390},[11195],{"type":50,"value":408},{"type":44,"tag":100,"props":11197,"children":11198},{"style":400},[11199],{"type":50,"value":9915},{"type":44,"tag":100,"props":11201,"children":11202},{"class":102,"line":2769},[11203,11207,11211,11215],{"type":44,"tag":100,"props":11204,"children":11205},{"style":113},[11206],{"type":50,"value":5574},{"type":44,"tag":100,"props":11208,"children":11209},{"style":400},[11210],{"type":50,"value":5786},{"type":44,"tag":100,"props":11212,"children":11213},{"style":390},[11214],{"type":50,"value":408},{"type":44,"tag":100,"props":11216,"children":11217},{"style":400},[11218],{"type":50,"value":5795},{"type":44,"tag":100,"props":11220,"children":11221},{"class":102,"line":2791},[11222,11226,11230,11234],{"type":44,"tag":100,"props":11223,"children":11224},{"style":390},[11225],{"type":50,"value":2524},{"type":44,"tag":100,"props":11227,"children":11228},{"style":113},[11229],{"type":50,"value":781},{"type":44,"tag":100,"props":11231,"children":11232},{"style":400},[11233],{"type":50,"value":786},{"type":44,"tag":100,"props":11235,"children":11236},{"style":113},[11237],{"type":50,"value":5815},{"type":44,"tag":100,"props":11239,"children":11240},{"class":102,"line":2856},[11241,11245],{"type":44,"tag":100,"props":11242,"children":11243},{"style":390},[11244],{"type":50,"value":2725},{"type":44,"tag":100,"props":11246,"children":11247},{"style":400},[11248],{"type":50,"value":9965},{"type":44,"tag":100,"props":11250,"children":11251},{"class":102,"line":2898},[11252],{"type":44,"tag":100,"props":11253,"children":11254},{"style":400},[11255],{"type":50,"value":2643},{"type":44,"tag":100,"props":11257,"children":11258},{"class":102,"line":2977},[11259,11263,11267],{"type":44,"tag":100,"props":11260,"children":11261},{"style":400},[11262],{"type":50,"value":9980},{"type":44,"tag":100,"props":11264,"children":11265},{"style":390},[11266],{"type":50,"value":408},{"type":44,"tag":100,"props":11268,"children":11269},{"style":400},[11270],{"type":50,"value":2401},{"type":44,"tag":100,"props":11272,"children":11273},{"class":102,"line":3015},[11274],{"type":44,"tag":100,"props":11275,"children":11276},{"style":390},[11277],{"type":50,"value":2409},{"type":44,"tag":100,"props":11279,"children":11280},{"class":102,"line":3081},[11281],{"type":44,"tag":100,"props":11282,"children":11283},{"style":400},[11284],{"type":50,"value":5558},{"type":44,"tag":100,"props":11286,"children":11287},{"class":102,"line":3094},[11288,11292,11296,11300],{"type":44,"tag":100,"props":11289,"children":11290},{"style":113},[11291],{"type":50,"value":5574},{"type":44,"tag":100,"props":11293,"children":11294},{"style":400},[11295],{"type":50,"value":5579},{"type":44,"tag":100,"props":11297,"children":11298},{"style":390},[11299],{"type":50,"value":408},{"type":44,"tag":100,"props":11301,"children":11302},{"style":400},[11303],{"type":50,"value":10022},{"type":44,"tag":100,"props":11305,"children":11306},{"class":102,"line":3108},[11307,11311,11315,11319],{"type":44,"tag":100,"props":11308,"children":11309},{"style":390},[11310],{"type":50,"value":2524},{"type":44,"tag":100,"props":11312,"children":11313},{"style":113},[11314],{"type":50,"value":781},{"type":44,"tag":100,"props":11316,"children":11317},{"style":400},[11318],{"type":50,"value":786},{"type":44,"tag":100,"props":11320,"children":11321},{"style":113},[11322],{"type":50,"value":5671},{"type":44,"tag":100,"props":11324,"children":11325},{"class":102,"line":3147},[11326,11330],{"type":44,"tag":100,"props":11327,"children":11328},{"style":390},[11329],{"type":50,"value":2725},{"type":44,"tag":100,"props":11331,"children":11332},{"style":400},[11333],{"type":50,"value":10053},{"type":44,"tag":100,"props":11335,"children":11336},{"class":102,"line":3188},[11337],{"type":44,"tag":100,"props":11338,"children":11339},{"style":400},[11340],{"type":50,"value":1464},{"type":44,"tag":100,"props":11342,"children":11343},{"class":102,"line":6054},[11344],{"type":44,"tag":100,"props":11345,"children":11346},{"style":390},[11347],{"type":50,"value":393},{"type":44,"tag":100,"props":11349,"children":11350},{"class":102,"line":6081},[11351,11355,11359,11363,11367],{"type":44,"tag":100,"props":11352,"children":11353},{"style":113},[11354],{"type":50,"value":10075},{"type":44,"tag":100,"props":11356,"children":11357},{"style":400},[11358],{"type":50,"value":786},{"type":44,"tag":100,"props":11360,"children":11361},{"style":113},[11362],{"type":50,"value":2487},{"type":44,"tag":100,"props":11364,"children":11365},{"style":390},[11366],{"type":50,"value":1661},{"type":44,"tag":100,"props":11368,"children":11369},{"style":400},[11370],{"type":50,"value":10092},{"type":44,"tag":100,"props":11372,"children":11373},{"class":102,"line":6089},[11374,11378,11382,11386],{"type":44,"tag":100,"props":11375,"children":11376},{"style":113},[11377],{"type":50,"value":10075},{"type":44,"tag":100,"props":11379,"children":11380},{"style":400},[11381],{"type":50,"value":786},{"type":44,"tag":100,"props":11383,"children":11384},{"style":113},[11385],{"type":50,"value":10108},{"type":44,"tag":100,"props":11387,"children":11388},{"style":400},[11389],{"type":50,"value":2431},{"type":44,"tag":100,"props":11391,"children":11392},{"class":102,"line":6097},[11393,11397,11401,11405],{"type":44,"tag":100,"props":11394,"children":11395},{"style":113},[11396],{"type":50,"value":10075},{"type":44,"tag":100,"props":11398,"children":11399},{"style":400},[11400],{"type":50,"value":786},{"type":44,"tag":100,"props":11402,"children":11403},{"style":113},[11404],{"type":50,"value":10128},{"type":44,"tag":100,"props":11406,"children":11407},{"style":400},[11408],{"type":50,"value":2431},{"type":44,"tag":100,"props":11410,"children":11411},{"class":102,"line":6123},[11412,11416,11420,11424],{"type":44,"tag":100,"props":11413,"children":11414},{"style":113},[11415],{"type":50,"value":10075},{"type":44,"tag":100,"props":11417,"children":11418},{"style":400},[11419],{"type":50,"value":786},{"type":44,"tag":100,"props":11421,"children":11422},{"style":113},[11423],{"type":50,"value":10148},{"type":44,"tag":100,"props":11425,"children":11426},{"style":400},[11427],{"type":50,"value":2431},{"type":44,"tag":100,"props":11429,"children":11430},{"class":102,"line":6143},[11431,11435,11439,11443],{"type":44,"tag":100,"props":11432,"children":11433},{"style":113},[11434],{"type":50,"value":10075},{"type":44,"tag":100,"props":11436,"children":11437},{"style":400},[11438],{"type":50,"value":786},{"type":44,"tag":100,"props":11440,"children":11441},{"style":113},[11442],{"type":50,"value":10168},{"type":44,"tag":100,"props":11444,"children":11445},{"style":400},[11446],{"type":50,"value":2431},{"type":44,"tag":100,"props":11448,"children":11449},{"class":102,"line":6164},[11450,11454,11458,11462],{"type":44,"tag":100,"props":11451,"children":11452},{"style":113},[11453],{"type":50,"value":10075},{"type":44,"tag":100,"props":11455,"children":11456},{"style":400},[11457],{"type":50,"value":786},{"type":44,"tag":100,"props":11459,"children":11460},{"style":113},[11461],{"type":50,"value":10188},{"type":44,"tag":100,"props":11463,"children":11464},{"style":400},[11465],{"type":50,"value":2431},{"type":44,"tag":100,"props":11467,"children":11468},{"class":102,"line":6185},[11469,11473,11477,11481],{"type":44,"tag":100,"props":11470,"children":11471},{"style":113},[11472],{"type":50,"value":10200},{"type":44,"tag":100,"props":11474,"children":11475},{"style":400},[11476],{"type":50,"value":786},{"type":44,"tag":100,"props":11478,"children":11479},{"style":113},[11480],{"type":50,"value":10209},{"type":44,"tag":100,"props":11482,"children":11483},{"style":400},[11484],{"type":50,"value":2431},{"type":44,"tag":100,"props":11486,"children":11487},{"class":102,"line":6206},[11488,11492,11496,11500],{"type":44,"tag":100,"props":11489,"children":11490},{"style":113},[11491],{"type":50,"value":10200},{"type":44,"tag":100,"props":11493,"children":11494},{"style":400},[11495],{"type":50,"value":786},{"type":44,"tag":100,"props":11497,"children":11498},{"style":113},[11499],{"type":50,"value":10229},{"type":44,"tag":100,"props":11501,"children":11502},{"style":400},[11503],{"type":50,"value":2431},{"type":44,"tag":100,"props":11505,"children":11506},{"class":102,"line":6227},[11507,11511,11515,11519],{"type":44,"tag":100,"props":11508,"children":11509},{"style":113},[11510],{"type":50,"value":10241},{"type":44,"tag":100,"props":11512,"children":11513},{"style":400},[11514],{"type":50,"value":786},{"type":44,"tag":100,"props":11516,"children":11517},{"style":113},[11518],{"type":50,"value":6242},{"type":44,"tag":100,"props":11520,"children":11521},{"style":400},[11522],{"type":50,"value":2431},{"type":44,"tag":100,"props":11524,"children":11525},{"class":102,"line":6249},[11526,11530,11534,11538],{"type":44,"tag":100,"props":11527,"children":11528},{"style":113},[11529],{"type":50,"value":10241},{"type":44,"tag":100,"props":11531,"children":11532},{"style":400},[11533],{"type":50,"value":786},{"type":44,"tag":100,"props":11535,"children":11536},{"style":113},[11537],{"type":50,"value":10269},{"type":44,"tag":100,"props":11539,"children":11540},{"style":400},[11541],{"type":50,"value":2431},{"type":44,"tag":100,"props":11543,"children":11544},{"class":102,"line":6270},[11545,11549,11553,11557,11561,11565,11569,11573,11577,11581,11585,11589,11593,11597,11601,11605,11609,11613,11617,11621,11625],{"type":44,"tag":100,"props":11546,"children":11547},{"style":113},[11548],{"type":50,"value":654},{"type":44,"tag":100,"props":11550,"children":11551},{"style":400},[11552],{"type":50,"value":427},{"type":44,"tag":100,"props":11554,"children":11555},{"style":113},[11556],{"type":50,"value":10289},{"type":44,"tag":100,"props":11558,"children":11559},{"style":400},[11560],{"type":50,"value":786},{"type":44,"tag":100,"props":11562,"children":11563},{"style":113},[11564],{"type":50,"value":10298},{"type":44,"tag":100,"props":11566,"children":11567},{"style":390},[11568],{"type":50,"value":6319},{"type":44,"tag":100,"props":11570,"children":11571},{"style":113},[11572],{"type":50,"value":1262},{"type":44,"tag":100,"props":11574,"children":11575},{"style":400},[11576],{"type":50,"value":427},{"type":44,"tag":100,"props":11578,"children":11579},{"style":113},[11580],{"type":50,"value":10289},{"type":44,"tag":100,"props":11582,"children":11583},{"style":400},[11584],{"type":50,"value":786},{"type":44,"tag":100,"props":11586,"children":11587},{"style":113},[11588],{"type":50,"value":6242},{"type":44,"tag":100,"props":11590,"children":11591},{"style":400},[11592],{"type":50,"value":750},{"type":44,"tag":100,"props":11594,"children":11595},{"style":113},[11596],{"type":50,"value":679},{"type":44,"tag":100,"props":11598,"children":11599},{"style":400},[11600],{"type":50,"value":437},{"type":44,"tag":100,"props":11602,"children":11603},{"style":390},[11604],{"type":50,"value":432},{"type":44,"tag":100,"props":11606,"children":11607},{"style":113},[11608],{"type":50,"value":745},{"type":44,"tag":100,"props":11610,"children":11611},{"style":400},[11612],{"type":50,"value":750},{"type":44,"tag":100,"props":11614,"children":11615},{"style":113},[11616],{"type":50,"value":689},{"type":44,"tag":100,"props":11618,"children":11619},{"style":400},[11620],{"type":50,"value":437},{"type":44,"tag":100,"props":11622,"children":11623},{"style":390},[11624],{"type":50,"value":408},{"type":44,"tag":100,"props":11626,"children":11627},{"style":400},[11628],{"type":50,"value":10363},{"type":44,"tag":100,"props":11630,"children":11631},{"class":102,"line":6292},[11632,11636,11640,11644],{"type":44,"tag":100,"props":11633,"children":11634},{"style":113},[11635],{"type":50,"value":10371},{"type":44,"tag":100,"props":11637,"children":11638},{"style":400},[11639],{"type":50,"value":786},{"type":44,"tag":100,"props":11641,"children":11642},{"style":113},[11643],{"type":50,"value":10380},{"type":44,"tag":100,"props":11645,"children":11646},{"style":400},[11647],{"type":50,"value":2431},{"type":44,"tag":100,"props":11649,"children":11650},{"class":102,"line":6371},[11651,11655,11659,11663,11667,11671,11675,11679,11683,11687,11691,11695,11699,11703,11707,11711,11715,11719],{"type":44,"tag":100,"props":11652,"children":11653},{"style":113},[11654],{"type":50,"value":654},{"type":44,"tag":100,"props":11656,"children":11657},{"style":400},[11658],{"type":50,"value":427},{"type":44,"tag":100,"props":11660,"children":11661},{"style":113},[11662],{"type":50,"value":10400},{"type":44,"tag":100,"props":11664,"children":11665},{"style":400},[11666],{"type":50,"value":786},{"type":44,"tag":100,"props":11668,"children":11669},{"style":113},[11670],{"type":50,"value":10108},{"type":44,"tag":100,"props":11672,"children":11673},{"style":390},[11674],{"type":50,"value":6319},{"type":44,"tag":100,"props":11676,"children":11677},{"style":113},[11678],{"type":50,"value":1262},{"type":44,"tag":100,"props":11680,"children":11681},{"style":400},[11682],{"type":50,"value":427},{"type":44,"tag":100,"props":11684,"children":11685},{"style":113},[11686],{"type":50,"value":10425},{"type":44,"tag":100,"props":11688,"children":11689},{"style":400},[11690],{"type":50,"value":786},{"type":44,"tag":100,"props":11692,"children":11693},{"style":113},[11694],{"type":50,"value":10380},{"type":44,"tag":100,"props":11696,"children":11697},{"style":400},[11698],{"type":50,"value":750},{"type":44,"tag":100,"props":11700,"children":11701},{"style":113},[11702],{"type":50,"value":679},{"type":44,"tag":100,"props":11704,"children":11705},{"style":400},[11706],{"type":50,"value":684},{"type":44,"tag":100,"props":11708,"children":11709},{"style":113},[11710],{"type":50,"value":689},{"type":44,"tag":100,"props":11712,"children":11713},{"style":400},[11714],{"type":50,"value":437},{"type":44,"tag":100,"props":11716,"children":11717},{"style":390},[11718],{"type":50,"value":408},{"type":44,"tag":100,"props":11720,"children":11721},{"style":400},[11722],{"type":50,"value":10462},{"type":44,"tag":100,"props":11724,"children":11725},{"class":102,"line":6448},[11726,11730,11734,11738,11742],{"type":44,"tag":100,"props":11727,"children":11728},{"style":390},[11729],{"type":50,"value":776},{"type":44,"tag":100,"props":11731,"children":11732},{"style":113},[11733],{"type":50,"value":10474},{"type":44,"tag":100,"props":11735,"children":11736},{"style":400},[11737],{"type":50,"value":786},{"type":44,"tag":100,"props":11739,"children":11740},{"style":113},[11741],{"type":50,"value":10483},{"type":44,"tag":100,"props":11743,"children":11744},{"style":400},[11745],{"type":50,"value":10488},{"type":44,"tag":100,"props":11747,"children":11748},{"class":102,"line":6537},[11749,11753,11757,11761,11765,11769,11773,11777,11781,11785],{"type":44,"tag":100,"props":11750,"children":11751},{"style":390},[11752],{"type":50,"value":6556},{"type":44,"tag":100,"props":11754,"children":11755},{"style":400},[11756],{"type":50,"value":10500},{"type":44,"tag":100,"props":11758,"children":11759},{"style":390},[11760],{"type":50,"value":10505},{"type":44,"tag":100,"props":11762,"children":11763},{"style":113},[11764],{"type":50,"value":10510},{"type":44,"tag":100,"props":11766,"children":11767},{"style":400},[11768],{"type":50,"value":786},{"type":44,"tag":100,"props":11770,"children":11771},{"style":113},[11772],{"type":50,"value":2487},{"type":44,"tag":100,"props":11774,"children":11775},{"style":390},[11776],{"type":50,"value":2591},{"type":44,"tag":100,"props":11778,"children":11779},{"style":113},[11780],{"type":50,"value":10527},{"type":44,"tag":100,"props":11782,"children":11783},{"style":400},[11784],{"type":50,"value":786},{"type":44,"tag":100,"props":11786,"children":11787},{"style":113},[11788],{"type":50,"value":6686},{"type":44,"tag":100,"props":11790,"children":11791},{"class":102,"line":6550},[11792,11796,11800,11804,11808,11812,11816,11820,11824,11828],{"type":44,"tag":100,"props":11793,"children":11794},{"style":390},[11795],{"type":50,"value":6556},{"type":44,"tag":100,"props":11797,"children":11798},{"style":400},[11799],{"type":50,"value":10547},{"type":44,"tag":100,"props":11801,"children":11802},{"style":390},[11803],{"type":50,"value":10505},{"type":44,"tag":100,"props":11805,"children":11806},{"style":113},[11807],{"type":50,"value":10510},{"type":44,"tag":100,"props":11809,"children":11810},{"style":400},[11811],{"type":50,"value":786},{"type":44,"tag":100,"props":11813,"children":11814},{"style":113},[11815],{"type":50,"value":2487},{"type":44,"tag":100,"props":11817,"children":11818},{"style":390},[11819],{"type":50,"value":2591},{"type":44,"tag":100,"props":11821,"children":11822},{"style":113},[11823],{"type":50,"value":10572},{"type":44,"tag":100,"props":11825,"children":11826},{"style":400},[11827],{"type":50,"value":786},{"type":44,"tag":100,"props":11829,"children":11830},{"style":113},[11831],{"type":50,"value":6024},{"type":44,"tag":100,"props":11833,"children":11834},{"class":102,"line":6564},[11835,11839,11843,11847,11851,11855,11859,11863,11867,11871],{"type":44,"tag":100,"props":11836,"children":11837},{"style":390},[11838],{"type":50,"value":6556},{"type":44,"tag":100,"props":11840,"children":11841},{"style":400},[11842],{"type":50,"value":10592},{"type":44,"tag":100,"props":11844,"children":11845},{"style":390},[11846],{"type":50,"value":10505},{"type":44,"tag":100,"props":11848,"children":11849},{"style":113},[11850],{"type":50,"value":10510},{"type":44,"tag":100,"props":11852,"children":11853},{"style":400},[11854],{"type":50,"value":786},{"type":44,"tag":100,"props":11856,"children":11857},{"style":113},[11858],{"type":50,"value":2487},{"type":44,"tag":100,"props":11860,"children":11861},{"style":390},[11862],{"type":50,"value":2591},{"type":44,"tag":100,"props":11864,"children":11865},{"style":113},[11866],{"type":50,"value":10617},{"type":44,"tag":100,"props":11868,"children":11869},{"style":400},[11870],{"type":50,"value":786},{"type":44,"tag":100,"props":11872,"children":11873},{"style":113},[11874],{"type":50,"value":10626},{"type":44,"tag":100,"props":11876,"children":11877},{"class":102,"line":6601},[11878,11882,11886],{"type":44,"tag":100,"props":11879,"children":11880},{"style":390},[11881],{"type":50,"value":814},{"type":44,"tag":100,"props":11883,"children":11884},{"style":400},[11885],{"type":50,"value":10638},{"type":44,"tag":100,"props":11887,"children":11888},{"style":390},[11889],{"type":50,"value":10643},{"type":44,"tag":203,"props":11891,"children":11892},{"v-slot:snowflake":7},[11893],{"type":44,"tag":90,"props":11894,"children":11896},{"className":208,"code":11895,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: reports.rpt_daily_kpis\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - reports.rpt_daily_revenue\n  - staging.stg_customers\n  - staging.stg_orders\n  - staging.stg_web_sessions\n  - staging.stg_marketing_spend\ncolumns:\n  - name: kpi_date\n    type: date\n    checks:\n      - name: not_null\n      - name: unique\n@bruin *\u002F\n\nWITH daily_customers AS (\n    SELECT\n        o.order_date::DATE AS order_date,\n        COUNT(CASE WHEN c.first_seen_at::DATE = o.order_date::DATE THEN 1 END) AS new_customers,\n        COUNT(CASE WHEN c.first_seen_at::DATE \u003C o.order_date::DATE THEN 1 END) AS returning_customers\n    FROM staging.stg_orders o\n    LEFT JOIN staging.stg_customers c\n        ON o.customer_email = c.customer_email\n    WHERE o.payment_status = 'paid'\n    GROUP BY o.order_date::DATE\n),\ndaily_sessions AS (\n    SELECT\n        session_date,\n        sum(total_sessions) AS sessions,\n        sum(new_users) AS new_visitors,\n        sum(purchase_events) AS purchases\n    FROM staging.stg_web_sessions\n    GROUP BY session_date\n),\ndaily_spend AS (\n    SELECT\n        spend_date,\n        sum(spend) AS total_ad_spend\n    FROM staging.stg_marketing_spend\n    GROUP BY spend_date\n)\nSELECT\n    r.order_date AS kpi_date,\n    r.net_revenue,\n    r.total_orders,\n    r.paid_orders,\n    r.avg_order_value,\n    r.cancellation_rate,\n    dc.new_customers,\n    dc.returning_customers,\n    ds.sessions,\n    ds.new_visitors,\n    round(ds.purchases \u002F NULLIF(ds.sessions, 0) * 100, 2) AS conversion_rate,\n    sp.total_ad_spend,\n    round(r.net_revenue \u002F NULLIF(sp.total_ad_spend, 0), 2) AS overall_roas\nFROM reports.rpt_daily_revenue r\nLEFT JOIN daily_customers dc ON r.order_date = dc.order_date\nLEFT JOIN daily_sessions ds ON r.order_date = ds.session_date\nLEFT JOIN daily_spend sp ON r.order_date = sp.spend_date\nORDER BY kpi_date DESC\n",[11897],{"type":44,"tag":81,"props":11898,"children":11899},{"__ignoreMap":7},[11900,11907,11914,11921,11928,11935,11942,11949,11956,11963,11970,11977,11984,11991,11998,12005,12012,12019,12026,12033,12052,12059,12091,12179,12267,12290,12313,12348,12375,12402,12409,12424,12431,12438,12461,12480,12499,12518,12529,12536,12551,12558,12565,12584,12603,12614,12621,12628,12651,12670,12689,12708,12727,12746,12765,12784,12803,12822,12909,12928,13003,13026,13069,13112,13155],{"type":44,"tag":100,"props":11901,"children":11902},{"class":102,"line":103},[11903],{"type":44,"tag":100,"props":11904,"children":11905},{"style":220},[11906],{"type":50,"value":223},{"type":44,"tag":100,"props":11908,"children":11909},{"class":102,"line":226},[11910],{"type":44,"tag":100,"props":11911,"children":11912},{"style":220},[11913],{"type":50,"value":9404},{"type":44,"tag":100,"props":11915,"children":11916},{"class":102,"line":235},[11917],{"type":44,"tag":100,"props":11918,"children":11919},{"style":220},[11920],{"type":50,"value":241},{"type":44,"tag":100,"props":11922,"children":11923},{"class":102,"line":24},[11924],{"type":44,"tag":100,"props":11925,"children":11926},{"style":220},[11927],{"type":50,"value":249},{"type":44,"tag":100,"props":11929,"children":11930},{"class":102,"line":252},[11931],{"type":44,"tag":100,"props":11932,"children":11933},{"style":220},[11934],{"type":50,"value":258},{"type":44,"tag":100,"props":11936,"children":11937},{"class":102,"line":261},[11938],{"type":44,"tag":100,"props":11939,"children":11940},{"style":220},[11941],{"type":50,"value":267},{"type":44,"tag":100,"props":11943,"children":11944},{"class":102,"line":270},[11945],{"type":44,"tag":100,"props":11946,"children":11947},{"style":220},[11948],{"type":50,"value":9440},{"type":44,"tag":100,"props":11950,"children":11951},{"class":102,"line":279},[11952],{"type":44,"tag":100,"props":11953,"children":11954},{"style":220},[11955],{"type":50,"value":2329},{"type":44,"tag":100,"props":11957,"children":11958},{"class":102,"line":288},[11959],{"type":44,"tag":100,"props":11960,"children":11961},{"style":220},[11962],{"type":50,"value":276},{"type":44,"tag":100,"props":11964,"children":11965},{"class":102,"line":297},[11966],{"type":44,"tag":100,"props":11967,"children":11968},{"style":220},[11969],{"type":50,"value":5466},{"type":44,"tag":100,"props":11971,"children":11972},{"class":102,"line":306},[11973],{"type":44,"tag":100,"props":11974,"children":11975},{"style":220},[11976],{"type":50,"value":5458},{"type":44,"tag":100,"props":11978,"children":11979},{"class":102,"line":315},[11980],{"type":44,"tag":100,"props":11981,"children":11982},{"style":220},[11983],{"type":50,"value":285},{"type":44,"tag":100,"props":11985,"children":11986},{"class":102,"line":324},[11987],{"type":44,"tag":100,"props":11988,"children":11989},{"style":220},[11990],{"type":50,"value":9483},{"type":44,"tag":100,"props":11992,"children":11993},{"class":102,"line":333},[11994],{"type":44,"tag":100,"props":11995,"children":11996},{"style":220},[11997],{"type":50,"value":303},{"type":44,"tag":100,"props":11999,"children":12000},{"class":102,"line":11},[12001],{"type":44,"tag":100,"props":12002,"children":12003},{"style":220},[12004],{"type":50,"value":312},{"type":44,"tag":100,"props":12006,"children":12007},{"class":102,"line":350},[12008],{"type":44,"tag":100,"props":12009,"children":12010},{"style":220},[12011],{"type":50,"value":321},{"type":44,"tag":100,"props":12013,"children":12014},{"class":102,"line":359},[12015],{"type":44,"tag":100,"props":12016,"children":12017},{"style":220},[12018],{"type":50,"value":330},{"type":44,"tag":100,"props":12020,"children":12021},{"class":102,"line":368},[12022],{"type":44,"tag":100,"props":12023,"children":12024},{"style":220},[12025],{"type":50,"value":374},{"type":44,"tag":100,"props":12027,"children":12028},{"class":102,"line":377},[12029],{"type":44,"tag":100,"props":12030,"children":12031},{"emptyLinePlaceholder":23},[12032],{"type":50,"value":383},{"type":44,"tag":100,"props":12034,"children":12035},{"class":102,"line":386},[12036,12040,12044,12048],{"type":44,"tag":100,"props":12037,"children":12038},{"style":390},[12039],{"type":50,"value":2387},{"type":44,"tag":100,"props":12041,"children":12042},{"style":400},[12043],{"type":50,"value":9537},{"type":44,"tag":100,"props":12045,"children":12046},{"style":390},[12047],{"type":50,"value":408},{"type":44,"tag":100,"props":12049,"children":12050},{"style":400},[12051],{"type":50,"value":2401},{"type":44,"tag":100,"props":12053,"children":12054},{"class":102,"line":396},[12055],{"type":44,"tag":100,"props":12056,"children":12057},{"style":390},[12058],{"type":50,"value":2409},{"type":44,"tag":100,"props":12060,"children":12061},{"class":102,"line":416},[12062,12066,12070,12074,12079,12083,12087],{"type":44,"tag":100,"props":12063,"children":12064},{"style":113},[12065],{"type":50,"value":2417},{"type":44,"tag":100,"props":12067,"children":12068},{"style":400},[12069],{"type":50,"value":786},{"type":44,"tag":100,"props":12071,"children":12072},{"style":113},[12073],{"type":50,"value":2487},{"type":44,"tag":100,"props":12075,"children":12076},{"style":400},[12077],{"type":50,"value":12078},"::",{"type":44,"tag":100,"props":12080,"children":12081},{"style":390},[12082],{"type":50,"value":1656},{"type":44,"tag":100,"props":12084,"children":12085},{"style":390},[12086],{"type":50,"value":1661},{"type":44,"tag":100,"props":12088,"children":12089},{"style":400},[12090],{"type":50,"value":413},{"type":44,"tag":100,"props":12092,"children":12093},{"class":102,"line":449},[12094,12099,12103,12107,12111,12115,12119,12123,12127,12131,12135,12139,12143,12147,12151,12155,12159,12163,12167,12171,12175],{"type":44,"tag":100,"props":12095,"children":12096},{"style":113},[12097],{"type":50,"value":12098},"        COUNT",{"type":44,"tag":100,"props":12100,"children":12101},{"style":400},[12102],{"type":50,"value":427},{"type":44,"tag":100,"props":12104,"children":12105},{"style":390},[12106],{"type":50,"value":545},{"type":44,"tag":100,"props":12108,"children":12109},{"style":390},[12110],{"type":50,"value":550},{"type":44,"tag":100,"props":12112,"children":12113},{"style":113},[12114],{"type":50,"value":2596},{"type":44,"tag":100,"props":12116,"children":12117},{"style":400},[12118],{"type":50,"value":786},{"type":44,"tag":100,"props":12120,"children":12121},{"style":113},[12122],{"type":50,"value":2453},{"type":44,"tag":100,"props":12124,"children":12125},{"style":400},[12126],{"type":50,"value":12078},{"type":44,"tag":100,"props":12128,"children":12129},{"style":390},[12130],{"type":50,"value":1656},{"type":44,"tag":100,"props":12132,"children":12133},{"style":390},[12134],{"type":50,"value":2591},{"type":44,"tag":100,"props":12136,"children":12137},{"style":113},[12138],{"type":50,"value":1426},{"type":44,"tag":100,"props":12140,"children":12141},{"style":400},[12142],{"type":50,"value":786},{"type":44,"tag":100,"props":12144,"children":12145},{"style":113},[12146],{"type":50,"value":2487},{"type":44,"tag":100,"props":12148,"children":12149},{"style":400},[12150],{"type":50,"value":12078},{"type":44,"tag":100,"props":12152,"children":12153},{"style":390},[12154],{"type":50,"value":1656},{"type":44,"tag":100,"props":12156,"children":12157},{"style":390},[12158],{"type":50,"value":568},{"type":44,"tag":100,"props":12160,"children":12161},{"style":113},[12162],{"type":50,"value":1733},{"type":44,"tag":100,"props":12164,"children":12165},{"style":390},[12166],{"type":50,"value":588},{"type":44,"tag":100,"props":12168,"children":12169},{"style":400},[12170],{"type":50,"value":437},{"type":44,"tag":100,"props":12172,"children":12173},{"style":390},[12174],{"type":50,"value":408},{"type":44,"tag":100,"props":12176,"children":12177},{"style":400},[12178],{"type":50,"value":9642},{"type":44,"tag":100,"props":12180,"children":12181},{"class":102,"line":481},[12182,12186,12190,12194,12198,12202,12206,12210,12214,12218,12223,12227,12231,12235,12239,12243,12247,12251,12255,12259,12263],{"type":44,"tag":100,"props":12183,"children":12184},{"style":113},[12185],{"type":50,"value":12098},{"type":44,"tag":100,"props":12187,"children":12188},{"style":400},[12189],{"type":50,"value":427},{"type":44,"tag":100,"props":12191,"children":12192},{"style":390},[12193],{"type":50,"value":545},{"type":44,"tag":100,"props":12195,"children":12196},{"style":390},[12197],{"type":50,"value":550},{"type":44,"tag":100,"props":12199,"children":12200},{"style":113},[12201],{"type":50,"value":2596},{"type":44,"tag":100,"props":12203,"children":12204},{"style":400},[12205],{"type":50,"value":786},{"type":44,"tag":100,"props":12207,"children":12208},{"style":113},[12209],{"type":50,"value":2453},{"type":44,"tag":100,"props":12211,"children":12212},{"style":400},[12213],{"type":50,"value":12078},{"type":44,"tag":100,"props":12215,"children":12216},{"style":390},[12217],{"type":50,"value":1656},{"type":44,"tag":100,"props":12219,"children":12220},{"style":390},[12221],{"type":50,"value":12222}," \u003C",{"type":44,"tag":100,"props":12224,"children":12225},{"style":113},[12226],{"type":50,"value":1426},{"type":44,"tag":100,"props":12228,"children":12229},{"style":400},[12230],{"type":50,"value":786},{"type":44,"tag":100,"props":12232,"children":12233},{"style":113},[12234],{"type":50,"value":2487},{"type":44,"tag":100,"props":12236,"children":12237},{"style":400},[12238],{"type":50,"value":12078},{"type":44,"tag":100,"props":12240,"children":12241},{"style":390},[12242],{"type":50,"value":1656},{"type":44,"tag":100,"props":12244,"children":12245},{"style":390},[12246],{"type":50,"value":568},{"type":44,"tag":100,"props":12248,"children":12249},{"style":113},[12250],{"type":50,"value":1733},{"type":44,"tag":100,"props":12252,"children":12253},{"style":390},[12254],{"type":50,"value":588},{"type":44,"tag":100,"props":12256,"children":12257},{"style":400},[12258],{"type":50,"value":437},{"type":44,"tag":100,"props":12260,"children":12261},{"style":390},[12262],{"type":50,"value":408},{"type":44,"tag":100,"props":12264,"children":12265},{"style":400},[12266],{"type":50,"value":9699},{"type":44,"tag":100,"props":12268,"children":12269},{"class":102,"line":508},[12270,12274,12278,12282,12286],{"type":44,"tag":100,"props":12271,"children":12272},{"style":390},[12273],{"type":50,"value":2524},{"type":44,"tag":100,"props":12275,"children":12276},{"style":113},[12277],{"type":50,"value":781},{"type":44,"tag":100,"props":12279,"children":12280},{"style":400},[12281],{"type":50,"value":786},{"type":44,"tag":100,"props":12283,"children":12284},{"style":113},[12285],{"type":50,"value":1408},{"type":44,"tag":100,"props":12287,"children":12288},{"style":400},[12289],{"type":50,"value":1413},{"type":44,"tag":100,"props":12291,"children":12292},{"class":102,"line":531},[12293,12297,12301,12305,12309],{"type":44,"tag":100,"props":12294,"children":12295},{"style":390},[12296],{"type":50,"value":9730},{"type":44,"tag":100,"props":12298,"children":12299},{"style":113},[12300],{"type":50,"value":781},{"type":44,"tag":100,"props":12302,"children":12303},{"style":400},[12304],{"type":50,"value":786},{"type":44,"tag":100,"props":12306,"children":12307},{"style":113},[12308],{"type":50,"value":2561},{"type":44,"tag":100,"props":12310,"children":12311},{"style":400},[12312],{"type":50,"value":2566},{"type":44,"tag":100,"props":12314,"children":12315},{"class":102,"line":604},[12316,12320,12324,12328,12332,12336,12340,12344],{"type":44,"tag":100,"props":12317,"children":12318},{"style":390},[12319],{"type":50,"value":2574},{"type":44,"tag":100,"props":12321,"children":12322},{"style":113},[12323],{"type":50,"value":1426},{"type":44,"tag":100,"props":12325,"children":12326},{"style":400},[12327],{"type":50,"value":786},{"type":44,"tag":100,"props":12329,"children":12330},{"style":113},[12331],{"type":50,"value":2426},{"type":44,"tag":100,"props":12333,"children":12334},{"style":390},[12335],{"type":50,"value":2591},{"type":44,"tag":100,"props":12337,"children":12338},{"style":113},[12339],{"type":50,"value":2596},{"type":44,"tag":100,"props":12341,"children":12342},{"style":400},[12343],{"type":50,"value":786},{"type":44,"tag":100,"props":12345,"children":12346},{"style":113},[12347],{"type":50,"value":2605},{"type":44,"tag":100,"props":12349,"children":12350},{"class":102,"line":626},[12351,12355,12359,12363,12367,12371],{"type":44,"tag":100,"props":12352,"children":12353},{"style":390},[12354],{"type":50,"value":2613},{"type":44,"tag":100,"props":12356,"children":12357},{"style":113},[12358],{"type":50,"value":1426},{"type":44,"tag":100,"props":12360,"children":12361},{"style":400},[12362],{"type":50,"value":786},{"type":44,"tag":100,"props":12364,"children":12365},{"style":113},[12366],{"type":50,"value":2626},{"type":44,"tag":100,"props":12368,"children":12369},{"style":390},[12370],{"type":50,"value":2591},{"type":44,"tag":100,"props":12372,"children":12373},{"style":119},[12374],{"type":50,"value":2635},{"type":44,"tag":100,"props":12376,"children":12377},{"class":102,"line":648},[12378,12382,12386,12390,12394,12398],{"type":44,"tag":100,"props":12379,"children":12380},{"style":390},[12381],{"type":50,"value":2725},{"type":44,"tag":100,"props":12383,"children":12384},{"style":113},[12385],{"type":50,"value":1426},{"type":44,"tag":100,"props":12387,"children":12388},{"style":400},[12389],{"type":50,"value":786},{"type":44,"tag":100,"props":12391,"children":12392},{"style":113},[12393],{"type":50,"value":2487},{"type":44,"tag":100,"props":12395,"children":12396},{"style":400},[12397],{"type":50,"value":12078},{"type":44,"tag":100,"props":12399,"children":12400},{"style":390},[12401],{"type":50,"value":2216},{"type":44,"tag":100,"props":12403,"children":12404},{"class":102,"line":705},[12405],{"type":44,"tag":100,"props":12406,"children":12407},{"style":400},[12408],{"type":50,"value":2643},{"type":44,"tag":100,"props":12410,"children":12411},{"class":102,"line":770},[12412,12416,12420],{"type":44,"tag":100,"props":12413,"children":12414},{"style":400},[12415],{"type":50,"value":9850},{"type":44,"tag":100,"props":12417,"children":12418},{"style":390},[12419],{"type":50,"value":408},{"type":44,"tag":100,"props":12421,"children":12422},{"style":400},[12423],{"type":50,"value":2401},{"type":44,"tag":100,"props":12425,"children":12426},{"class":102,"line":794},[12427],{"type":44,"tag":100,"props":12428,"children":12429},{"style":390},[12430],{"type":50,"value":2409},{"type":44,"tag":100,"props":12432,"children":12433},{"class":102,"line":808},[12434],{"type":44,"tag":100,"props":12435,"children":12436},{"style":400},[12437],{"type":50,"value":5721},{"type":44,"tag":100,"props":12439,"children":12440},{"class":102,"line":1484},[12441,12445,12449,12453,12457],{"type":44,"tag":100,"props":12442,"children":12443},{"style":113},[12444],{"type":50,"value":5574},{"type":44,"tag":100,"props":12446,"children":12447},{"style":400},[12448],{"type":50,"value":5740},{"type":44,"tag":100,"props":12450,"children":12451},{"style":390},[12452],{"type":50,"value":408},{"type":44,"tag":100,"props":12454,"children":12455},{"style":390},[12456],{"type":50,"value":5749},{"type":44,"tag":100,"props":12458,"children":12459},{"style":400},[12460],{"type":50,"value":2431},{"type":44,"tag":100,"props":12462,"children":12463},{"class":102,"line":2747},[12464,12468,12472,12476],{"type":44,"tag":100,"props":12465,"children":12466},{"style":113},[12467],{"type":50,"value":5574},{"type":44,"tag":100,"props":12469,"children":12470},{"style":400},[12471],{"type":50,"value":5765},{"type":44,"tag":100,"props":12473,"children":12474},{"style":390},[12475],{"type":50,"value":408},{"type":44,"tag":100,"props":12477,"children":12478},{"style":400},[12479],{"type":50,"value":9915},{"type":44,"tag":100,"props":12481,"children":12482},{"class":102,"line":2769},[12483,12487,12491,12495],{"type":44,"tag":100,"props":12484,"children":12485},{"style":113},[12486],{"type":50,"value":5574},{"type":44,"tag":100,"props":12488,"children":12489},{"style":400},[12490],{"type":50,"value":5786},{"type":44,"tag":100,"props":12492,"children":12493},{"style":390},[12494],{"type":50,"value":408},{"type":44,"tag":100,"props":12496,"children":12497},{"style":400},[12498],{"type":50,"value":5795},{"type":44,"tag":100,"props":12500,"children":12501},{"class":102,"line":2791},[12502,12506,12510,12514],{"type":44,"tag":100,"props":12503,"children":12504},{"style":390},[12505],{"type":50,"value":2524},{"type":44,"tag":100,"props":12507,"children":12508},{"style":113},[12509],{"type":50,"value":781},{"type":44,"tag":100,"props":12511,"children":12512},{"style":400},[12513],{"type":50,"value":786},{"type":44,"tag":100,"props":12515,"children":12516},{"style":113},[12517],{"type":50,"value":5815},{"type":44,"tag":100,"props":12519,"children":12520},{"class":102,"line":2856},[12521,12525],{"type":44,"tag":100,"props":12522,"children":12523},{"style":390},[12524],{"type":50,"value":2725},{"type":44,"tag":100,"props":12526,"children":12527},{"style":400},[12528],{"type":50,"value":9965},{"type":44,"tag":100,"props":12530,"children":12531},{"class":102,"line":2898},[12532],{"type":44,"tag":100,"props":12533,"children":12534},{"style":400},[12535],{"type":50,"value":2643},{"type":44,"tag":100,"props":12537,"children":12538},{"class":102,"line":2977},[12539,12543,12547],{"type":44,"tag":100,"props":12540,"children":12541},{"style":400},[12542],{"type":50,"value":9980},{"type":44,"tag":100,"props":12544,"children":12545},{"style":390},[12546],{"type":50,"value":408},{"type":44,"tag":100,"props":12548,"children":12549},{"style":400},[12550],{"type":50,"value":2401},{"type":44,"tag":100,"props":12552,"children":12553},{"class":102,"line":3015},[12554],{"type":44,"tag":100,"props":12555,"children":12556},{"style":390},[12557],{"type":50,"value":2409},{"type":44,"tag":100,"props":12559,"children":12560},{"class":102,"line":3081},[12561],{"type":44,"tag":100,"props":12562,"children":12563},{"style":400},[12564],{"type":50,"value":5558},{"type":44,"tag":100,"props":12566,"children":12567},{"class":102,"line":3094},[12568,12572,12576,12580],{"type":44,"tag":100,"props":12569,"children":12570},{"style":113},[12571],{"type":50,"value":5574},{"type":44,"tag":100,"props":12573,"children":12574},{"style":400},[12575],{"type":50,"value":5579},{"type":44,"tag":100,"props":12577,"children":12578},{"style":390},[12579],{"type":50,"value":408},{"type":44,"tag":100,"props":12581,"children":12582},{"style":400},[12583],{"type":50,"value":10022},{"type":44,"tag":100,"props":12585,"children":12586},{"class":102,"line":3108},[12587,12591,12595,12599],{"type":44,"tag":100,"props":12588,"children":12589},{"style":390},[12590],{"type":50,"value":2524},{"type":44,"tag":100,"props":12592,"children":12593},{"style":113},[12594],{"type":50,"value":781},{"type":44,"tag":100,"props":12596,"children":12597},{"style":400},[12598],{"type":50,"value":786},{"type":44,"tag":100,"props":12600,"children":12601},{"style":113},[12602],{"type":50,"value":5671},{"type":44,"tag":100,"props":12604,"children":12605},{"class":102,"line":3147},[12606,12610],{"type":44,"tag":100,"props":12607,"children":12608},{"style":390},[12609],{"type":50,"value":2725},{"type":44,"tag":100,"props":12611,"children":12612},{"style":400},[12613],{"type":50,"value":10053},{"type":44,"tag":100,"props":12615,"children":12616},{"class":102,"line":3188},[12617],{"type":44,"tag":100,"props":12618,"children":12619},{"style":400},[12620],{"type":50,"value":1464},{"type":44,"tag":100,"props":12622,"children":12623},{"class":102,"line":6054},[12624],{"type":44,"tag":100,"props":12625,"children":12626},{"style":390},[12627],{"type":50,"value":393},{"type":44,"tag":100,"props":12629,"children":12630},{"class":102,"line":6081},[12631,12635,12639,12643,12647],{"type":44,"tag":100,"props":12632,"children":12633},{"style":113},[12634],{"type":50,"value":10075},{"type":44,"tag":100,"props":12636,"children":12637},{"style":400},[12638],{"type":50,"value":786},{"type":44,"tag":100,"props":12640,"children":12641},{"style":113},[12642],{"type":50,"value":2487},{"type":44,"tag":100,"props":12644,"children":12645},{"style":390},[12646],{"type":50,"value":1661},{"type":44,"tag":100,"props":12648,"children":12649},{"style":400},[12650],{"type":50,"value":10092},{"type":44,"tag":100,"props":12652,"children":12653},{"class":102,"line":6089},[12654,12658,12662,12666],{"type":44,"tag":100,"props":12655,"children":12656},{"style":113},[12657],{"type":50,"value":10075},{"type":44,"tag":100,"props":12659,"children":12660},{"style":400},[12661],{"type":50,"value":786},{"type":44,"tag":100,"props":12663,"children":12664},{"style":113},[12665],{"type":50,"value":10108},{"type":44,"tag":100,"props":12667,"children":12668},{"style":400},[12669],{"type":50,"value":2431},{"type":44,"tag":100,"props":12671,"children":12672},{"class":102,"line":6097},[12673,12677,12681,12685],{"type":44,"tag":100,"props":12674,"children":12675},{"style":113},[12676],{"type":50,"value":10075},{"type":44,"tag":100,"props":12678,"children":12679},{"style":400},[12680],{"type":50,"value":786},{"type":44,"tag":100,"props":12682,"children":12683},{"style":113},[12684],{"type":50,"value":10128},{"type":44,"tag":100,"props":12686,"children":12687},{"style":400},[12688],{"type":50,"value":2431},{"type":44,"tag":100,"props":12690,"children":12691},{"class":102,"line":6123},[12692,12696,12700,12704],{"type":44,"tag":100,"props":12693,"children":12694},{"style":113},[12695],{"type":50,"value":10075},{"type":44,"tag":100,"props":12697,"children":12698},{"style":400},[12699],{"type":50,"value":786},{"type":44,"tag":100,"props":12701,"children":12702},{"style":113},[12703],{"type":50,"value":10148},{"type":44,"tag":100,"props":12705,"children":12706},{"style":400},[12707],{"type":50,"value":2431},{"type":44,"tag":100,"props":12709,"children":12710},{"class":102,"line":6143},[12711,12715,12719,12723],{"type":44,"tag":100,"props":12712,"children":12713},{"style":113},[12714],{"type":50,"value":10075},{"type":44,"tag":100,"props":12716,"children":12717},{"style":400},[12718],{"type":50,"value":786},{"type":44,"tag":100,"props":12720,"children":12721},{"style":113},[12722],{"type":50,"value":10168},{"type":44,"tag":100,"props":12724,"children":12725},{"style":400},[12726],{"type":50,"value":2431},{"type":44,"tag":100,"props":12728,"children":12729},{"class":102,"line":6164},[12730,12734,12738,12742],{"type":44,"tag":100,"props":12731,"children":12732},{"style":113},[12733],{"type":50,"value":10075},{"type":44,"tag":100,"props":12735,"children":12736},{"style":400},[12737],{"type":50,"value":786},{"type":44,"tag":100,"props":12739,"children":12740},{"style":113},[12741],{"type":50,"value":10188},{"type":44,"tag":100,"props":12743,"children":12744},{"style":400},[12745],{"type":50,"value":2431},{"type":44,"tag":100,"props":12747,"children":12748},{"class":102,"line":6185},[12749,12753,12757,12761],{"type":44,"tag":100,"props":12750,"children":12751},{"style":113},[12752],{"type":50,"value":10200},{"type":44,"tag":100,"props":12754,"children":12755},{"style":400},[12756],{"type":50,"value":786},{"type":44,"tag":100,"props":12758,"children":12759},{"style":113},[12760],{"type":50,"value":10209},{"type":44,"tag":100,"props":12762,"children":12763},{"style":400},[12764],{"type":50,"value":2431},{"type":44,"tag":100,"props":12766,"children":12767},{"class":102,"line":6206},[12768,12772,12776,12780],{"type":44,"tag":100,"props":12769,"children":12770},{"style":113},[12771],{"type":50,"value":10200},{"type":44,"tag":100,"props":12773,"children":12774},{"style":400},[12775],{"type":50,"value":786},{"type":44,"tag":100,"props":12777,"children":12778},{"style":113},[12779],{"type":50,"value":10229},{"type":44,"tag":100,"props":12781,"children":12782},{"style":400},[12783],{"type":50,"value":2431},{"type":44,"tag":100,"props":12785,"children":12786},{"class":102,"line":6227},[12787,12791,12795,12799],{"type":44,"tag":100,"props":12788,"children":12789},{"style":113},[12790],{"type":50,"value":10241},{"type":44,"tag":100,"props":12792,"children":12793},{"style":400},[12794],{"type":50,"value":786},{"type":44,"tag":100,"props":12796,"children":12797},{"style":113},[12798],{"type":50,"value":6242},{"type":44,"tag":100,"props":12800,"children":12801},{"style":400},[12802],{"type":50,"value":2431},{"type":44,"tag":100,"props":12804,"children":12805},{"class":102,"line":6249},[12806,12810,12814,12818],{"type":44,"tag":100,"props":12807,"children":12808},{"style":113},[12809],{"type":50,"value":10241},{"type":44,"tag":100,"props":12811,"children":12812},{"style":400},[12813],{"type":50,"value":786},{"type":44,"tag":100,"props":12815,"children":12816},{"style":113},[12817],{"type":50,"value":10269},{"type":44,"tag":100,"props":12819,"children":12820},{"style":400},[12821],{"type":50,"value":2431},{"type":44,"tag":100,"props":12823,"children":12824},{"class":102,"line":6270},[12825,12829,12833,12837,12841,12845,12849,12853,12857,12861,12865,12869,12873,12877,12881,12885,12889,12893,12897,12901,12905],{"type":44,"tag":100,"props":12826,"children":12827},{"style":113},[12828],{"type":50,"value":654},{"type":44,"tag":100,"props":12830,"children":12831},{"style":400},[12832],{"type":50,"value":427},{"type":44,"tag":100,"props":12834,"children":12835},{"style":113},[12836],{"type":50,"value":10289},{"type":44,"tag":100,"props":12838,"children":12839},{"style":400},[12840],{"type":50,"value":786},{"type":44,"tag":100,"props":12842,"children":12843},{"style":113},[12844],{"type":50,"value":10298},{"type":44,"tag":100,"props":12846,"children":12847},{"style":390},[12848],{"type":50,"value":6319},{"type":44,"tag":100,"props":12850,"children":12851},{"style":113},[12852],{"type":50,"value":1262},{"type":44,"tag":100,"props":12854,"children":12855},{"style":400},[12856],{"type":50,"value":427},{"type":44,"tag":100,"props":12858,"children":12859},{"style":113},[12860],{"type":50,"value":10289},{"type":44,"tag":100,"props":12862,"children":12863},{"style":400},[12864],{"type":50,"value":786},{"type":44,"tag":100,"props":12866,"children":12867},{"style":113},[12868],{"type":50,"value":6242},{"type":44,"tag":100,"props":12870,"children":12871},{"style":400},[12872],{"type":50,"value":750},{"type":44,"tag":100,"props":12874,"children":12875},{"style":113},[12876],{"type":50,"value":679},{"type":44,"tag":100,"props":12878,"children":12879},{"style":400},[12880],{"type":50,"value":437},{"type":44,"tag":100,"props":12882,"children":12883},{"style":390},[12884],{"type":50,"value":432},{"type":44,"tag":100,"props":12886,"children":12887},{"style":113},[12888],{"type":50,"value":745},{"type":44,"tag":100,"props":12890,"children":12891},{"style":400},[12892],{"type":50,"value":750},{"type":44,"tag":100,"props":12894,"children":12895},{"style":113},[12896],{"type":50,"value":689},{"type":44,"tag":100,"props":12898,"children":12899},{"style":400},[12900],{"type":50,"value":437},{"type":44,"tag":100,"props":12902,"children":12903},{"style":390},[12904],{"type":50,"value":408},{"type":44,"tag":100,"props":12906,"children":12907},{"style":400},[12908],{"type":50,"value":10363},{"type":44,"tag":100,"props":12910,"children":12911},{"class":102,"line":6292},[12912,12916,12920,12924],{"type":44,"tag":100,"props":12913,"children":12914},{"style":113},[12915],{"type":50,"value":10371},{"type":44,"tag":100,"props":12917,"children":12918},{"style":400},[12919],{"type":50,"value":786},{"type":44,"tag":100,"props":12921,"children":12922},{"style":113},[12923],{"type":50,"value":10380},{"type":44,"tag":100,"props":12925,"children":12926},{"style":400},[12927],{"type":50,"value":2431},{"type":44,"tag":100,"props":12929,"children":12930},{"class":102,"line":6371},[12931,12935,12939,12943,12947,12951,12955,12959,12963,12967,12971,12975,12979,12983,12987,12991,12995,12999],{"type":44,"tag":100,"props":12932,"children":12933},{"style":113},[12934],{"type":50,"value":654},{"type":44,"tag":100,"props":12936,"children":12937},{"style":400},[12938],{"type":50,"value":427},{"type":44,"tag":100,"props":12940,"children":12941},{"style":113},[12942],{"type":50,"value":10400},{"type":44,"tag":100,"props":12944,"children":12945},{"style":400},[12946],{"type":50,"value":786},{"type":44,"tag":100,"props":12948,"children":12949},{"style":113},[12950],{"type":50,"value":10108},{"type":44,"tag":100,"props":12952,"children":12953},{"style":390},[12954],{"type":50,"value":6319},{"type":44,"tag":100,"props":12956,"children":12957},{"style":113},[12958],{"type":50,"value":1262},{"type":44,"tag":100,"props":12960,"children":12961},{"style":400},[12962],{"type":50,"value":427},{"type":44,"tag":100,"props":12964,"children":12965},{"style":113},[12966],{"type":50,"value":10425},{"type":44,"tag":100,"props":12968,"children":12969},{"style":400},[12970],{"type":50,"value":786},{"type":44,"tag":100,"props":12972,"children":12973},{"style":113},[12974],{"type":50,"value":10380},{"type":44,"tag":100,"props":12976,"children":12977},{"style":400},[12978],{"type":50,"value":750},{"type":44,"tag":100,"props":12980,"children":12981},{"style":113},[12982],{"type":50,"value":679},{"type":44,"tag":100,"props":12984,"children":12985},{"style":400},[12986],{"type":50,"value":684},{"type":44,"tag":100,"props":12988,"children":12989},{"style":113},[12990],{"type":50,"value":689},{"type":44,"tag":100,"props":12992,"children":12993},{"style":400},[12994],{"type":50,"value":437},{"type":44,"tag":100,"props":12996,"children":12997},{"style":390},[12998],{"type":50,"value":408},{"type":44,"tag":100,"props":13000,"children":13001},{"style":400},[13002],{"type":50,"value":10462},{"type":44,"tag":100,"props":13004,"children":13005},{"class":102,"line":6448},[13006,13010,13014,13018,13022],{"type":44,"tag":100,"props":13007,"children":13008},{"style":390},[13009],{"type":50,"value":776},{"type":44,"tag":100,"props":13011,"children":13012},{"style":113},[13013],{"type":50,"value":10474},{"type":44,"tag":100,"props":13015,"children":13016},{"style":400},[13017],{"type":50,"value":786},{"type":44,"tag":100,"props":13019,"children":13020},{"style":113},[13021],{"type":50,"value":10483},{"type":44,"tag":100,"props":13023,"children":13024},{"style":400},[13025],{"type":50,"value":10488},{"type":44,"tag":100,"props":13027,"children":13028},{"class":102,"line":6537},[13029,13033,13037,13041,13045,13049,13053,13057,13061,13065],{"type":44,"tag":100,"props":13030,"children":13031},{"style":390},[13032],{"type":50,"value":6556},{"type":44,"tag":100,"props":13034,"children":13035},{"style":400},[13036],{"type":50,"value":10500},{"type":44,"tag":100,"props":13038,"children":13039},{"style":390},[13040],{"type":50,"value":10505},{"type":44,"tag":100,"props":13042,"children":13043},{"style":113},[13044],{"type":50,"value":10510},{"type":44,"tag":100,"props":13046,"children":13047},{"style":400},[13048],{"type":50,"value":786},{"type":44,"tag":100,"props":13050,"children":13051},{"style":113},[13052],{"type":50,"value":2487},{"type":44,"tag":100,"props":13054,"children":13055},{"style":390},[13056],{"type":50,"value":2591},{"type":44,"tag":100,"props":13058,"children":13059},{"style":113},[13060],{"type":50,"value":10527},{"type":44,"tag":100,"props":13062,"children":13063},{"style":400},[13064],{"type":50,"value":786},{"type":44,"tag":100,"props":13066,"children":13067},{"style":113},[13068],{"type":50,"value":6686},{"type":44,"tag":100,"props":13070,"children":13071},{"class":102,"line":6550},[13072,13076,13080,13084,13088,13092,13096,13100,13104,13108],{"type":44,"tag":100,"props":13073,"children":13074},{"style":390},[13075],{"type":50,"value":6556},{"type":44,"tag":100,"props":13077,"children":13078},{"style":400},[13079],{"type":50,"value":10547},{"type":44,"tag":100,"props":13081,"children":13082},{"style":390},[13083],{"type":50,"value":10505},{"type":44,"tag":100,"props":13085,"children":13086},{"style":113},[13087],{"type":50,"value":10510},{"type":44,"tag":100,"props":13089,"children":13090},{"style":400},[13091],{"type":50,"value":786},{"type":44,"tag":100,"props":13093,"children":13094},{"style":113},[13095],{"type":50,"value":2487},{"type":44,"tag":100,"props":13097,"children":13098},{"style":390},[13099],{"type":50,"value":2591},{"type":44,"tag":100,"props":13101,"children":13102},{"style":113},[13103],{"type":50,"value":10572},{"type":44,"tag":100,"props":13105,"children":13106},{"style":400},[13107],{"type":50,"value":786},{"type":44,"tag":100,"props":13109,"children":13110},{"style":113},[13111],{"type":50,"value":6024},{"type":44,"tag":100,"props":13113,"children":13114},{"class":102,"line":6564},[13115,13119,13123,13127,13131,13135,13139,13143,13147,13151],{"type":44,"tag":100,"props":13116,"children":13117},{"style":390},[13118],{"type":50,"value":6556},{"type":44,"tag":100,"props":13120,"children":13121},{"style":400},[13122],{"type":50,"value":10592},{"type":44,"tag":100,"props":13124,"children":13125},{"style":390},[13126],{"type":50,"value":10505},{"type":44,"tag":100,"props":13128,"children":13129},{"style":113},[13130],{"type":50,"value":10510},{"type":44,"tag":100,"props":13132,"children":13133},{"style":400},[13134],{"type":50,"value":786},{"type":44,"tag":100,"props":13136,"children":13137},{"style":113},[13138],{"type":50,"value":2487},{"type":44,"tag":100,"props":13140,"children":13141},{"style":390},[13142],{"type":50,"value":2591},{"type":44,"tag":100,"props":13144,"children":13145},{"style":113},[13146],{"type":50,"value":10617},{"type":44,"tag":100,"props":13148,"children":13149},{"style":400},[13150],{"type":50,"value":786},{"type":44,"tag":100,"props":13152,"children":13153},{"style":113},[13154],{"type":50,"value":10626},{"type":44,"tag":100,"props":13156,"children":13157},{"class":102,"line":6601},[13158,13162,13166],{"type":44,"tag":100,"props":13159,"children":13160},{"style":390},[13161],{"type":50,"value":814},{"type":44,"tag":100,"props":13163,"children":13164},{"style":400},[13165],{"type":50,"value":10638},{"type":44,"tag":100,"props":13167,"children":13168},{"style":390},[13169],{"type":50,"value":10643},{"type":44,"tag":124,"props":13171,"children":13173},{"id":13172},"run-the-full-pipeline-end-to-end",[13174],{"type":50,"value":13175},"Run the full pipeline end-to-end",{"type":44,"tag":53,"props":13177,"children":13178},{},[13179],{"type":50,"value":13180},"Run the entire pipeline - ingestion, staging, and reports - in one command:",{"type":44,"tag":90,"props":13182,"children":13184},{"className":92,"code":13183,"language":94,"meta":7,"style":7},"bruin run --start-date 2025-01-01 --end-date 2025-02-01 .\n",[13185],{"type":44,"tag":81,"props":13186,"children":13187},{"__ignoreMap":7},[13188],{"type":44,"tag":100,"props":13189,"children":13190},{"class":102,"line":103},[13191,13196,13201,13206,13211,13216,13221],{"type":44,"tag":100,"props":13192,"children":13193},{"style":107},[13194],{"type":50,"value":13195},"bruin",{"type":44,"tag":100,"props":13197,"children":13198},{"style":119},[13199],{"type":50,"value":13200}," run",{"type":44,"tag":100,"props":13202,"children":13203},{"style":113},[13204],{"type":50,"value":13205}," --start-date",{"type":44,"tag":100,"props":13207,"children":13208},{"style":119},[13209],{"type":50,"value":13210}," 2025-01-01",{"type":44,"tag":100,"props":13212,"children":13213},{"style":113},[13214],{"type":50,"value":13215}," --end-date",{"type":44,"tag":100,"props":13217,"children":13218},{"style":119},[13219],{"type":50,"value":13220}," 2025-02-01",{"type":44,"tag":100,"props":13222,"children":13223},{"style":119},[13224],{"type":50,"value":13225}," .\n",{"type":44,"tag":53,"props":13227,"children":13228},{},[13229,13231,13238,13240,13244],{"type":50,"value":13230},"Bruin executes everything in dependency order: ",{"type":44,"tag":13232,"props":13233,"children":13235},"a",{"href":13234},"\u002Flearn\u002Fcore-concepts\u002Fassets",[13236],{"type":50,"value":13237},"ingestor assets",{"type":50,"value":13239}," first, then staging, then reports. ",{"type":44,"tag":13232,"props":13241,"children":13242},{"href":13234},[13243],{"type":50,"value":34},{"type":50,"value":13245}," run after each asset.",{"type":44,"tag":53,"props":13247,"children":13248},{},[13249],{"type":50,"value":13250},"If your test month looks good, run a full backfill:",{"type":44,"tag":90,"props":13252,"children":13254},{"className":92,"code":13253,"language":94,"meta":7,"style":7},"bruin run --start-date 2024-01-01 --end-date 2025-04-01 .\n",[13255],{"type":44,"tag":81,"props":13256,"children":13257},{"__ignoreMap":7},[13258],{"type":44,"tag":100,"props":13259,"children":13260},{"class":102,"line":103},[13261,13265,13269,13273,13278,13282,13287],{"type":44,"tag":100,"props":13262,"children":13263},{"style":107},[13264],{"type":50,"value":13195},{"type":44,"tag":100,"props":13266,"children":13267},{"style":119},[13268],{"type":50,"value":13200},{"type":44,"tag":100,"props":13270,"children":13271},{"style":113},[13272],{"type":50,"value":13205},{"type":44,"tag":100,"props":13274,"children":13275},{"style":119},[13276],{"type":50,"value":13277}," 2024-01-01",{"type":44,"tag":100,"props":13279,"children":13280},{"style":113},[13281],{"type":50,"value":13215},{"type":44,"tag":100,"props":13283,"children":13284},{"style":119},[13285],{"type":50,"value":13286}," 2025-04-01",{"type":44,"tag":100,"props":13288,"children":13289},{"style":119},[13290],{"type":50,"value":13225},{"type":44,"tag":53,"props":13292,"children":13293},{},[13294,13296,13302],{"type":50,"value":13295},"You can also use ",{"type":44,"tag":81,"props":13297,"children":13299},{"className":13298},[],[13300],{"type":50,"value":13301},"--full-refresh",{"type":50,"value":13303}," to drop and recreate all tables from scratch if you need a clean slate:",{"type":44,"tag":90,"props":13305,"children":13307},{"className":92,"code":13306,"language":94,"meta":7,"style":7},"bruin run --full-refresh --start-date 2024-01-01 --end-date 2025-04-01 .\n",[13308],{"type":44,"tag":81,"props":13309,"children":13310},{"__ignoreMap":7},[13311],{"type":44,"tag":100,"props":13312,"children":13313},{"class":102,"line":103},[13314,13318,13322,13327,13331,13335,13339,13343],{"type":44,"tag":100,"props":13315,"children":13316},{"style":107},[13317],{"type":50,"value":13195},{"type":44,"tag":100,"props":13319,"children":13320},{"style":119},[13321],{"type":50,"value":13200},{"type":44,"tag":100,"props":13323,"children":13324},{"style":113},[13325],{"type":50,"value":13326}," --full-refresh",{"type":44,"tag":100,"props":13328,"children":13329},{"style":113},[13330],{"type":50,"value":13205},{"type":44,"tag":100,"props":13332,"children":13333},{"style":119},[13334],{"type":50,"value":13277},{"type":44,"tag":100,"props":13336,"children":13337},{"style":113},[13338],{"type":50,"value":13215},{"type":44,"tag":100,"props":13340,"children":13341},{"style":119},[13342],{"type":50,"value":13286},{"type":44,"tag":100,"props":13344,"children":13345},{"style":119},[13346],{"type":50,"value":13225},{"type":44,"tag":53,"props":13348,"children":13349},{},[13350],{"type":50,"value":13351},"Validate the full pipeline:",{"type":44,"tag":90,"props":13353,"children":13355},{"className":92,"code":13354,"language":94,"meta":7,"style":7},"bruin validate .\n",[13356],{"type":44,"tag":81,"props":13357,"children":13358},{"__ignoreMap":7},[13359],{"type":44,"tag":100,"props":13360,"children":13361},{"class":102,"line":103},[13362,13366,13371],{"type":44,"tag":100,"props":13363,"children":13364},{"style":107},[13365],{"type":50,"value":13195},{"type":44,"tag":100,"props":13367,"children":13368},{"style":119},[13369],{"type":50,"value":13370}," validate",{"type":44,"tag":100,"props":13372,"children":13373},{"style":119},[13374],{"type":50,"value":13225},{"type":44,"tag":124,"props":13376,"children":13378},{"id":13377},"verify-results-with-claude-code",[13379],{"type":50,"value":13380},"Verify results with Claude Code",{"type":44,"tag":53,"props":13382,"children":13383},{},[13384],{"type":50,"value":13385},"After the pipeline runs, ask Claude Code to spot-check the reports:",{"type":44,"tag":136,"props":13387,"children":13388},{},[13389],{"type":44,"tag":53,"props":13390,"children":13391},{},[13392],{"type":50,"value":13393},"Query reports.rpt_daily_revenue for the last 7 days and show me the results. Does anything look off?",{"type":44,"tag":136,"props":13395,"children":13396},{},[13397],{"type":44,"tag":53,"props":13398,"children":13399},{},[13400],{"type":50,"value":13401},"Check if rpt_customer_cohorts has data for the last 6 months. Show me the retention rate for the most recent cohort.",{"type":44,"tag":136,"props":13403,"children":13404},{},[13405],{"type":44,"tag":53,"props":13406,"children":13407},{},[13408],{"type":50,"value":13409},"Run bruin validate on the project and summarize any quality check failures.",{"type":44,"tag":53,"props":13411,"children":13412},{},[13413],{"type":50,"value":13414},"If a report looks wrong, Claude Code can compare the report output against the staging tables to find the issue:",{"type":44,"tag":136,"props":13416,"children":13417},{},[13418],{"type":44,"tag":53,"props":13419,"children":13420},{},[13421],{"type":50,"value":13422},"The rpt_marketing_roi table shows zero attributed_revenue for Facebook. Query the staging tables to trace where the data is dropping off.",{"type":44,"tag":45,"props":13424,"children":13426},{"id":13425},"what-just-happened",[13427],{"type":50,"value":13428},"What just happened",{"type":44,"tag":13430,"props":13431,"children":13432},"ul",{},[13433,13444,13454,13464],{"type":44,"tag":13434,"props":13435,"children":13436},"li",{},[13437,13442],{"type":44,"tag":185,"props":13438,"children":13439},{},[13440],{"type":50,"value":13441},"5 report tables",{"type":50,"value":13443}," that turn clean staging data into business metrics",{"type":44,"tag":13434,"props":13445,"children":13446},{},[13447,13452],{"type":44,"tag":185,"props":13448,"children":13449},{},[13450],{"type":50,"value":13451},"Three-layer pipeline:",{"type":50,"value":13453}," ingestion, staging, reports - all orchestrated by Bruin",{"type":44,"tag":13434,"props":13455,"children":13456},{},[13457,13462],{"type":44,"tag":185,"props":13458,"children":13459},{},[13460],{"type":50,"value":13461},"Dependencies",{"type":50,"value":13463}," make sure reports only run after their staging inputs are fresh",{"type":44,"tag":13434,"props":13465,"children":13466},{},[13467,13471],{"type":44,"tag":185,"props":13468,"children":13469},{},[13470],{"type":50,"value":34},{"type":50,"value":13472}," on every report table catch issues before anyone sees bad numbers",{"type":44,"tag":53,"props":13474,"children":13475},{},[13476],{"type":50,"value":13477},"Next, you'll add an AI layer so anyone on your team can query this data in plain language.",{"type":44,"tag":13479,"props":13480,"children":13481},"style",{},[13482],{"type":50,"value":13483},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":7,"searchDepth":226,"depth":226,"links":13485},[13486,13487,13488,13503],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":13489},[13490,13491,13493,13495,13497,13499,13501,13502],{"id":126,"depth":235,"text":129},{"id":164,"depth":235,"text":13492},"1) Daily revenue - rpt_daily_revenue.sql",{"id":2230,"depth":235,"text":13494},"2) Customer cohorts - rpt_customer_cohorts.sql",{"id":5092,"depth":235,"text":13496},"3) Product performance - rpt_product_performance.sql",{"id":5366,"depth":235,"text":13498},"4) Marketing ROI - rpt_marketing_roi.sql",{"id":9348,"depth":235,"text":13500},"5) Daily KPIs - rpt_daily_kpis.sql",{"id":13172,"depth":235,"text":13175},{"id":13377,"depth":235,"text":13380},{"id":13425,"depth":226,"text":13428},"markdown","content:tutorials:ecommerce-pipeline:build-reports.md","content","tutorials\u002Fecommerce-pipeline\u002Fbuild-reports.md","tutorials\u002Fecommerce-pipeline\u002Fbuild-reports","md",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"readingTime":11,"category":12,"tags":13511,"difficulty":22,"module":5,"subSteps":23,"step":24,"journeys":13512,"variants":13513,"learnMore":13514,"author":13517,"body":13518,"_type":13504,"_id":13505,"_source":13506,"_file":13507,"_stem":13508,"_extension":13509},[14,15,16,17,18,19,20,21],[26,27],[17,18,19],[13515,13516],{"label":31,"url":32},{"label":34,"url":35},{"name":37,"role":38,"image":39},{"type":41,"children":13519,"toc":26441},[13520,13524,13528,13532,13536,13540,13550,13571,13575,13579,13586,13590,13597,13601,13610,13614,13627,15513,15522,15526,15539,18287,18296,18300,18319,18332,18536,18545,18549,18562,22417,22426,22430,22443,26178,26182,26186,26223,26237,26241,26278,26288,26329,26333,26354,26358,26362,26369,26376,26383,26387,26394,26398,26433,26437],{"type":44,"tag":45,"props":13521,"children":13522},{"id":47},[13523],{"type":50,"value":51},{"type":44,"tag":53,"props":13525,"children":13526},{},[13527],{"type":50,"value":57},{"type":44,"tag":45,"props":13529,"children":13530},{"id":60},[13531],{"type":50,"value":63},{"type":44,"tag":53,"props":13533,"children":13534},{},[13535],{"type":50,"value":68},{"type":44,"tag":45,"props":13537,"children":13538},{"id":71},[13539],{"type":50,"value":74},{"type":44,"tag":53,"props":13541,"children":13542},{},[13543,13544,13549],{"type":50,"value":79},{"type":44,"tag":81,"props":13545,"children":13547},{"className":13546},[],[13548],{"type":50,"value":86},{"type":50,"value":88},{"type":44,"tag":90,"props":13551,"children":13552},{"className":92,"code":93,"language":94,"meta":7,"style":7},[13553],{"type":44,"tag":81,"props":13554,"children":13555},{"__ignoreMap":7},[13556],{"type":44,"tag":100,"props":13557,"children":13558},{"class":102,"line":103},[13559,13563,13567],{"type":44,"tag":100,"props":13560,"children":13561},{"style":107},[13562],{"type":50,"value":110},{"type":44,"tag":100,"props":13564,"children":13565},{"style":113},[13566],{"type":50,"value":116},{"type":44,"tag":100,"props":13568,"children":13569},{"style":119},[13570],{"type":50,"value":122},{"type":44,"tag":124,"props":13572,"children":13573},{"id":126},[13574],{"type":50,"value":129},{"type":44,"tag":53,"props":13576,"children":13577},{},[13578],{"type":50,"value":134},{"type":44,"tag":136,"props":13580,"children":13581},{},[13582],{"type":44,"tag":53,"props":13583,"children":13584},{},[13585],{"type":50,"value":143},{"type":44,"tag":53,"props":13587,"children":13588},{},[13589],{"type":50,"value":148},{"type":44,"tag":136,"props":13591,"children":13592},{},[13593],{"type":44,"tag":53,"props":13594,"children":13595},{},[13596],{"type":50,"value":156},{"type":44,"tag":53,"props":13598,"children":13599},{},[13600],{"type":50,"value":161},{"type":44,"tag":124,"props":13602,"children":13603},{"id":164},[13604,13605],{"type":50,"value":167},{"type":44,"tag":81,"props":13606,"children":13608},{"className":13607},[],[13609],{"type":50,"value":173},{"type":44,"tag":53,"props":13611,"children":13612},{},[13613],{"type":50,"value":178},{"type":44,"tag":53,"props":13615,"children":13616},{},[13617,13618,13626],{"type":50,"value":183},{"type":44,"tag":185,"props":13619,"children":13620},{},[13621],{"type":44,"tag":81,"props":13622,"children":13624},{"className":13623},[],[13625],{"type":50,"value":193},{"type":50,"value":195},{"type":44,"tag":197,"props":13628,"children":13629},{":variants":199,"group":200},[13630,14138,14789],{"type":44,"tag":203,"props":13631,"children":13632},{"v-slot:clickhouse":7},[13633],{"type":44,"tag":90,"props":13634,"children":13635},{"className":208,"code":209,"language":210,"meta":7,"style":7},[13636],{"type":44,"tag":81,"props":13637,"children":13638},{"__ignoreMap":7},[13639,13646,13653,13660,13667,13674,13681,13688,13695,13702,13709,13716,13723,13730,13737,13744,13751,13758,13765,13772,13779,13794,13821,13848,13871,13890,13953,13972,13991,14038,14097,14116,14127],{"type":44,"tag":100,"props":13640,"children":13641},{"class":102,"line":103},[13642],{"type":44,"tag":100,"props":13643,"children":13644},{"style":220},[13645],{"type":50,"value":223},{"type":44,"tag":100,"props":13647,"children":13648},{"class":102,"line":226},[13649],{"type":44,"tag":100,"props":13650,"children":13651},{"style":220},[13652],{"type":50,"value":232},{"type":44,"tag":100,"props":13654,"children":13655},{"class":102,"line":235},[13656],{"type":44,"tag":100,"props":13657,"children":13658},{"style":220},[13659],{"type":50,"value":241},{"type":44,"tag":100,"props":13661,"children":13662},{"class":102,"line":24},[13663],{"type":44,"tag":100,"props":13664,"children":13665},{"style":220},[13666],{"type":50,"value":249},{"type":44,"tag":100,"props":13668,"children":13669},{"class":102,"line":252},[13670],{"type":44,"tag":100,"props":13671,"children":13672},{"style":220},[13673],{"type":50,"value":258},{"type":44,"tag":100,"props":13675,"children":13676},{"class":102,"line":261},[13677],{"type":44,"tag":100,"props":13678,"children":13679},{"style":220},[13680],{"type":50,"value":267},{"type":44,"tag":100,"props":13682,"children":13683},{"class":102,"line":270},[13684],{"type":44,"tag":100,"props":13685,"children":13686},{"style":220},[13687],{"type":50,"value":276},{"type":44,"tag":100,"props":13689,"children":13690},{"class":102,"line":279},[13691],{"type":44,"tag":100,"props":13692,"children":13693},{"style":220},[13694],{"type":50,"value":285},{"type":44,"tag":100,"props":13696,"children":13697},{"class":102,"line":288},[13698],{"type":44,"tag":100,"props":13699,"children":13700},{"style":220},[13701],{"type":50,"value":294},{"type":44,"tag":100,"props":13703,"children":13704},{"class":102,"line":297},[13705],{"type":44,"tag":100,"props":13706,"children":13707},{"style":220},[13708],{"type":50,"value":303},{"type":44,"tag":100,"props":13710,"children":13711},{"class":102,"line":306},[13712],{"type":44,"tag":100,"props":13713,"children":13714},{"style":220},[13715],{"type":50,"value":312},{"type":44,"tag":100,"props":13717,"children":13718},{"class":102,"line":315},[13719],{"type":44,"tag":100,"props":13720,"children":13721},{"style":220},[13722],{"type":50,"value":321},{"type":44,"tag":100,"props":13724,"children":13725},{"class":102,"line":324},[13726],{"type":44,"tag":100,"props":13727,"children":13728},{"style":220},[13729],{"type":50,"value":330},{"type":44,"tag":100,"props":13731,"children":13732},{"class":102,"line":333},[13733],{"type":44,"tag":100,"props":13734,"children":13735},{"style":220},[13736],{"type":50,"value":339},{"type":44,"tag":100,"props":13738,"children":13739},{"class":102,"line":11},[13740],{"type":44,"tag":100,"props":13741,"children":13742},{"style":220},[13743],{"type":50,"value":347},{"type":44,"tag":100,"props":13745,"children":13746},{"class":102,"line":350},[13747],{"type":44,"tag":100,"props":13748,"children":13749},{"style":220},[13750],{"type":50,"value":356},{"type":44,"tag":100,"props":13752,"children":13753},{"class":102,"line":359},[13754],{"type":44,"tag":100,"props":13755,"children":13756},{"style":220},[13757],{"type":50,"value":365},{"type":44,"tag":100,"props":13759,"children":13760},{"class":102,"line":368},[13761],{"type":44,"tag":100,"props":13762,"children":13763},{"style":220},[13764],{"type":50,"value":374},{"type":44,"tag":100,"props":13766,"children":13767},{"class":102,"line":377},[13768],{"type":44,"tag":100,"props":13769,"children":13770},{"emptyLinePlaceholder":23},[13771],{"type":50,"value":383},{"type":44,"tag":100,"props":13773,"children":13774},{"class":102,"line":386},[13775],{"type":44,"tag":100,"props":13776,"children":13777},{"style":390},[13778],{"type":50,"value":393},{"type":44,"tag":100,"props":13780,"children":13781},{"class":102,"line":396},[13782,13786,13790],{"type":44,"tag":100,"props":13783,"children":13784},{"style":400},[13785],{"type":50,"value":403},{"type":44,"tag":100,"props":13787,"children":13788},{"style":390},[13789],{"type":50,"value":408},{"type":44,"tag":100,"props":13791,"children":13792},{"style":400},[13793],{"type":50,"value":413},{"type":44,"tag":100,"props":13795,"children":13796},{"class":102,"line":416},[13797,13801,13805,13809,13813,13817],{"type":44,"tag":100,"props":13798,"children":13799},{"style":113},[13800],{"type":50,"value":422},{"type":44,"tag":100,"props":13802,"children":13803},{"style":400},[13804],{"type":50,"value":427},{"type":44,"tag":100,"props":13806,"children":13807},{"style":390},[13808],{"type":50,"value":432},{"type":44,"tag":100,"props":13810,"children":13811},{"style":400},[13812],{"type":50,"value":437},{"type":44,"tag":100,"props":13814,"children":13815},{"style":390},[13816],{"type":50,"value":408},{"type":44,"tag":100,"props":13818,"children":13819},{"style":400},[13820],{"type":50,"value":446},{"type":44,"tag":100,"props":13822,"children":13823},{"class":102,"line":449},[13824,13828,13832,13836,13840,13844],{"type":44,"tag":100,"props":13825,"children":13826},{"style":400},[13827],{"type":50,"value":455},{"type":44,"tag":100,"props":13829,"children":13830},{"style":390},[13831],{"type":50,"value":460},{"type":44,"tag":100,"props":13833,"children":13834},{"style":119},[13835],{"type":50,"value":465},{"type":44,"tag":100,"props":13837,"children":13838},{"style":400},[13839],{"type":50,"value":437},{"type":44,"tag":100,"props":13841,"children":13842},{"style":390},[13843],{"type":50,"value":408},{"type":44,"tag":100,"props":13845,"children":13846},{"style":400},[13847],{"type":50,"value":478},{"type":44,"tag":100,"props":13849,"children":13850},{"class":102,"line":481},[13851,13855,13859,13863,13867],{"type":44,"tag":100,"props":13852,"children":13853},{"style":400},[13854],{"type":50,"value":487},{"type":44,"tag":100,"props":13856,"children":13857},{"style":390},[13858],{"type":50,"value":492},{"type":44,"tag":100,"props":13860,"children":13861},{"style":400},[13862],{"type":50,"value":437},{"type":44,"tag":100,"props":13864,"children":13865},{"style":390},[13866],{"type":50,"value":408},{"type":44,"tag":100,"props":13868,"children":13869},{"style":400},[13870],{"type":50,"value":505},{"type":44,"tag":100,"props":13872,"children":13873},{"class":102,"line":508},[13874,13878,13882,13886],{"type":44,"tag":100,"props":13875,"children":13876},{"style":113},[13877],{"type":50,"value":514},{"type":44,"tag":100,"props":13879,"children":13880},{"style":400},[13881],{"type":50,"value":519},{"type":44,"tag":100,"props":13883,"children":13884},{"style":390},[13885],{"type":50,"value":408},{"type":44,"tag":100,"props":13887,"children":13888},{"style":400},[13889],{"type":50,"value":528},{"type":44,"tag":100,"props":13891,"children":13892},{"class":102,"line":531},[13893,13897,13901,13905,13909,13913,13917,13921,13925,13929,13933,13937,13941,13945,13949],{"type":44,"tag":100,"props":13894,"children":13895},{"style":113},[13896],{"type":50,"value":514},{"type":44,"tag":100,"props":13898,"children":13899},{"style":400},[13900],{"type":50,"value":427},{"type":44,"tag":100,"props":13902,"children":13903},{"style":390},[13904],{"type":50,"value":545},{"type":44,"tag":100,"props":13906,"children":13907},{"style":390},[13908],{"type":50,"value":550},{"type":44,"tag":100,"props":13910,"children":13911},{"style":400},[13912],{"type":50,"value":555},{"type":44,"tag":100,"props":13914,"children":13915},{"style":390},[13916],{"type":50,"value":460},{"type":44,"tag":100,"props":13918,"children":13919},{"style":119},[13920],{"type":50,"value":465},{"type":44,"tag":100,"props":13922,"children":13923},{"style":390},[13924],{"type":50,"value":568},{"type":44,"tag":100,"props":13926,"children":13927},{"style":400},[13928],{"type":50,"value":573},{"type":44,"tag":100,"props":13930,"children":13931},{"style":390},[13932],{"type":50,"value":578},{"type":44,"tag":100,"props":13934,"children":13935},{"style":113},[13936],{"type":50,"value":583},{"type":44,"tag":100,"props":13938,"children":13939},{"style":390},[13940],{"type":50,"value":588},{"type":44,"tag":100,"props":13942,"children":13943},{"style":400},[13944],{"type":50,"value":437},{"type":44,"tag":100,"props":13946,"children":13947},{"style":390},[13948],{"type":50,"value":408},{"type":44,"tag":100,"props":13950,"children":13951},{"style":400},[13952],{"type":50,"value":601},{"type":44,"tag":100,"props":13954,"children":13955},{"class":102,"line":604},[13956,13960,13964,13968],{"type":44,"tag":100,"props":13957,"children":13958},{"style":113},[13959],{"type":50,"value":514},{"type":44,"tag":100,"props":13961,"children":13962},{"style":400},[13963],{"type":50,"value":614},{"type":44,"tag":100,"props":13965,"children":13966},{"style":390},[13967],{"type":50,"value":408},{"type":44,"tag":100,"props":13969,"children":13970},{"style":400},[13971],{"type":50,"value":623},{"type":44,"tag":100,"props":13973,"children":13974},{"class":102,"line":626},[13975,13979,13983,13987],{"type":44,"tag":100,"props":13976,"children":13977},{"style":113},[13978],{"type":50,"value":514},{"type":44,"tag":100,"props":13980,"children":13981},{"style":400},[13982],{"type":50,"value":636},{"type":44,"tag":100,"props":13984,"children":13985},{"style":390},[13986],{"type":50,"value":408},{"type":44,"tag":100,"props":13988,"children":13989},{"style":400},[13990],{"type":50,"value":645},{"type":44,"tag":100,"props":13992,"children":13993},{"class":102,"line":648},[13994,13998,14002,14006,14010,14014,14018,14022,14026,14030,14034],{"type":44,"tag":100,"props":13995,"children":13996},{"style":113},[13997],{"type":50,"value":654},{"type":44,"tag":100,"props":13999,"children":14000},{"style":400},[14001],{"type":50,"value":659},{"type":44,"tag":100,"props":14003,"children":14004},{"style":390},[14005],{"type":50,"value":664},{"type":44,"tag":100,"props":14007,"children":14008},{"style":113},[14009],{"type":50,"value":669},{"type":44,"tag":100,"props":14011,"children":14012},{"style":400},[14013],{"type":50,"value":674},{"type":44,"tag":100,"props":14015,"children":14016},{"style":113},[14017],{"type":50,"value":679},{"type":44,"tag":100,"props":14019,"children":14020},{"style":400},[14021],{"type":50,"value":684},{"type":44,"tag":100,"props":14023,"children":14024},{"style":113},[14025],{"type":50,"value":689},{"type":44,"tag":100,"props":14027,"children":14028},{"style":400},[14029],{"type":50,"value":437},{"type":44,"tag":100,"props":14031,"children":14032},{"style":390},[14033],{"type":50,"value":408},{"type":44,"tag":100,"props":14035,"children":14036},{"style":400},[14037],{"type":50,"value":702},{"type":44,"tag":100,"props":14039,"children":14040},{"class":102,"line":705},[14041,14045,14049,14053,14057,14061,14065,14069,14073,14077,14081,14085,14089,14093],{"type":44,"tag":100,"props":14042,"children":14043},{"style":113},[14044],{"type":50,"value":654},{"type":44,"tag":100,"props":14046,"children":14047},{"style":400},[14048],{"type":50,"value":715},{"type":44,"tag":100,"props":14050,"children":14051},{"style":390},[14052],{"type":50,"value":664},{"type":44,"tag":100,"props":14054,"children":14055},{"style":113},[14056],{"type":50,"value":669},{"type":44,"tag":100,"props":14058,"children":14059},{"style":400},[14060],{"type":50,"value":728},{"type":44,"tag":100,"props":14062,"children":14063},{"style":113},[14064],{"type":50,"value":679},{"type":44,"tag":100,"props":14066,"children":14067},{"style":400},[14068],{"type":50,"value":437},{"type":44,"tag":100,"props":14070,"children":14071},{"style":390},[14072],{"type":50,"value":432},{"type":44,"tag":100,"props":14074,"children":14075},{"style":113},[14076],{"type":50,"value":745},{"type":44,"tag":100,"props":14078,"children":14079},{"style":400},[14080],{"type":50,"value":750},{"type":44,"tag":100,"props":14082,"children":14083},{"style":113},[14084],{"type":50,"value":689},{"type":44,"tag":100,"props":14086,"children":14087},{"style":400},[14088],{"type":50,"value":437},{"type":44,"tag":100,"props":14090,"children":14091},{"style":390},[14092],{"type":50,"value":408},{"type":44,"tag":100,"props":14094,"children":14095},{"style":400},[14096],{"type":50,"value":767},{"type":44,"tag":100,"props":14098,"children":14099},{"class":102,"line":770},[14100,14104,14108,14112],{"type":44,"tag":100,"props":14101,"children":14102},{"style":390},[14103],{"type":50,"value":776},{"type":44,"tag":100,"props":14105,"children":14106},{"style":113},[14107],{"type":50,"value":781},{"type":44,"tag":100,"props":14109,"children":14110},{"style":400},[14111],{"type":50,"value":786},{"type":44,"tag":100,"props":14113,"children":14114},{"style":113},[14115],{"type":50,"value":791},{"type":44,"tag":100,"props":14117,"children":14118},{"class":102,"line":794},[14119,14123],{"type":44,"tag":100,"props":14120,"children":14121},{"style":390},[14122],{"type":50,"value":800},{"type":44,"tag":100,"props":14124,"children":14125},{"style":400},[14126],{"type":50,"value":805},{"type":44,"tag":100,"props":14128,"children":14129},{"class":102,"line":808},[14130,14134],{"type":44,"tag":100,"props":14131,"children":14132},{"style":390},[14133],{"type":50,"value":814},{"type":44,"tag":100,"props":14135,"children":14136},{"style":400},[14137],{"type":50,"value":819},{"type":44,"tag":203,"props":14139,"children":14140},{"v-slot:bigquery":7},[14141],{"type":44,"tag":90,"props":14142,"children":14143},{"className":208,"code":825,"language":210,"meta":7,"style":7},[14144],{"type":44,"tag":81,"props":14145,"children":14146},{"__ignoreMap":7},[14147,14154,14161,14168,14175,14182,14189,14196,14203,14210,14217,14224,14231,14238,14245,14252,14259,14266,14273,14280,14287,14306,14333,14360,14383,14402,14465,14484,14503,14614,14697,14720,14763,14778],{"type":44,"tag":100,"props":14148,"children":14149},{"class":102,"line":103},[14150],{"type":44,"tag":100,"props":14151,"children":14152},{"style":220},[14153],{"type":50,"value":223},{"type":44,"tag":100,"props":14155,"children":14156},{"class":102,"line":226},[14157],{"type":44,"tag":100,"props":14158,"children":14159},{"style":220},[14160],{"type":50,"value":232},{"type":44,"tag":100,"props":14162,"children":14163},{"class":102,"line":235},[14164],{"type":44,"tag":100,"props":14165,"children":14166},{"style":220},[14167],{"type":50,"value":241},{"type":44,"tag":100,"props":14169,"children":14170},{"class":102,"line":24},[14171],{"type":44,"tag":100,"props":14172,"children":14173},{"style":220},[14174],{"type":50,"value":249},{"type":44,"tag":100,"props":14176,"children":14177},{"class":102,"line":252},[14178],{"type":44,"tag":100,"props":14179,"children":14180},{"style":220},[14181],{"type":50,"value":258},{"type":44,"tag":100,"props":14183,"children":14184},{"class":102,"line":261},[14185],{"type":44,"tag":100,"props":14186,"children":14187},{"style":220},[14188],{"type":50,"value":267},{"type":44,"tag":100,"props":14190,"children":14191},{"class":102,"line":270},[14192],{"type":44,"tag":100,"props":14193,"children":14194},{"style":220},[14195],{"type":50,"value":276},{"type":44,"tag":100,"props":14197,"children":14198},{"class":102,"line":279},[14199],{"type":44,"tag":100,"props":14200,"children":14201},{"style":220},[14202],{"type":50,"value":285},{"type":44,"tag":100,"props":14204,"children":14205},{"class":102,"line":288},[14206],{"type":44,"tag":100,"props":14207,"children":14208},{"style":220},[14209],{"type":50,"value":294},{"type":44,"tag":100,"props":14211,"children":14212},{"class":102,"line":297},[14213],{"type":44,"tag":100,"props":14214,"children":14215},{"style":220},[14216],{"type":50,"value":303},{"type":44,"tag":100,"props":14218,"children":14219},{"class":102,"line":306},[14220],{"type":44,"tag":100,"props":14221,"children":14222},{"style":220},[14223],{"type":50,"value":312},{"type":44,"tag":100,"props":14225,"children":14226},{"class":102,"line":315},[14227],{"type":44,"tag":100,"props":14228,"children":14229},{"style":220},[14230],{"type":50,"value":321},{"type":44,"tag":100,"props":14232,"children":14233},{"class":102,"line":324},[14234],{"type":44,"tag":100,"props":14235,"children":14236},{"style":220},[14237],{"type":50,"value":330},{"type":44,"tag":100,"props":14239,"children":14240},{"class":102,"line":333},[14241],{"type":44,"tag":100,"props":14242,"children":14243},{"style":220},[14244],{"type":50,"value":339},{"type":44,"tag":100,"props":14246,"children":14247},{"class":102,"line":11},[14248],{"type":44,"tag":100,"props":14249,"children":14250},{"style":220},[14251],{"type":50,"value":347},{"type":44,"tag":100,"props":14253,"children":14254},{"class":102,"line":350},[14255],{"type":44,"tag":100,"props":14256,"children":14257},{"style":220},[14258],{"type":50,"value":356},{"type":44,"tag":100,"props":14260,"children":14261},{"class":102,"line":359},[14262],{"type":44,"tag":100,"props":14263,"children":14264},{"style":220},[14265],{"type":50,"value":365},{"type":44,"tag":100,"props":14267,"children":14268},{"class":102,"line":368},[14269],{"type":44,"tag":100,"props":14270,"children":14271},{"style":220},[14272],{"type":50,"value":374},{"type":44,"tag":100,"props":14274,"children":14275},{"class":102,"line":377},[14276],{"type":44,"tag":100,"props":14277,"children":14278},{"emptyLinePlaceholder":23},[14279],{"type":50,"value":383},{"type":44,"tag":100,"props":14281,"children":14282},{"class":102,"line":386},[14283],{"type":44,"tag":100,"props":14284,"children":14285},{"style":390},[14286],{"type":50,"value":393},{"type":44,"tag":100,"props":14288,"children":14289},{"class":102,"line":396},[14290,14294,14298,14302],{"type":44,"tag":100,"props":14291,"children":14292},{"style":390},[14293],{"type":50,"value":977},{"type":44,"tag":100,"props":14295,"children":14296},{"style":400},[14297],{"type":50,"value":982},{"type":44,"tag":100,"props":14299,"children":14300},{"style":390},[14301],{"type":50,"value":408},{"type":44,"tag":100,"props":14303,"children":14304},{"style":400},[14305],{"type":50,"value":413},{"type":44,"tag":100,"props":14307,"children":14308},{"class":102,"line":416},[14309,14313,14317,14321,14325,14329],{"type":44,"tag":100,"props":14310,"children":14311},{"style":113},[14312],{"type":50,"value":422},{"type":44,"tag":100,"props":14314,"children":14315},{"style":400},[14316],{"type":50,"value":427},{"type":44,"tag":100,"props":14318,"children":14319},{"style":390},[14320],{"type":50,"value":432},{"type":44,"tag":100,"props":14322,"children":14323},{"style":400},[14324],{"type":50,"value":437},{"type":44,"tag":100,"props":14326,"children":14327},{"style":390},[14328],{"type":50,"value":408},{"type":44,"tag":100,"props":14330,"children":14331},{"style":400},[14332],{"type":50,"value":446},{"type":44,"tag":100,"props":14334,"children":14335},{"class":102,"line":449},[14336,14340,14344,14348,14352,14356],{"type":44,"tag":100,"props":14337,"children":14338},{"style":400},[14339],{"type":50,"value":1025},{"type":44,"tag":100,"props":14341,"children":14342},{"style":390},[14343],{"type":50,"value":460},{"type":44,"tag":100,"props":14345,"children":14346},{"style":119},[14347],{"type":50,"value":465},{"type":44,"tag":100,"props":14349,"children":14350},{"style":400},[14351],{"type":50,"value":437},{"type":44,"tag":100,"props":14353,"children":14354},{"style":390},[14355],{"type":50,"value":408},{"type":44,"tag":100,"props":14357,"children":14358},{"style":400},[14359],{"type":50,"value":478},{"type":44,"tag":100,"props":14361,"children":14362},{"class":102,"line":481},[14363,14367,14371,14375,14379],{"type":44,"tag":100,"props":14364,"children":14365},{"style":400},[14366],{"type":50,"value":1053},{"type":44,"tag":100,"props":14368,"children":14369},{"style":390},[14370],{"type":50,"value":492},{"type":44,"tag":100,"props":14372,"children":14373},{"style":400},[14374],{"type":50,"value":437},{"type":44,"tag":100,"props":14376,"children":14377},{"style":390},[14378],{"type":50,"value":408},{"type":44,"tag":100,"props":14380,"children":14381},{"style":400},[14382],{"type":50,"value":505},{"type":44,"tag":100,"props":14384,"children":14385},{"class":102,"line":508},[14386,14390,14394,14398],{"type":44,"tag":100,"props":14387,"children":14388},{"style":113},[14389],{"type":50,"value":514},{"type":44,"tag":100,"props":14391,"children":14392},{"style":400},[14393],{"type":50,"value":519},{"type":44,"tag":100,"props":14395,"children":14396},{"style":390},[14397],{"type":50,"value":408},{"type":44,"tag":100,"props":14399,"children":14400},{"style":400},[14401],{"type":50,"value":528},{"type":44,"tag":100,"props":14403,"children":14404},{"class":102,"line":531},[14405,14409,14413,14417,14421,14425,14429,14433,14437,14441,14445,14449,14453,14457,14461],{"type":44,"tag":100,"props":14406,"children":14407},{"style":113},[14408],{"type":50,"value":514},{"type":44,"tag":100,"props":14410,"children":14411},{"style":400},[14412],{"type":50,"value":427},{"type":44,"tag":100,"props":14414,"children":14415},{"style":390},[14416],{"type":50,"value":545},{"type":44,"tag":100,"props":14418,"children":14419},{"style":390},[14420],{"type":50,"value":550},{"type":44,"tag":100,"props":14422,"children":14423},{"style":400},[14424],{"type":50,"value":555},{"type":44,"tag":100,"props":14426,"children":14427},{"style":390},[14428],{"type":50,"value":460},{"type":44,"tag":100,"props":14430,"children":14431},{"style":119},[14432],{"type":50,"value":465},{"type":44,"tag":100,"props":14434,"children":14435},{"style":390},[14436],{"type":50,"value":568},{"type":44,"tag":100,"props":14438,"children":14439},{"style":400},[14440],{"type":50,"value":573},{"type":44,"tag":100,"props":14442,"children":14443},{"style":390},[14444],{"type":50,"value":578},{"type":44,"tag":100,"props":14446,"children":14447},{"style":113},[14448],{"type":50,"value":583},{"type":44,"tag":100,"props":14450,"children":14451},{"style":390},[14452],{"type":50,"value":588},{"type":44,"tag":100,"props":14454,"children":14455},{"style":400},[14456],{"type":50,"value":437},{"type":44,"tag":100,"props":14458,"children":14459},{"style":390},[14460],{"type":50,"value":408},{"type":44,"tag":100,"props":14462,"children":14463},{"style":400},[14464],{"type":50,"value":601},{"type":44,"tag":100,"props":14466,"children":14467},{"class":102,"line":604},[14468,14472,14476,14480],{"type":44,"tag":100,"props":14469,"children":14470},{"style":113},[14471],{"type":50,"value":514},{"type":44,"tag":100,"props":14473,"children":14474},{"style":400},[14475],{"type":50,"value":614},{"type":44,"tag":100,"props":14477,"children":14478},{"style":390},[14479],{"type":50,"value":408},{"type":44,"tag":100,"props":14481,"children":14482},{"style":400},[14483],{"type":50,"value":623},{"type":44,"tag":100,"props":14485,"children":14486},{"class":102,"line":626},[14487,14491,14495,14499],{"type":44,"tag":100,"props":14488,"children":14489},{"style":113},[14490],{"type":50,"value":514},{"type":44,"tag":100,"props":14492,"children":14493},{"style":400},[14494],{"type":50,"value":636},{"type":44,"tag":100,"props":14496,"children":14497},{"style":390},[14498],{"type":50,"value":408},{"type":44,"tag":100,"props":14500,"children":14501},{"style":400},[14502],{"type":50,"value":645},{"type":44,"tag":100,"props":14504,"children":14505},{"class":102,"line":648},[14506,14510,14514,14518,14522,14526,14530,14534,14538,14542,14546,14550,14554,14558,14562,14566,14570,14574,14578,14582,14586,14590,14594,14598,14602,14606,14610],{"type":44,"tag":100,"props":14507,"children":14508},{"style":113},[14509],{"type":50,"value":654},{"type":44,"tag":100,"props":14511,"children":14512},{"style":400},[14513],{"type":50,"value":427},{"type":44,"tag":100,"props":14515,"children":14516},{"style":113},[14517],{"type":50,"value":1205},{"type":44,"tag":100,"props":14519,"children":14520},{"style":400},[14521],{"type":50,"value":427},{"type":44,"tag":100,"props":14523,"children":14524},{"style":390},[14525],{"type":50,"value":545},{"type":44,"tag":100,"props":14527,"children":14528},{"style":390},[14529],{"type":50,"value":550},{"type":44,"tag":100,"props":14531,"children":14532},{"style":400},[14533],{"type":50,"value":555},{"type":44,"tag":100,"props":14535,"children":14536},{"style":390},[14537],{"type":50,"value":460},{"type":44,"tag":100,"props":14539,"children":14540},{"style":119},[14541],{"type":50,"value":465},{"type":44,"tag":100,"props":14543,"children":14544},{"style":390},[14545],{"type":50,"value":568},{"type":44,"tag":100,"props":14547,"children":14548},{"style":400},[14549],{"type":50,"value":573},{"type":44,"tag":100,"props":14551,"children":14552},{"style":390},[14553],{"type":50,"value":578},{"type":44,"tag":100,"props":14555,"children":14556},{"style":113},[14557],{"type":50,"value":583},{"type":44,"tag":100,"props":14559,"children":14560},{"style":390},[14561],{"type":50,"value":588},{"type":44,"tag":100,"props":14563,"children":14564},{"style":400},[14565],{"type":50,"value":437},{"type":44,"tag":100,"props":14567,"children":14568},{"style":390},[14569],{"type":50,"value":664},{"type":44,"tag":100,"props":14571,"children":14572},{"style":113},[14573],{"type":50,"value":1262},{"type":44,"tag":100,"props":14575,"children":14576},{"style":400},[14577],{"type":50,"value":1267},{"type":44,"tag":100,"props":14579,"children":14580},{"style":390},[14581],{"type":50,"value":460},{"type":44,"tag":100,"props":14583,"children":14584},{"style":119},[14585],{"type":50,"value":465},{"type":44,"tag":100,"props":14587,"children":14588},{"style":400},[14589],{"type":50,"value":684},{"type":44,"tag":100,"props":14591,"children":14592},{"style":113},[14593],{"type":50,"value":679},{"type":44,"tag":100,"props":14595,"children":14596},{"style":400},[14597],{"type":50,"value":684},{"type":44,"tag":100,"props":14599,"children":14600},{"style":113},[14601],{"type":50,"value":689},{"type":44,"tag":100,"props":14603,"children":14604},{"style":400},[14605],{"type":50,"value":437},{"type":44,"tag":100,"props":14607,"children":14608},{"style":390},[14609],{"type":50,"value":408},{"type":44,"tag":100,"props":14611,"children":14612},{"style":400},[14613],{"type":50,"value":702},{"type":44,"tag":100,"props":14615,"children":14616},{"class":102,"line":705},[14617,14621,14625,14629,14633,14637,14641,14645,14649,14653,14657,14661,14665,14669,14673,14677,14681,14685,14689,14693],{"type":44,"tag":100,"props":14618,"children":14619},{"style":113},[14620],{"type":50,"value":654},{"type":44,"tag":100,"props":14622,"children":14623},{"style":400},[14624],{"type":50,"value":1315},{"type":44,"tag":100,"props":14626,"children":14627},{"style":390},[14628],{"type":50,"value":492},{"type":44,"tag":100,"props":14630,"children":14631},{"style":400},[14632],{"type":50,"value":437},{"type":44,"tag":100,"props":14634,"children":14635},{"style":390},[14636],{"type":50,"value":664},{"type":44,"tag":100,"props":14638,"children":14639},{"style":113},[14640],{"type":50,"value":1262},{"type":44,"tag":100,"props":14642,"children":14643},{"style":400},[14644],{"type":50,"value":427},{"type":44,"tag":100,"props":14646,"children":14647},{"style":113},[14648],{"type":50,"value":1340},{"type":44,"tag":100,"props":14650,"children":14651},{"style":400},[14652],{"type":50,"value":427},{"type":44,"tag":100,"props":14654,"children":14655},{"style":390},[14656],{"type":50,"value":432},{"type":44,"tag":100,"props":14658,"children":14659},{"style":400},[14660],{"type":50,"value":684},{"type":44,"tag":100,"props":14662,"children":14663},{"style":113},[14664],{"type":50,"value":679},{"type":44,"tag":100,"props":14666,"children":14667},{"style":400},[14668],{"type":50,"value":437},{"type":44,"tag":100,"props":14670,"children":14671},{"style":390},[14672],{"type":50,"value":432},{"type":44,"tag":100,"props":14674,"children":14675},{"style":113},[14676],{"type":50,"value":745},{"type":44,"tag":100,"props":14678,"children":14679},{"style":400},[14680],{"type":50,"value":750},{"type":44,"tag":100,"props":14682,"children":14683},{"style":113},[14684],{"type":50,"value":689},{"type":44,"tag":100,"props":14686,"children":14687},{"style":400},[14688],{"type":50,"value":437},{"type":44,"tag":100,"props":14690,"children":14691},{"style":390},[14692],{"type":50,"value":408},{"type":44,"tag":100,"props":14694,"children":14695},{"style":400},[14696],{"type":50,"value":767},{"type":44,"tag":100,"props":14698,"children":14699},{"class":102,"line":770},[14700,14704,14708,14712,14716],{"type":44,"tag":100,"props":14701,"children":14702},{"style":390},[14703],{"type":50,"value":776},{"type":44,"tag":100,"props":14705,"children":14706},{"style":113},[14707],{"type":50,"value":781},{"type":44,"tag":100,"props":14709,"children":14710},{"style":400},[14711],{"type":50,"value":786},{"type":44,"tag":100,"props":14713,"children":14714},{"style":113},[14715],{"type":50,"value":1408},{"type":44,"tag":100,"props":14717,"children":14718},{"style":400},[14719],{"type":50,"value":1413},{"type":44,"tag":100,"props":14721,"children":14722},{"class":102,"line":794},[14723,14727,14731,14735,14739,14743,14747,14751,14755,14759],{"type":44,"tag":100,"props":14724,"children":14725},{"style":390},[14726],{"type":50,"value":1421},{"type":44,"tag":100,"props":14728,"children":14729},{"style":113},[14730],{"type":50,"value":1426},{"type":44,"tag":100,"props":14732,"children":14733},{"style":400},[14734],{"type":50,"value":786},{"type":44,"tag":100,"props":14736,"children":14737},{"style":113},[14738],{"type":50,"value":1435},{"type":44,"tag":100,"props":14740,"children":14741},{"style":390},[14742],{"type":50,"value":1440},{"type":44,"tag":100,"props":14744,"children":14745},{"style":400},[14746],{"type":50,"value":1445},{"type":44,"tag":100,"props":14748,"children":14749},{"style":119},[14750],{"type":50,"value":1450},{"type":44,"tag":100,"props":14752,"children":14753},{"style":400},[14754],{"type":50,"value":750},{"type":44,"tag":100,"props":14756,"children":14757},{"style":119},[14758],{"type":50,"value":1459},{"type":44,"tag":100,"props":14760,"children":14761},{"style":400},[14762],{"type":50,"value":1464},{"type":44,"tag":100,"props":14764,"children":14765},{"class":102,"line":808},[14766,14770,14774],{"type":44,"tag":100,"props":14767,"children":14768},{"style":390},[14769],{"type":50,"value":800},{"type":44,"tag":100,"props":14771,"children":14772},{"style":390},[14773],{"type":50,"value":1476},{"type":44,"tag":100,"props":14775,"children":14776},{"style":400},[14777],{"type":50,"value":1481},{"type":44,"tag":100,"props":14779,"children":14780},{"class":102,"line":1484},[14781,14785],{"type":44,"tag":100,"props":14782,"children":14783},{"style":390},[14784],{"type":50,"value":814},{"type":44,"tag":100,"props":14786,"children":14787},{"style":400},[14788],{"type":50,"value":819},{"type":44,"tag":203,"props":14790,"children":14791},{"v-slot:snowflake":7},[14792],{"type":44,"tag":90,"props":14793,"children":14794},{"className":208,"code":1499,"language":210,"meta":7,"style":7},[14795],{"type":44,"tag":81,"props":14796,"children":14797},{"__ignoreMap":7},[14798,14805,14812,14819,14826,14833,14840,14847,14854,14861,14868,14875,14882,14889,14896,14903,14910,14917,14924,14931,14938,14957,14984,15039,15090,15109,15172,15191,15210,15353,15468,15487,15502],{"type":44,"tag":100,"props":14799,"children":14800},{"class":102,"line":103},[14801],{"type":44,"tag":100,"props":14802,"children":14803},{"style":220},[14804],{"type":50,"value":223},{"type":44,"tag":100,"props":14806,"children":14807},{"class":102,"line":226},[14808],{"type":44,"tag":100,"props":14809,"children":14810},{"style":220},[14811],{"type":50,"value":232},{"type":44,"tag":100,"props":14813,"children":14814},{"class":102,"line":235},[14815],{"type":44,"tag":100,"props":14816,"children":14817},{"style":220},[14818],{"type":50,"value":241},{"type":44,"tag":100,"props":14820,"children":14821},{"class":102,"line":24},[14822],{"type":44,"tag":100,"props":14823,"children":14824},{"style":220},[14825],{"type":50,"value":249},{"type":44,"tag":100,"props":14827,"children":14828},{"class":102,"line":252},[14829],{"type":44,"tag":100,"props":14830,"children":14831},{"style":220},[14832],{"type":50,"value":258},{"type":44,"tag":100,"props":14834,"children":14835},{"class":102,"line":261},[14836],{"type":44,"tag":100,"props":14837,"children":14838},{"style":220},[14839],{"type":50,"value":267},{"type":44,"tag":100,"props":14841,"children":14842},{"class":102,"line":270},[14843],{"type":44,"tag":100,"props":14844,"children":14845},{"style":220},[14846],{"type":50,"value":276},{"type":44,"tag":100,"props":14848,"children":14849},{"class":102,"line":279},[14850],{"type":44,"tag":100,"props":14851,"children":14852},{"style":220},[14853],{"type":50,"value":285},{"type":44,"tag":100,"props":14855,"children":14856},{"class":102,"line":288},[14857],{"type":44,"tag":100,"props":14858,"children":14859},{"style":220},[14860],{"type":50,"value":294},{"type":44,"tag":100,"props":14862,"children":14863},{"class":102,"line":297},[14864],{"type":44,"tag":100,"props":14865,"children":14866},{"style":220},[14867],{"type":50,"value":303},{"type":44,"tag":100,"props":14869,"children":14870},{"class":102,"line":306},[14871],{"type":44,"tag":100,"props":14872,"children":14873},{"style":220},[14874],{"type":50,"value":312},{"type":44,"tag":100,"props":14876,"children":14877},{"class":102,"line":315},[14878],{"type":44,"tag":100,"props":14879,"children":14880},{"style":220},[14881],{"type":50,"value":321},{"type":44,"tag":100,"props":14883,"children":14884},{"class":102,"line":324},[14885],{"type":44,"tag":100,"props":14886,"children":14887},{"style":220},[14888],{"type":50,"value":330},{"type":44,"tag":100,"props":14890,"children":14891},{"class":102,"line":333},[14892],{"type":44,"tag":100,"props":14893,"children":14894},{"style":220},[14895],{"type":50,"value":339},{"type":44,"tag":100,"props":14897,"children":14898},{"class":102,"line":11},[14899],{"type":44,"tag":100,"props":14900,"children":14901},{"style":220},[14902],{"type":50,"value":347},{"type":44,"tag":100,"props":14904,"children":14905},{"class":102,"line":350},[14906],{"type":44,"tag":100,"props":14907,"children":14908},{"style":220},[14909],{"type":50,"value":356},{"type":44,"tag":100,"props":14911,"children":14912},{"class":102,"line":359},[14913],{"type":44,"tag":100,"props":14914,"children":14915},{"style":220},[14916],{"type":50,"value":365},{"type":44,"tag":100,"props":14918,"children":14919},{"class":102,"line":368},[14920],{"type":44,"tag":100,"props":14921,"children":14922},{"style":220},[14923],{"type":50,"value":374},{"type":44,"tag":100,"props":14925,"children":14926},{"class":102,"line":377},[14927],{"type":44,"tag":100,"props":14928,"children":14929},{"emptyLinePlaceholder":23},[14930],{"type":50,"value":383},{"type":44,"tag":100,"props":14932,"children":14933},{"class":102,"line":386},[14934],{"type":44,"tag":100,"props":14935,"children":14936},{"style":390},[14937],{"type":50,"value":393},{"type":44,"tag":100,"props":14939,"children":14940},{"class":102,"line":396},[14941,14945,14949,14953],{"type":44,"tag":100,"props":14942,"children":14943},{"style":400},[14944],{"type":50,"value":1651},{"type":44,"tag":100,"props":14946,"children":14947},{"style":390},[14948],{"type":50,"value":1656},{"type":44,"tag":100,"props":14950,"children":14951},{"style":390},[14952],{"type":50,"value":1661},{"type":44,"tag":100,"props":14954,"children":14955},{"style":400},[14956],{"type":50,"value":413},{"type":44,"tag":100,"props":14958,"children":14959},{"class":102,"line":416},[14960,14964,14968,14972,14976,14980],{"type":44,"tag":100,"props":14961,"children":14962},{"style":113},[14963],{"type":50,"value":422},{"type":44,"tag":100,"props":14965,"children":14966},{"style":400},[14967],{"type":50,"value":427},{"type":44,"tag":100,"props":14969,"children":14970},{"style":390},[14971],{"type":50,"value":432},{"type":44,"tag":100,"props":14973,"children":14974},{"style":400},[14975],{"type":50,"value":437},{"type":44,"tag":100,"props":14977,"children":14978},{"style":390},[14979],{"type":50,"value":408},{"type":44,"tag":100,"props":14981,"children":14982},{"style":400},[14983],{"type":50,"value":446},{"type":44,"tag":100,"props":14985,"children":14986},{"class":102,"line":449},[14987,14991,14995,14999,15003,15007,15011,15015,15019,15023,15027,15031,15035],{"type":44,"tag":100,"props":14988,"children":14989},{"style":113},[14990],{"type":50,"value":1700},{"type":44,"tag":100,"props":14992,"children":14993},{"style":400},[14994],{"type":50,"value":427},{"type":44,"tag":100,"props":14996,"children":14997},{"style":390},[14998],{"type":50,"value":545},{"type":44,"tag":100,"props":15000,"children":15001},{"style":390},[15002],{"type":50,"value":550},{"type":44,"tag":100,"props":15004,"children":15005},{"style":400},[15006],{"type":50,"value":555},{"type":44,"tag":100,"props":15008,"children":15009},{"style":390},[15010],{"type":50,"value":460},{"type":44,"tag":100,"props":15012,"children":15013},{"style":119},[15014],{"type":50,"value":465},{"type":44,"tag":100,"props":15016,"children":15017},{"style":390},[15018],{"type":50,"value":568},{"type":44,"tag":100,"props":15020,"children":15021},{"style":113},[15022],{"type":50,"value":1733},{"type":44,"tag":100,"props":15024,"children":15025},{"style":390},[15026],{"type":50,"value":588},{"type":44,"tag":100,"props":15028,"children":15029},{"style":400},[15030],{"type":50,"value":437},{"type":44,"tag":100,"props":15032,"children":15033},{"style":390},[15034],{"type":50,"value":408},{"type":44,"tag":100,"props":15036,"children":15037},{"style":400},[15038],{"type":50,"value":478},{"type":44,"tag":100,"props":15040,"children":15041},{"class":102,"line":481},[15042,15046,15050,15054,15058,15062,15066,15070,15074,15078,15082,15086],{"type":44,"tag":100,"props":15043,"children":15044},{"style":113},[15045],{"type":50,"value":1700},{"type":44,"tag":100,"props":15047,"children":15048},{"style":400},[15049],{"type":50,"value":427},{"type":44,"tag":100,"props":15051,"children":15052},{"style":390},[15053],{"type":50,"value":545},{"type":44,"tag":100,"props":15055,"children":15056},{"style":390},[15057],{"type":50,"value":550},{"type":44,"tag":100,"props":15059,"children":15060},{"style":400},[15061],{"type":50,"value":1773},{"type":44,"tag":100,"props":15063,"children":15064},{"style":390},[15065],{"type":50,"value":492},{"type":44,"tag":100,"props":15067,"children":15068},{"style":390},[15069],{"type":50,"value":568},{"type":44,"tag":100,"props":15071,"children":15072},{"style":113},[15073],{"type":50,"value":1733},{"type":44,"tag":100,"props":15075,"children":15076},{"style":390},[15077],{"type":50,"value":588},{"type":44,"tag":100,"props":15079,"children":15080},{"style":400},[15081],{"type":50,"value":437},{"type":44,"tag":100,"props":15083,"children":15084},{"style":390},[15085],{"type":50,"value":408},{"type":44,"tag":100,"props":15087,"children":15088},{"style":400},[15089],{"type":50,"value":505},{"type":44,"tag":100,"props":15091,"children":15092},{"class":102,"line":508},[15093,15097,15101,15105],{"type":44,"tag":100,"props":15094,"children":15095},{"style":113},[15096],{"type":50,"value":514},{"type":44,"tag":100,"props":15098,"children":15099},{"style":400},[15100],{"type":50,"value":519},{"type":44,"tag":100,"props":15102,"children":15103},{"style":390},[15104],{"type":50,"value":408},{"type":44,"tag":100,"props":15106,"children":15107},{"style":400},[15108],{"type":50,"value":528},{"type":44,"tag":100,"props":15110,"children":15111},{"class":102,"line":531},[15112,15116,15120,15124,15128,15132,15136,15140,15144,15148,15152,15156,15160,15164,15168],{"type":44,"tag":100,"props":15113,"children":15114},{"style":113},[15115],{"type":50,"value":514},{"type":44,"tag":100,"props":15117,"children":15118},{"style":400},[15119],{"type":50,"value":427},{"type":44,"tag":100,"props":15121,"children":15122},{"style":390},[15123],{"type":50,"value":545},{"type":44,"tag":100,"props":15125,"children":15126},{"style":390},[15127],{"type":50,"value":550},{"type":44,"tag":100,"props":15129,"children":15130},{"style":400},[15131],{"type":50,"value":555},{"type":44,"tag":100,"props":15133,"children":15134},{"style":390},[15135],{"type":50,"value":460},{"type":44,"tag":100,"props":15137,"children":15138},{"style":119},[15139],{"type":50,"value":465},{"type":44,"tag":100,"props":15141,"children":15142},{"style":390},[15143],{"type":50,"value":568},{"type":44,"tag":100,"props":15145,"children":15146},{"style":400},[15147],{"type":50,"value":573},{"type":44,"tag":100,"props":15149,"children":15150},{"style":390},[15151],{"type":50,"value":578},{"type":44,"tag":100,"props":15153,"children":15154},{"style":113},[15155],{"type":50,"value":583},{"type":44,"tag":100,"props":15157,"children":15158},{"style":390},[15159],{"type":50,"value":588},{"type":44,"tag":100,"props":15161,"children":15162},{"style":400},[15163],{"type":50,"value":437},{"type":44,"tag":100,"props":15165,"children":15166},{"style":390},[15167],{"type":50,"value":408},{"type":44,"tag":100,"props":15169,"children":15170},{"style":400},[15171],{"type":50,"value":601},{"type":44,"tag":100,"props":15173,"children":15174},{"class":102,"line":604},[15175,15179,15183,15187],{"type":44,"tag":100,"props":15176,"children":15177},{"style":113},[15178],{"type":50,"value":514},{"type":44,"tag":100,"props":15180,"children":15181},{"style":400},[15182],{"type":50,"value":614},{"type":44,"tag":100,"props":15184,"children":15185},{"style":390},[15186],{"type":50,"value":408},{"type":44,"tag":100,"props":15188,"children":15189},{"style":400},[15190],{"type":50,"value":623},{"type":44,"tag":100,"props":15192,"children":15193},{"class":102,"line":626},[15194,15198,15202,15206],{"type":44,"tag":100,"props":15195,"children":15196},{"style":113},[15197],{"type":50,"value":514},{"type":44,"tag":100,"props":15199,"children":15200},{"style":400},[15201],{"type":50,"value":636},{"type":44,"tag":100,"props":15203,"children":15204},{"style":390},[15205],{"type":50,"value":408},{"type":44,"tag":100,"props":15207,"children":15208},{"style":400},[15209],{"type":50,"value":645},{"type":44,"tag":100,"props":15211,"children":15212},{"class":102,"line":648},[15213,15217,15221,15225,15229,15233,15237,15241,15245,15249,15253,15257,15261,15265,15269,15273,15277,15281,15285,15289,15293,15297,15301,15305,15309,15313,15317,15321,15325,15329,15333,15337,15341,15345,15349],{"type":44,"tag":100,"props":15214,"children":15215},{"style":113},[15216],{"type":50,"value":654},{"type":44,"tag":100,"props":15218,"children":15219},{"style":400},[15220],{"type":50,"value":427},{"type":44,"tag":100,"props":15222,"children":15223},{"style":113},[15224],{"type":50,"value":1205},{"type":44,"tag":100,"props":15226,"children":15227},{"style":400},[15228],{"type":50,"value":427},{"type":44,"tag":100,"props":15230,"children":15231},{"style":390},[15232],{"type":50,"value":545},{"type":44,"tag":100,"props":15234,"children":15235},{"style":390},[15236],{"type":50,"value":550},{"type":44,"tag":100,"props":15238,"children":15239},{"style":400},[15240],{"type":50,"value":555},{"type":44,"tag":100,"props":15242,"children":15243},{"style":390},[15244],{"type":50,"value":460},{"type":44,"tag":100,"props":15246,"children":15247},{"style":119},[15248],{"type":50,"value":465},{"type":44,"tag":100,"props":15250,"children":15251},{"style":390},[15252],{"type":50,"value":568},{"type":44,"tag":100,"props":15254,"children":15255},{"style":400},[15256],{"type":50,"value":573},{"type":44,"tag":100,"props":15258,"children":15259},{"style":390},[15260],{"type":50,"value":578},{"type":44,"tag":100,"props":15262,"children":15263},{"style":113},[15264],{"type":50,"value":583},{"type":44,"tag":100,"props":15266,"children":15267},{"style":390},[15268],{"type":50,"value":588},{"type":44,"tag":100,"props":15270,"children":15271},{"style":400},[15272],{"type":50,"value":437},{"type":44,"tag":100,"props":15274,"children":15275},{"style":390},[15276],{"type":50,"value":664},{"type":44,"tag":100,"props":15278,"children":15279},{"style":113},[15280],{"type":50,"value":1262},{"type":44,"tag":100,"props":15282,"children":15283},{"style":400},[15284],{"type":50,"value":427},{"type":44,"tag":100,"props":15286,"children":15287},{"style":113},[15288],{"type":50,"value":2001},{"type":44,"tag":100,"props":15290,"children":15291},{"style":400},[15292],{"type":50,"value":427},{"type":44,"tag":100,"props":15294,"children":15295},{"style":390},[15296],{"type":50,"value":545},{"type":44,"tag":100,"props":15298,"children":15299},{"style":390},[15300],{"type":50,"value":550},{"type":44,"tag":100,"props":15302,"children":15303},{"style":400},[15304],{"type":50,"value":555},{"type":44,"tag":100,"props":15306,"children":15307},{"style":390},[15308],{"type":50,"value":460},{"type":44,"tag":100,"props":15310,"children":15311},{"style":119},[15312],{"type":50,"value":465},{"type":44,"tag":100,"props":15314,"children":15315},{"style":390},[15316],{"type":50,"value":568},{"type":44,"tag":100,"props":15318,"children":15319},{"style":113},[15320],{"type":50,"value":1733},{"type":44,"tag":100,"props":15322,"children":15323},{"style":390},[15324],{"type":50,"value":588},{"type":44,"tag":100,"props":15326,"children":15327},{"style":400},[15328],{"type":50,"value":684},{"type":44,"tag":100,"props":15330,"children":15331},{"style":113},[15332],{"type":50,"value":679},{"type":44,"tag":100,"props":15334,"children":15335},{"style":400},[15336],{"type":50,"value":684},{"type":44,"tag":100,"props":15338,"children":15339},{"style":113},[15340],{"type":50,"value":689},{"type":44,"tag":100,"props":15342,"children":15343},{"style":400},[15344],{"type":50,"value":437},{"type":44,"tag":100,"props":15346,"children":15347},{"style":390},[15348],{"type":50,"value":408},{"type":44,"tag":100,"props":15350,"children":15351},{"style":400},[15352],{"type":50,"value":702},{"type":44,"tag":100,"props":15354,"children":15355},{"class":102,"line":705},[15356,15360,15364,15368,15372,15376,15380,15384,15388,15392,15396,15400,15404,15408,15412,15416,15420,15424,15428,15432,15436,15440,15444,15448,15452,15456,15460,15464],{"type":44,"tag":100,"props":15357,"children":15358},{"style":113},[15359],{"type":50,"value":654},{"type":44,"tag":100,"props":15361,"children":15362},{"style":400},[15363],{"type":50,"value":427},{"type":44,"tag":100,"props":15365,"children":15366},{"style":113},[15367],{"type":50,"value":2001},{"type":44,"tag":100,"props":15369,"children":15370},{"style":400},[15371],{"type":50,"value":427},{"type":44,"tag":100,"props":15373,"children":15374},{"style":390},[15375],{"type":50,"value":545},{"type":44,"tag":100,"props":15377,"children":15378},{"style":390},[15379],{"type":50,"value":550},{"type":44,"tag":100,"props":15381,"children":15382},{"style":400},[15383],{"type":50,"value":1773},{"type":44,"tag":100,"props":15385,"children":15386},{"style":390},[15387],{"type":50,"value":492},{"type":44,"tag":100,"props":15389,"children":15390},{"style":390},[15391],{"type":50,"value":568},{"type":44,"tag":100,"props":15393,"children":15394},{"style":113},[15395],{"type":50,"value":1733},{"type":44,"tag":100,"props":15397,"children":15398},{"style":390},[15399],{"type":50,"value":588},{"type":44,"tag":100,"props":15401,"children":15402},{"style":400},[15403],{"type":50,"value":437},{"type":44,"tag":100,"props":15405,"children":15406},{"style":390},[15407],{"type":50,"value":664},{"type":44,"tag":100,"props":15409,"children":15410},{"style":113},[15411],{"type":50,"value":1262},{"type":44,"tag":100,"props":15413,"children":15414},{"style":400},[15415],{"type":50,"value":427},{"type":44,"tag":100,"props":15417,"children":15418},{"style":113},[15419],{"type":50,"value":1340},{"type":44,"tag":100,"props":15421,"children":15422},{"style":400},[15423],{"type":50,"value":427},{"type":44,"tag":100,"props":15425,"children":15426},{"style":390},[15427],{"type":50,"value":432},{"type":44,"tag":100,"props":15429,"children":15430},{"style":400},[15431],{"type":50,"value":684},{"type":44,"tag":100,"props":15433,"children":15434},{"style":113},[15435],{"type":50,"value":679},{"type":44,"tag":100,"props":15437,"children":15438},{"style":400},[15439],{"type":50,"value":437},{"type":44,"tag":100,"props":15441,"children":15442},{"style":390},[15443],{"type":50,"value":432},{"type":44,"tag":100,"props":15445,"children":15446},{"style":113},[15447],{"type":50,"value":745},{"type":44,"tag":100,"props":15449,"children":15450},{"style":400},[15451],{"type":50,"value":750},{"type":44,"tag":100,"props":15453,"children":15454},{"style":113},[15455],{"type":50,"value":689},{"type":44,"tag":100,"props":15457,"children":15458},{"style":400},[15459],{"type":50,"value":437},{"type":44,"tag":100,"props":15461,"children":15462},{"style":390},[15463],{"type":50,"value":408},{"type":44,"tag":100,"props":15465,"children":15466},{"style":400},[15467],{"type":50,"value":767},{"type":44,"tag":100,"props":15469,"children":15470},{"class":102,"line":770},[15471,15475,15479,15483],{"type":44,"tag":100,"props":15472,"children":15473},{"style":390},[15474],{"type":50,"value":776},{"type":44,"tag":100,"props":15476,"children":15477},{"style":113},[15478],{"type":50,"value":781},{"type":44,"tag":100,"props":15480,"children":15481},{"style":400},[15482],{"type":50,"value":786},{"type":44,"tag":100,"props":15484,"children":15485},{"style":113},[15486],{"type":50,"value":791},{"type":44,"tag":100,"props":15488,"children":15489},{"class":102,"line":794},[15490,15494,15498],{"type":44,"tag":100,"props":15491,"children":15492},{"style":390},[15493],{"type":50,"value":800},{"type":44,"tag":100,"props":15495,"children":15496},{"style":400},[15497],{"type":50,"value":2211},{"type":44,"tag":100,"props":15499,"children":15500},{"style":390},[15501],{"type":50,"value":2216},{"type":44,"tag":100,"props":15503,"children":15504},{"class":102,"line":808},[15505,15509],{"type":44,"tag":100,"props":15506,"children":15507},{"style":390},[15508],{"type":50,"value":814},{"type":44,"tag":100,"props":15510,"children":15511},{"style":400},[15512],{"type":50,"value":819},{"type":44,"tag":124,"props":15514,"children":15515},{"id":2230},[15516,15517],{"type":50,"value":2233},{"type":44,"tag":81,"props":15518,"children":15520},{"className":15519},[],[15521],{"type":50,"value":2239},{"type":44,"tag":53,"props":15523,"children":15524},{},[15525],{"type":50,"value":2244},{"type":44,"tag":53,"props":15527,"children":15528},{},[15529,15530,15538],{"type":50,"value":183},{"type":44,"tag":185,"props":15531,"children":15532},{},[15533],{"type":44,"tag":81,"props":15534,"children":15536},{"className":15535},[],[15537],{"type":50,"value":2257},{"type":50,"value":195},{"type":44,"tag":197,"props":15540,"children":15541},{":variants":199,"group":200},[15542,16413,17348],{"type":44,"tag":203,"props":15543,"children":15544},{"v-slot:clickhouse":7},[15545],{"type":44,"tag":90,"props":15546,"children":15547},{"className":208,"code":2267,"language":210,"meta":7,"style":7},[15548],{"type":44,"tag":81,"props":15549,"children":15550},{"__ignoreMap":7},[15551,15558,15565,15572,15579,15586,15593,15600,15607,15614,15621,15628,15635,15642,15649,15656,15675,15682,15701,15732,15763,15778,15801,15824,15859,15886,15893,15908,15915,15922,15949,15960,15971,15978,15985,16004,16023,16082,16121,16196,16231,16294,16305,16316,16351,16390],{"type":44,"tag":100,"props":15552,"children":15553},{"class":102,"line":103},[15554],{"type":44,"tag":100,"props":15555,"children":15556},{"style":220},[15557],{"type":50,"value":223},{"type":44,"tag":100,"props":15559,"children":15560},{"class":102,"line":226},[15561],{"type":44,"tag":100,"props":15562,"children":15563},{"style":220},[15564],{"type":50,"value":2286},{"type":44,"tag":100,"props":15566,"children":15567},{"class":102,"line":235},[15568],{"type":44,"tag":100,"props":15569,"children":15570},{"style":220},[15571],{"type":50,"value":241},{"type":44,"tag":100,"props":15573,"children":15574},{"class":102,"line":24},[15575],{"type":44,"tag":100,"props":15576,"children":15577},{"style":220},[15578],{"type":50,"value":249},{"type":44,"tag":100,"props":15580,"children":15581},{"class":102,"line":252},[15582],{"type":44,"tag":100,"props":15583,"children":15584},{"style":220},[15585],{"type":50,"value":258},{"type":44,"tag":100,"props":15587,"children":15588},{"class":102,"line":261},[15589],{"type":44,"tag":100,"props":15590,"children":15591},{"style":220},[15592],{"type":50,"value":267},{"type":44,"tag":100,"props":15594,"children":15595},{"class":102,"line":270},[15596],{"type":44,"tag":100,"props":15597,"children":15598},{"style":220},[15599],{"type":50,"value":276},{"type":44,"tag":100,"props":15601,"children":15602},{"class":102,"line":279},[15603],{"type":44,"tag":100,"props":15604,"children":15605},{"style":220},[15606],{"type":50,"value":2329},{"type":44,"tag":100,"props":15608,"children":15609},{"class":102,"line":288},[15610],{"type":44,"tag":100,"props":15611,"children":15612},{"style":220},[15613],{"type":50,"value":285},{"type":44,"tag":100,"props":15615,"children":15616},{"class":102,"line":297},[15617],{"type":44,"tag":100,"props":15618,"children":15619},{"style":220},[15620],{"type":50,"value":2344},{"type":44,"tag":100,"props":15622,"children":15623},{"class":102,"line":306},[15624],{"type":44,"tag":100,"props":15625,"children":15626},{"style":220},[15627],{"type":50,"value":303},{"type":44,"tag":100,"props":15629,"children":15630},{"class":102,"line":315},[15631],{"type":44,"tag":100,"props":15632,"children":15633},{"style":220},[15634],{"type":50,"value":312},{"type":44,"tag":100,"props":15636,"children":15637},{"class":102,"line":324},[15638],{"type":44,"tag":100,"props":15639,"children":15640},{"style":220},[15641],{"type":50,"value":321},{"type":44,"tag":100,"props":15643,"children":15644},{"class":102,"line":333},[15645],{"type":44,"tag":100,"props":15646,"children":15647},{"style":220},[15648],{"type":50,"value":374},{"type":44,"tag":100,"props":15650,"children":15651},{"class":102,"line":11},[15652],{"type":44,"tag":100,"props":15653,"children":15654},{"emptyLinePlaceholder":23},[15655],{"type":50,"value":383},{"type":44,"tag":100,"props":15657,"children":15658},{"class":102,"line":350},[15659,15663,15667,15671],{"type":44,"tag":100,"props":15660,"children":15661},{"style":390},[15662],{"type":50,"value":2387},{"type":44,"tag":100,"props":15664,"children":15665},{"style":400},[15666],{"type":50,"value":2392},{"type":44,"tag":100,"props":15668,"children":15669},{"style":390},[15670],{"type":50,"value":408},{"type":44,"tag":100,"props":15672,"children":15673},{"style":400},[15674],{"type":50,"value":2401},{"type":44,"tag":100,"props":15676,"children":15677},{"class":102,"line":359},[15678],{"type":44,"tag":100,"props":15679,"children":15680},{"style":390},[15681],{"type":50,"value":2409},{"type":44,"tag":100,"props":15683,"children":15684},{"class":102,"line":368},[15685,15689,15693,15697],{"type":44,"tag":100,"props":15686,"children":15687},{"style":113},[15688],{"type":50,"value":2417},{"type":44,"tag":100,"props":15690,"children":15691},{"style":400},[15692],{"type":50,"value":786},{"type":44,"tag":100,"props":15694,"children":15695},{"style":113},[15696],{"type":50,"value":2426},{"type":44,"tag":100,"props":15698,"children":15699},{"style":400},[15700],{"type":50,"value":2431},{"type":44,"tag":100,"props":15702,"children":15703},{"class":102,"line":377},[15704,15708,15712,15716,15720,15724,15728],{"type":44,"tag":100,"props":15705,"children":15706},{"style":400},[15707],{"type":50,"value":2439},{"type":44,"tag":100,"props":15709,"children":15710},{"style":113},[15711],{"type":50,"value":2444},{"type":44,"tag":100,"props":15713,"children":15714},{"style":400},[15715],{"type":50,"value":786},{"type":44,"tag":100,"props":15717,"children":15718},{"style":113},[15719],{"type":50,"value":2453},{"type":44,"tag":100,"props":15721,"children":15722},{"style":400},[15723],{"type":50,"value":437},{"type":44,"tag":100,"props":15725,"children":15726},{"style":390},[15727],{"type":50,"value":408},{"type":44,"tag":100,"props":15729,"children":15730},{"style":400},[15731],{"type":50,"value":2466},{"type":44,"tag":100,"props":15733,"children":15734},{"class":102,"line":386},[15735,15739,15743,15747,15751,15755,15759],{"type":44,"tag":100,"props":15736,"children":15737},{"style":400},[15738],{"type":50,"value":2439},{"type":44,"tag":100,"props":15740,"children":15741},{"style":113},[15742],{"type":50,"value":2478},{"type":44,"tag":100,"props":15744,"children":15745},{"style":400},[15746],{"type":50,"value":786},{"type":44,"tag":100,"props":15748,"children":15749},{"style":113},[15750],{"type":50,"value":2487},{"type":44,"tag":100,"props":15752,"children":15753},{"style":400},[15754],{"type":50,"value":437},{"type":44,"tag":100,"props":15756,"children":15757},{"style":390},[15758],{"type":50,"value":408},{"type":44,"tag":100,"props":15760,"children":15761},{"style":400},[15762],{"type":50,"value":2500},{"type":44,"tag":100,"props":15764,"children":15765},{"class":102,"line":396},[15766,15770,15774],{"type":44,"tag":100,"props":15767,"children":15768},{"style":113},[15769],{"type":50,"value":2417},{"type":44,"tag":100,"props":15771,"children":15772},{"style":400},[15773],{"type":50,"value":786},{"type":44,"tag":100,"props":15775,"children":15776},{"style":113},[15777],{"type":50,"value":2516},{"type":44,"tag":100,"props":15779,"children":15780},{"class":102,"line":416},[15781,15785,15789,15793,15797],{"type":44,"tag":100,"props":15782,"children":15783},{"style":390},[15784],{"type":50,"value":2524},{"type":44,"tag":100,"props":15786,"children":15787},{"style":113},[15788],{"type":50,"value":781},{"type":44,"tag":100,"props":15790,"children":15791},{"style":400},[15792],{"type":50,"value":786},{"type":44,"tag":100,"props":15794,"children":15795},{"style":113},[15796],{"type":50,"value":1408},{"type":44,"tag":100,"props":15798,"children":15799},{"style":400},[15800],{"type":50,"value":1413},{"type":44,"tag":100,"props":15802,"children":15803},{"class":102,"line":449},[15804,15808,15812,15816,15820],{"type":44,"tag":100,"props":15805,"children":15806},{"style":390},[15807],{"type":50,"value":2548},{"type":44,"tag":100,"props":15809,"children":15810},{"style":113},[15811],{"type":50,"value":781},{"type":44,"tag":100,"props":15813,"children":15814},{"style":400},[15815],{"type":50,"value":786},{"type":44,"tag":100,"props":15817,"children":15818},{"style":113},[15819],{"type":50,"value":2561},{"type":44,"tag":100,"props":15821,"children":15822},{"style":400},[15823],{"type":50,"value":2566},{"type":44,"tag":100,"props":15825,"children":15826},{"class":102,"line":481},[15827,15831,15835,15839,15843,15847,15851,15855],{"type":44,"tag":100,"props":15828,"children":15829},{"style":390},[15830],{"type":50,"value":2574},{"type":44,"tag":100,"props":15832,"children":15833},{"style":113},[15834],{"type":50,"value":1426},{"type":44,"tag":100,"props":15836,"children":15837},{"style":400},[15838],{"type":50,"value":786},{"type":44,"tag":100,"props":15840,"children":15841},{"style":113},[15842],{"type":50,"value":2426},{"type":44,"tag":100,"props":15844,"children":15845},{"style":390},[15846],{"type":50,"value":2591},{"type":44,"tag":100,"props":15848,"children":15849},{"style":113},[15850],{"type":50,"value":2596},{"type":44,"tag":100,"props":15852,"children":15853},{"style":400},[15854],{"type":50,"value":786},{"type":44,"tag":100,"props":15856,"children":15857},{"style":113},[15858],{"type":50,"value":2605},{"type":44,"tag":100,"props":15860,"children":15861},{"class":102,"line":508},[15862,15866,15870,15874,15878,15882],{"type":44,"tag":100,"props":15863,"children":15864},{"style":390},[15865],{"type":50,"value":2613},{"type":44,"tag":100,"props":15867,"children":15868},{"style":113},[15869],{"type":50,"value":1426},{"type":44,"tag":100,"props":15871,"children":15872},{"style":400},[15873],{"type":50,"value":786},{"type":44,"tag":100,"props":15875,"children":15876},{"style":113},[15877],{"type":50,"value":2626},{"type":44,"tag":100,"props":15879,"children":15880},{"style":390},[15881],{"type":50,"value":2591},{"type":44,"tag":100,"props":15883,"children":15884},{"style":119},[15885],{"type":50,"value":2635},{"type":44,"tag":100,"props":15887,"children":15888},{"class":102,"line":531},[15889],{"type":44,"tag":100,"props":15890,"children":15891},{"style":400},[15892],{"type":50,"value":2643},{"type":44,"tag":100,"props":15894,"children":15895},{"class":102,"line":604},[15896,15900,15904],{"type":44,"tag":100,"props":15897,"children":15898},{"style":400},[15899],{"type":50,"value":2651},{"type":44,"tag":100,"props":15901,"children":15902},{"style":390},[15903],{"type":50,"value":408},{"type":44,"tag":100,"props":15905,"children":15906},{"style":400},[15907],{"type":50,"value":2401},{"type":44,"tag":100,"props":15909,"children":15910},{"class":102,"line":626},[15911],{"type":44,"tag":100,"props":15912,"children":15913},{"style":390},[15914],{"type":50,"value":2409},{"type":44,"tag":100,"props":15916,"children":15917},{"class":102,"line":648},[15918],{"type":44,"tag":100,"props":15919,"children":15920},{"style":400},[15921],{"type":50,"value":2674},{"type":44,"tag":100,"props":15923,"children":15924},{"class":102,"line":705},[15925,15929,15933,15937,15941,15945],{"type":44,"tag":100,"props":15926,"children":15927},{"style":113},[15928],{"type":50,"value":2682},{"type":44,"tag":100,"props":15930,"children":15931},{"style":400},[15932],{"type":50,"value":427},{"type":44,"tag":100,"props":15934,"children":15935},{"style":390},[15936],{"type":50,"value":2691},{"type":44,"tag":100,"props":15938,"children":15939},{"style":400},[15940],{"type":50,"value":2696},{"type":44,"tag":100,"props":15942,"children":15943},{"style":390},[15944],{"type":50,"value":408},{"type":44,"tag":100,"props":15946,"children":15947},{"style":400},[15948],{"type":50,"value":2705},{"type":44,"tag":100,"props":15950,"children":15951},{"class":102,"line":770},[15952,15956],{"type":44,"tag":100,"props":15953,"children":15954},{"style":390},[15955],{"type":50,"value":2524},{"type":44,"tag":100,"props":15957,"children":15958},{"style":400},[15959],{"type":50,"value":2717},{"type":44,"tag":100,"props":15961,"children":15962},{"class":102,"line":794},[15963,15967],{"type":44,"tag":100,"props":15964,"children":15965},{"style":390},[15966],{"type":50,"value":2725},{"type":44,"tag":100,"props":15968,"children":15969},{"style":400},[15970],{"type":50,"value":2730},{"type":44,"tag":100,"props":15972,"children":15973},{"class":102,"line":808},[15974],{"type":44,"tag":100,"props":15975,"children":15976},{"style":400},[15977],{"type":50,"value":1464},{"type":44,"tag":100,"props":15979,"children":15980},{"class":102,"line":1484},[15981],{"type":44,"tag":100,"props":15982,"children":15983},{"style":390},[15984],{"type":50,"value":393},{"type":44,"tag":100,"props":15986,"children":15987},{"class":102,"line":2747},[15988,15992,15996,16000],{"type":44,"tag":100,"props":15989,"children":15990},{"style":113},[15991],{"type":50,"value":2753},{"type":44,"tag":100,"props":15993,"children":15994},{"style":400},[15995],{"type":50,"value":786},{"type":44,"tag":100,"props":15997,"children":15998},{"style":113},[15999],{"type":50,"value":2762},{"type":44,"tag":100,"props":16001,"children":16002},{"style":400},[16003],{"type":50,"value":2431},{"type":44,"tag":100,"props":16005,"children":16006},{"class":102,"line":2769},[16007,16011,16015,16019],{"type":44,"tag":100,"props":16008,"children":16009},{"style":113},[16010],{"type":50,"value":2775},{"type":44,"tag":100,"props":16012,"children":16013},{"style":400},[16014],{"type":50,"value":786},{"type":44,"tag":100,"props":16016,"children":16017},{"style":113},[16018],{"type":50,"value":2784},{"type":44,"tag":100,"props":16020,"children":16021},{"style":400},[16022],{"type":50,"value":2431},{"type":44,"tag":100,"props":16024,"children":16025},{"class":102,"line":2791},[16026,16030,16034,16038,16042,16046,16050,16054,16058,16062,16066,16070,16074,16078],{"type":44,"tag":100,"props":16027,"children":16028},{"style":113},[16029],{"type":50,"value":2797},{"type":44,"tag":100,"props":16031,"children":16032},{"style":400},[16033],{"type":50,"value":427},{"type":44,"tag":100,"props":16035,"children":16036},{"style":119},[16037],{"type":50,"value":2806},{"type":44,"tag":100,"props":16039,"children":16040},{"style":400},[16041],{"type":50,"value":750},{"type":44,"tag":100,"props":16043,"children":16044},{"style":113},[16045],{"type":50,"value":2815},{"type":44,"tag":100,"props":16047,"children":16048},{"style":400},[16049],{"type":50,"value":786},{"type":44,"tag":100,"props":16051,"children":16052},{"style":113},[16053],{"type":50,"value":2762},{"type":44,"tag":100,"props":16055,"children":16056},{"style":400},[16057],{"type":50,"value":750},{"type":44,"tag":100,"props":16059,"children":16060},{"style":113},[16061],{"type":50,"value":2815},{"type":44,"tag":100,"props":16063,"children":16064},{"style":400},[16065],{"type":50,"value":786},{"type":44,"tag":100,"props":16067,"children":16068},{"style":113},[16069],{"type":50,"value":2840},{"type":44,"tag":100,"props":16071,"children":16072},{"style":400},[16073],{"type":50,"value":437},{"type":44,"tag":100,"props":16075,"children":16076},{"style":390},[16077],{"type":50,"value":408},{"type":44,"tag":100,"props":16079,"children":16080},{"style":400},[16081],{"type":50,"value":2853},{"type":44,"tag":100,"props":16083,"children":16084},{"class":102,"line":2856},[16085,16089,16093,16097,16101,16105,16109,16113,16117],{"type":44,"tag":100,"props":16086,"children":16087},{"style":113},[16088],{"type":50,"value":422},{"type":44,"tag":100,"props":16090,"children":16091},{"style":400},[16092],{"type":50,"value":427},{"type":44,"tag":100,"props":16094,"children":16095},{"style":390},[16096],{"type":50,"value":2691},{"type":44,"tag":100,"props":16098,"children":16099},{"style":113},[16100],{"type":50,"value":2874},{"type":44,"tag":100,"props":16102,"children":16103},{"style":400},[16104],{"type":50,"value":786},{"type":44,"tag":100,"props":16106,"children":16107},{"style":113},[16108],{"type":50,"value":2426},{"type":44,"tag":100,"props":16110,"children":16111},{"style":400},[16112],{"type":50,"value":437},{"type":44,"tag":100,"props":16114,"children":16115},{"style":390},[16116],{"type":50,"value":408},{"type":44,"tag":100,"props":16118,"children":16119},{"style":400},[16120],{"type":50,"value":2895},{"type":44,"tag":100,"props":16122,"children":16123},{"class":102,"line":2898},[16124,16128,16132,16136,16140,16144,16148,16152,16156,16160,16164,16168,16172,16176,16180,16184,16188,16192],{"type":44,"tag":100,"props":16125,"children":16126},{"style":113},[16127],{"type":50,"value":654},{"type":44,"tag":100,"props":16129,"children":16130},{"style":400},[16131],{"type":50,"value":2908},{"type":44,"tag":100,"props":16133,"children":16134},{"style":390},[16135],{"type":50,"value":664},{"type":44,"tag":100,"props":16137,"children":16138},{"style":113},[16139],{"type":50,"value":669},{"type":44,"tag":100,"props":16141,"children":16142},{"style":400},[16143],{"type":50,"value":427},{"type":44,"tag":100,"props":16145,"children":16146},{"style":113},[16147],{"type":50,"value":2925},{"type":44,"tag":100,"props":16149,"children":16150},{"style":400},[16151],{"type":50,"value":786},{"type":44,"tag":100,"props":16153,"children":16154},{"style":113},[16155],{"type":50,"value":2784},{"type":44,"tag":100,"props":16157,"children":16158},{"style":400},[16159],{"type":50,"value":750},{"type":44,"tag":100,"props":16161,"children":16162},{"style":113},[16163],{"type":50,"value":679},{"type":44,"tag":100,"props":16165,"children":16166},{"style":400},[16167],{"type":50,"value":437},{"type":44,"tag":100,"props":16169,"children":16170},{"style":390},[16171],{"type":50,"value":432},{"type":44,"tag":100,"props":16173,"children":16174},{"style":113},[16175],{"type":50,"value":745},{"type":44,"tag":100,"props":16177,"children":16178},{"style":400},[16179],{"type":50,"value":750},{"type":44,"tag":100,"props":16181,"children":16182},{"style":113},[16183],{"type":50,"value":689},{"type":44,"tag":100,"props":16185,"children":16186},{"style":400},[16187],{"type":50,"value":437},{"type":44,"tag":100,"props":16189,"children":16190},{"style":390},[16191],{"type":50,"value":408},{"type":44,"tag":100,"props":16193,"children":16194},{"style":400},[16195],{"type":50,"value":2974},{"type":44,"tag":100,"props":16197,"children":16198},{"class":102,"line":2977},[16199,16203,16207,16211,16215,16219,16223,16227],{"type":44,"tag":100,"props":16200,"children":16201},{"style":113},[16202],{"type":50,"value":514},{"type":44,"tag":100,"props":16204,"children":16205},{"style":400},[16206],{"type":50,"value":427},{"type":44,"tag":100,"props":16208,"children":16209},{"style":113},[16210],{"type":50,"value":2815},{"type":44,"tag":100,"props":16212,"children":16213},{"style":400},[16214],{"type":50,"value":786},{"type":44,"tag":100,"props":16216,"children":16217},{"style":113},[16218],{"type":50,"value":2999},{"type":44,"tag":100,"props":16220,"children":16221},{"style":400},[16222],{"type":50,"value":437},{"type":44,"tag":100,"props":16224,"children":16225},{"style":390},[16226],{"type":50,"value":408},{"type":44,"tag":100,"props":16228,"children":16229},{"style":400},[16230],{"type":50,"value":3012},{"type":44,"tag":100,"props":16232,"children":16233},{"class":102,"line":3015},[16234,16238,16242,16246,16250,16254,16258,16262,16266,16270,16274,16278,16282,16286,16290],{"type":44,"tag":100,"props":16235,"children":16236},{"style":113},[16237],{"type":50,"value":654},{"type":44,"tag":100,"props":16239,"children":16240},{"style":400},[16241],{"type":50,"value":3025},{"type":44,"tag":100,"props":16243,"children":16244},{"style":390},[16245],{"type":50,"value":664},{"type":44,"tag":100,"props":16247,"children":16248},{"style":113},[16249],{"type":50,"value":669},{"type":44,"tag":100,"props":16251,"children":16252},{"style":400},[16253],{"type":50,"value":427},{"type":44,"tag":100,"props":16255,"children":16256},{"style":113},[16257],{"type":50,"value":2925},{"type":44,"tag":100,"props":16259,"children":16260},{"style":400},[16261],{"type":50,"value":786},{"type":44,"tag":100,"props":16263,"children":16264},{"style":113},[16265],{"type":50,"value":2784},{"type":44,"tag":100,"props":16267,"children":16268},{"style":400},[16269],{"type":50,"value":750},{"type":44,"tag":100,"props":16271,"children":16272},{"style":113},[16273],{"type":50,"value":679},{"type":44,"tag":100,"props":16275,"children":16276},{"style":400},[16277],{"type":50,"value":684},{"type":44,"tag":100,"props":16279,"children":16280},{"style":113},[16281],{"type":50,"value":689},{"type":44,"tag":100,"props":16283,"children":16284},{"style":400},[16285],{"type":50,"value":437},{"type":44,"tag":100,"props":16287,"children":16288},{"style":390},[16289],{"type":50,"value":408},{"type":44,"tag":100,"props":16291,"children":16292},{"style":400},[16293],{"type":50,"value":3078},{"type":44,"tag":100,"props":16295,"children":16296},{"class":102,"line":3081},[16297,16301],{"type":44,"tag":100,"props":16298,"children":16299},{"style":390},[16300],{"type":50,"value":776},{"type":44,"tag":100,"props":16302,"children":16303},{"style":400},[16304],{"type":50,"value":3091},{"type":44,"tag":100,"props":16306,"children":16307},{"class":102,"line":3094},[16308,16312],{"type":44,"tag":100,"props":16309,"children":16310},{"style":390},[16311],{"type":50,"value":3100},{"type":44,"tag":100,"props":16313,"children":16314},{"style":400},[16315],{"type":50,"value":3105},{"type":44,"tag":100,"props":16317,"children":16318},{"class":102,"line":3108},[16319,16323,16327,16331,16335,16339,16343,16347],{"type":44,"tag":100,"props":16320,"children":16321},{"style":390},[16322],{"type":50,"value":3114},{"type":44,"tag":100,"props":16324,"children":16325},{"style":113},[16326],{"type":50,"value":2874},{"type":44,"tag":100,"props":16328,"children":16329},{"style":400},[16330],{"type":50,"value":786},{"type":44,"tag":100,"props":16332,"children":16333},{"style":113},[16334],{"type":50,"value":2762},{"type":44,"tag":100,"props":16336,"children":16337},{"style":390},[16338],{"type":50,"value":2591},{"type":44,"tag":100,"props":16340,"children":16341},{"style":113},[16342],{"type":50,"value":3135},{"type":44,"tag":100,"props":16344,"children":16345},{"style":400},[16346],{"type":50,"value":786},{"type":44,"tag":100,"props":16348,"children":16349},{"style":113},[16350],{"type":50,"value":3144},{"type":44,"tag":100,"props":16352,"children":16353},{"class":102,"line":3147},[16354,16358,16362,16366,16370,16374,16378,16382,16386],{"type":44,"tag":100,"props":16355,"children":16356},{"style":390},[16357],{"type":50,"value":800},{"type":44,"tag":100,"props":16359,"children":16360},{"style":113},[16361],{"type":50,"value":2874},{"type":44,"tag":100,"props":16363,"children":16364},{"style":400},[16365],{"type":50,"value":786},{"type":44,"tag":100,"props":16367,"children":16368},{"style":113},[16369],{"type":50,"value":2762},{"type":44,"tag":100,"props":16371,"children":16372},{"style":400},[16373],{"type":50,"value":750},{"type":44,"tag":100,"props":16375,"children":16376},{"style":113},[16377],{"type":50,"value":2925},{"type":44,"tag":100,"props":16379,"children":16380},{"style":400},[16381],{"type":50,"value":786},{"type":44,"tag":100,"props":16383,"children":16384},{"style":113},[16385],{"type":50,"value":2784},{"type":44,"tag":100,"props":16387,"children":16388},{"style":400},[16389],{"type":50,"value":3185},{"type":44,"tag":100,"props":16391,"children":16392},{"class":102,"line":3188},[16393,16397,16401,16405,16409],{"type":44,"tag":100,"props":16394,"children":16395},{"style":390},[16396],{"type":50,"value":814},{"type":44,"tag":100,"props":16398,"children":16399},{"style":113},[16400],{"type":50,"value":2874},{"type":44,"tag":100,"props":16402,"children":16403},{"style":400},[16404],{"type":50,"value":786},{"type":44,"tag":100,"props":16406,"children":16407},{"style":113},[16408],{"type":50,"value":2762},{"type":44,"tag":100,"props":16410,"children":16411},{"style":400},[16412],{"type":50,"value":3185},{"type":44,"tag":203,"props":16414,"children":16415},{"v-slot:bigquery":7},[16416],{"type":44,"tag":90,"props":16417,"children":16418},{"className":208,"code":3215,"language":210,"meta":7,"style":7},[16419],{"type":44,"tag":81,"props":16420,"children":16421},{"__ignoreMap":7},[16422,16429,16436,16443,16450,16457,16464,16471,16478,16485,16492,16499,16506,16513,16520,16527,16546,16553,16572,16611,16650,16665,16688,16711,16746,16773,16780,16795,16802,16809,16836,16847,16858,16865,16872,16891,16910,16965,17004,17107,17142,17229,17240,17251,17286,17325],{"type":44,"tag":100,"props":16423,"children":16424},{"class":102,"line":103},[16425],{"type":44,"tag":100,"props":16426,"children":16427},{"style":220},[16428],{"type":50,"value":223},{"type":44,"tag":100,"props":16430,"children":16431},{"class":102,"line":226},[16432],{"type":44,"tag":100,"props":16433,"children":16434},{"style":220},[16435],{"type":50,"value":2286},{"type":44,"tag":100,"props":16437,"children":16438},{"class":102,"line":235},[16439],{"type":44,"tag":100,"props":16440,"children":16441},{"style":220},[16442],{"type":50,"value":241},{"type":44,"tag":100,"props":16444,"children":16445},{"class":102,"line":24},[16446],{"type":44,"tag":100,"props":16447,"children":16448},{"style":220},[16449],{"type":50,"value":249},{"type":44,"tag":100,"props":16451,"children":16452},{"class":102,"line":252},[16453],{"type":44,"tag":100,"props":16454,"children":16455},{"style":220},[16456],{"type":50,"value":258},{"type":44,"tag":100,"props":16458,"children":16459},{"class":102,"line":261},[16460],{"type":44,"tag":100,"props":16461,"children":16462},{"style":220},[16463],{"type":50,"value":267},{"type":44,"tag":100,"props":16465,"children":16466},{"class":102,"line":270},[16467],{"type":44,"tag":100,"props":16468,"children":16469},{"style":220},[16470],{"type":50,"value":276},{"type":44,"tag":100,"props":16472,"children":16473},{"class":102,"line":279},[16474],{"type":44,"tag":100,"props":16475,"children":16476},{"style":220},[16477],{"type":50,"value":2329},{"type":44,"tag":100,"props":16479,"children":16480},{"class":102,"line":288},[16481],{"type":44,"tag":100,"props":16482,"children":16483},{"style":220},[16484],{"type":50,"value":285},{"type":44,"tag":100,"props":16486,"children":16487},{"class":102,"line":297},[16488],{"type":44,"tag":100,"props":16489,"children":16490},{"style":220},[16491],{"type":50,"value":2344},{"type":44,"tag":100,"props":16493,"children":16494},{"class":102,"line":306},[16495],{"type":44,"tag":100,"props":16496,"children":16497},{"style":220},[16498],{"type":50,"value":303},{"type":44,"tag":100,"props":16500,"children":16501},{"class":102,"line":315},[16502],{"type":44,"tag":100,"props":16503,"children":16504},{"style":220},[16505],{"type":50,"value":312},{"type":44,"tag":100,"props":16507,"children":16508},{"class":102,"line":324},[16509],{"type":44,"tag":100,"props":16510,"children":16511},{"style":220},[16512],{"type":50,"value":321},{"type":44,"tag":100,"props":16514,"children":16515},{"class":102,"line":333},[16516],{"type":44,"tag":100,"props":16517,"children":16518},{"style":220},[16519],{"type":50,"value":374},{"type":44,"tag":100,"props":16521,"children":16522},{"class":102,"line":11},[16523],{"type":44,"tag":100,"props":16524,"children":16525},{"emptyLinePlaceholder":23},[16526],{"type":50,"value":383},{"type":44,"tag":100,"props":16528,"children":16529},{"class":102,"line":350},[16530,16534,16538,16542],{"type":44,"tag":100,"props":16531,"children":16532},{"style":390},[16533],{"type":50,"value":2387},{"type":44,"tag":100,"props":16535,"children":16536},{"style":400},[16537],{"type":50,"value":2392},{"type":44,"tag":100,"props":16539,"children":16540},{"style":390},[16541],{"type":50,"value":408},{"type":44,"tag":100,"props":16543,"children":16544},{"style":400},[16545],{"type":50,"value":2401},{"type":44,"tag":100,"props":16547,"children":16548},{"class":102,"line":359},[16549],{"type":44,"tag":100,"props":16550,"children":16551},{"style":390},[16552],{"type":50,"value":2409},{"type":44,"tag":100,"props":16554,"children":16555},{"class":102,"line":368},[16556,16560,16564,16568],{"type":44,"tag":100,"props":16557,"children":16558},{"style":113},[16559],{"type":50,"value":2417},{"type":44,"tag":100,"props":16561,"children":16562},{"style":400},[16563],{"type":50,"value":786},{"type":44,"tag":100,"props":16565,"children":16566},{"style":113},[16567],{"type":50,"value":2426},{"type":44,"tag":100,"props":16569,"children":16570},{"style":400},[16571],{"type":50,"value":2431},{"type":44,"tag":100,"props":16573,"children":16574},{"class":102,"line":377},[16575,16579,16583,16587,16591,16595,16599,16603,16607],{"type":44,"tag":100,"props":16576,"children":16577},{"style":400},[16578],{"type":50,"value":3377},{"type":44,"tag":100,"props":16580,"children":16581},{"style":113},[16582],{"type":50,"value":2444},{"type":44,"tag":100,"props":16584,"children":16585},{"style":400},[16586],{"type":50,"value":786},{"type":44,"tag":100,"props":16588,"children":16589},{"style":113},[16590],{"type":50,"value":2453},{"type":44,"tag":100,"props":16592,"children":16593},{"style":400},[16594],{"type":50,"value":750},{"type":44,"tag":100,"props":16596,"children":16597},{"style":390},[16598],{"type":50,"value":3398},{"type":44,"tag":100,"props":16600,"children":16601},{"style":400},[16602],{"type":50,"value":437},{"type":44,"tag":100,"props":16604,"children":16605},{"style":390},[16606],{"type":50,"value":408},{"type":44,"tag":100,"props":16608,"children":16609},{"style":400},[16610],{"type":50,"value":2466},{"type":44,"tag":100,"props":16612,"children":16613},{"class":102,"line":386},[16614,16618,16622,16626,16630,16634,16638,16642,16646],{"type":44,"tag":100,"props":16615,"children":16616},{"style":400},[16617],{"type":50,"value":3377},{"type":44,"tag":100,"props":16619,"children":16620},{"style":113},[16621],{"type":50,"value":2478},{"type":44,"tag":100,"props":16623,"children":16624},{"style":400},[16625],{"type":50,"value":786},{"type":44,"tag":100,"props":16627,"children":16628},{"style":113},[16629],{"type":50,"value":2487},{"type":44,"tag":100,"props":16631,"children":16632},{"style":400},[16633],{"type":50,"value":750},{"type":44,"tag":100,"props":16635,"children":16636},{"style":390},[16637],{"type":50,"value":3398},{"type":44,"tag":100,"props":16639,"children":16640},{"style":400},[16641],{"type":50,"value":437},{"type":44,"tag":100,"props":16643,"children":16644},{"style":390},[16645],{"type":50,"value":408},{"type":44,"tag":100,"props":16647,"children":16648},{"style":400},[16649],{"type":50,"value":2500},{"type":44,"tag":100,"props":16651,"children":16652},{"class":102,"line":396},[16653,16657,16661],{"type":44,"tag":100,"props":16654,"children":16655},{"style":113},[16656],{"type":50,"value":2417},{"type":44,"tag":100,"props":16658,"children":16659},{"style":400},[16660],{"type":50,"value":786},{"type":44,"tag":100,"props":16662,"children":16663},{"style":113},[16664],{"type":50,"value":2516},{"type":44,"tag":100,"props":16666,"children":16667},{"class":102,"line":416},[16668,16672,16676,16680,16684],{"type":44,"tag":100,"props":16669,"children":16670},{"style":390},[16671],{"type":50,"value":2524},{"type":44,"tag":100,"props":16673,"children":16674},{"style":113},[16675],{"type":50,"value":781},{"type":44,"tag":100,"props":16677,"children":16678},{"style":400},[16679],{"type":50,"value":786},{"type":44,"tag":100,"props":16681,"children":16682},{"style":113},[16683],{"type":50,"value":1408},{"type":44,"tag":100,"props":16685,"children":16686},{"style":400},[16687],{"type":50,"value":1413},{"type":44,"tag":100,"props":16689,"children":16690},{"class":102,"line":449},[16691,16695,16699,16703,16707],{"type":44,"tag":100,"props":16692,"children":16693},{"style":390},[16694],{"type":50,"value":2548},{"type":44,"tag":100,"props":16696,"children":16697},{"style":113},[16698],{"type":50,"value":781},{"type":44,"tag":100,"props":16700,"children":16701},{"style":400},[16702],{"type":50,"value":786},{"type":44,"tag":100,"props":16704,"children":16705},{"style":113},[16706],{"type":50,"value":2561},{"type":44,"tag":100,"props":16708,"children":16709},{"style":400},[16710],{"type":50,"value":2566},{"type":44,"tag":100,"props":16712,"children":16713},{"class":102,"line":481},[16714,16718,16722,16726,16730,16734,16738,16742],{"type":44,"tag":100,"props":16715,"children":16716},{"style":390},[16717],{"type":50,"value":2574},{"type":44,"tag":100,"props":16719,"children":16720},{"style":113},[16721],{"type":50,"value":1426},{"type":44,"tag":100,"props":16723,"children":16724},{"style":400},[16725],{"type":50,"value":786},{"type":44,"tag":100,"props":16727,"children":16728},{"style":113},[16729],{"type":50,"value":2426},{"type":44,"tag":100,"props":16731,"children":16732},{"style":390},[16733],{"type":50,"value":2591},{"type":44,"tag":100,"props":16735,"children":16736},{"style":113},[16737],{"type":50,"value":2596},{"type":44,"tag":100,"props":16739,"children":16740},{"style":400},[16741],{"type":50,"value":786},{"type":44,"tag":100,"props":16743,"children":16744},{"style":113},[16745],{"type":50,"value":2605},{"type":44,"tag":100,"props":16747,"children":16748},{"class":102,"line":508},[16749,16753,16757,16761,16765,16769],{"type":44,"tag":100,"props":16750,"children":16751},{"style":390},[16752],{"type":50,"value":2613},{"type":44,"tag":100,"props":16754,"children":16755},{"style":113},[16756],{"type":50,"value":1426},{"type":44,"tag":100,"props":16758,"children":16759},{"style":400},[16760],{"type":50,"value":786},{"type":44,"tag":100,"props":16762,"children":16763},{"style":113},[16764],{"type":50,"value":2626},{"type":44,"tag":100,"props":16766,"children":16767},{"style":390},[16768],{"type":50,"value":2591},{"type":44,"tag":100,"props":16770,"children":16771},{"style":119},[16772],{"type":50,"value":2635},{"type":44,"tag":100,"props":16774,"children":16775},{"class":102,"line":531},[16776],{"type":44,"tag":100,"props":16777,"children":16778},{"style":400},[16779],{"type":50,"value":2643},{"type":44,"tag":100,"props":16781,"children":16782},{"class":102,"line":604},[16783,16787,16791],{"type":44,"tag":100,"props":16784,"children":16785},{"style":400},[16786],{"type":50,"value":2651},{"type":44,"tag":100,"props":16788,"children":16789},{"style":390},[16790],{"type":50,"value":408},{"type":44,"tag":100,"props":16792,"children":16793},{"style":400},[16794],{"type":50,"value":2401},{"type":44,"tag":100,"props":16796,"children":16797},{"class":102,"line":626},[16798],{"type":44,"tag":100,"props":16799,"children":16800},{"style":390},[16801],{"type":50,"value":2409},{"type":44,"tag":100,"props":16803,"children":16804},{"class":102,"line":648},[16805],{"type":44,"tag":100,"props":16806,"children":16807},{"style":400},[16808],{"type":50,"value":2674},{"type":44,"tag":100,"props":16810,"children":16811},{"class":102,"line":705},[16812,16816,16820,16824,16828,16832],{"type":44,"tag":100,"props":16813,"children":16814},{"style":113},[16815],{"type":50,"value":2682},{"type":44,"tag":100,"props":16817,"children":16818},{"style":400},[16819],{"type":50,"value":427},{"type":44,"tag":100,"props":16821,"children":16822},{"style":390},[16823],{"type":50,"value":2691},{"type":44,"tag":100,"props":16825,"children":16826},{"style":400},[16827],{"type":50,"value":2696},{"type":44,"tag":100,"props":16829,"children":16830},{"style":390},[16831],{"type":50,"value":408},{"type":44,"tag":100,"props":16833,"children":16834},{"style":400},[16835],{"type":50,"value":2705},{"type":44,"tag":100,"props":16837,"children":16838},{"class":102,"line":770},[16839,16843],{"type":44,"tag":100,"props":16840,"children":16841},{"style":390},[16842],{"type":50,"value":2524},{"type":44,"tag":100,"props":16844,"children":16845},{"style":400},[16846],{"type":50,"value":2717},{"type":44,"tag":100,"props":16848,"children":16849},{"class":102,"line":794},[16850,16854],{"type":44,"tag":100,"props":16851,"children":16852},{"style":390},[16853],{"type":50,"value":2725},{"type":44,"tag":100,"props":16855,"children":16856},{"style":400},[16857],{"type":50,"value":2730},{"type":44,"tag":100,"props":16859,"children":16860},{"class":102,"line":808},[16861],{"type":44,"tag":100,"props":16862,"children":16863},{"style":400},[16864],{"type":50,"value":1464},{"type":44,"tag":100,"props":16866,"children":16867},{"class":102,"line":1484},[16868],{"type":44,"tag":100,"props":16869,"children":16870},{"style":390},[16871],{"type":50,"value":393},{"type":44,"tag":100,"props":16873,"children":16874},{"class":102,"line":2747},[16875,16879,16883,16887],{"type":44,"tag":100,"props":16876,"children":16877},{"style":113},[16878],{"type":50,"value":2753},{"type":44,"tag":100,"props":16880,"children":16881},{"style":400},[16882],{"type":50,"value":786},{"type":44,"tag":100,"props":16884,"children":16885},{"style":113},[16886],{"type":50,"value":2762},{"type":44,"tag":100,"props":16888,"children":16889},{"style":400},[16890],{"type":50,"value":2431},{"type":44,"tag":100,"props":16892,"children":16893},{"class":102,"line":2769},[16894,16898,16902,16906],{"type":44,"tag":100,"props":16895,"children":16896},{"style":113},[16897],{"type":50,"value":2775},{"type":44,"tag":100,"props":16899,"children":16900},{"style":400},[16901],{"type":50,"value":786},{"type":44,"tag":100,"props":16903,"children":16904},{"style":113},[16905],{"type":50,"value":2784},{"type":44,"tag":100,"props":16907,"children":16908},{"style":400},[16909],{"type":50,"value":2431},{"type":44,"tag":100,"props":16911,"children":16912},{"class":102,"line":2791},[16913,16917,16921,16925,16929,16933,16937,16941,16945,16949,16953,16957,16961],{"type":44,"tag":100,"props":16914,"children":16915},{"style":400},[16916],{"type":50,"value":3717},{"type":44,"tag":100,"props":16918,"children":16919},{"style":113},[16920],{"type":50,"value":2815},{"type":44,"tag":100,"props":16922,"children":16923},{"style":400},[16924],{"type":50,"value":786},{"type":44,"tag":100,"props":16926,"children":16927},{"style":113},[16928],{"type":50,"value":2840},{"type":44,"tag":100,"props":16930,"children":16931},{"style":400},[16932],{"type":50,"value":750},{"type":44,"tag":100,"props":16934,"children":16935},{"style":113},[16936],{"type":50,"value":2815},{"type":44,"tag":100,"props":16938,"children":16939},{"style":400},[16940],{"type":50,"value":786},{"type":44,"tag":100,"props":16942,"children":16943},{"style":113},[16944],{"type":50,"value":2762},{"type":44,"tag":100,"props":16946,"children":16947},{"style":400},[16948],{"type":50,"value":750},{"type":44,"tag":100,"props":16950,"children":16951},{"style":390},[16952],{"type":50,"value":3398},{"type":44,"tag":100,"props":16954,"children":16955},{"style":400},[16956],{"type":50,"value":437},{"type":44,"tag":100,"props":16958,"children":16959},{"style":390},[16960],{"type":50,"value":408},{"type":44,"tag":100,"props":16962,"children":16963},{"style":400},[16964],{"type":50,"value":2853},{"type":44,"tag":100,"props":16966,"children":16967},{"class":102,"line":2856},[16968,16972,16976,16980,16984,16988,16992,16996,17000],{"type":44,"tag":100,"props":16969,"children":16970},{"style":113},[16971],{"type":50,"value":422},{"type":44,"tag":100,"props":16973,"children":16974},{"style":400},[16975],{"type":50,"value":427},{"type":44,"tag":100,"props":16977,"children":16978},{"style":390},[16979],{"type":50,"value":2691},{"type":44,"tag":100,"props":16981,"children":16982},{"style":113},[16983],{"type":50,"value":2874},{"type":44,"tag":100,"props":16985,"children":16986},{"style":400},[16987],{"type":50,"value":786},{"type":44,"tag":100,"props":16989,"children":16990},{"style":113},[16991],{"type":50,"value":2426},{"type":44,"tag":100,"props":16993,"children":16994},{"style":400},[16995],{"type":50,"value":437},{"type":44,"tag":100,"props":16997,"children":16998},{"style":390},[16999],{"type":50,"value":408},{"type":44,"tag":100,"props":17001,"children":17002},{"style":400},[17003],{"type":50,"value":2895},{"type":44,"tag":100,"props":17005,"children":17006},{"class":102,"line":2898},[17007,17011,17015,17019,17023,17027,17031,17035,17039,17043,17047,17051,17055,17059,17063,17067,17071,17075,17079,17083,17087,17091,17095,17099,17103],{"type":44,"tag":100,"props":17008,"children":17009},{"style":113},[17010],{"type":50,"value":654},{"type":44,"tag":100,"props":17012,"children":17013},{"style":400},[17014],{"type":50,"value":427},{"type":44,"tag":100,"props":17016,"children":17017},{"style":113},[17018],{"type":50,"value":1340},{"type":44,"tag":100,"props":17020,"children":17021},{"style":400},[17022],{"type":50,"value":427},{"type":44,"tag":100,"props":17024,"children":17025},{"style":390},[17026],{"type":50,"value":2691},{"type":44,"tag":100,"props":17028,"children":17029},{"style":113},[17030],{"type":50,"value":2874},{"type":44,"tag":100,"props":17032,"children":17033},{"style":400},[17034],{"type":50,"value":786},{"type":44,"tag":100,"props":17036,"children":17037},{"style":113},[17038],{"type":50,"value":2426},{"type":44,"tag":100,"props":17040,"children":17041},{"style":400},[17042],{"type":50,"value":437},{"type":44,"tag":100,"props":17044,"children":17045},{"style":390},[17046],{"type":50,"value":664},{"type":44,"tag":100,"props":17048,"children":17049},{"style":113},[17050],{"type":50,"value":1262},{"type":44,"tag":100,"props":17052,"children":17053},{"style":400},[17054],{"type":50,"value":427},{"type":44,"tag":100,"props":17056,"children":17057},{"style":113},[17058],{"type":50,"value":2925},{"type":44,"tag":100,"props":17060,"children":17061},{"style":400},[17062],{"type":50,"value":786},{"type":44,"tag":100,"props":17064,"children":17065},{"style":113},[17066],{"type":50,"value":2784},{"type":44,"tag":100,"props":17068,"children":17069},{"style":400},[17070],{"type":50,"value":750},{"type":44,"tag":100,"props":17072,"children":17073},{"style":113},[17074],{"type":50,"value":679},{"type":44,"tag":100,"props":17076,"children":17077},{"style":400},[17078],{"type":50,"value":437},{"type":44,"tag":100,"props":17080,"children":17081},{"style":390},[17082],{"type":50,"value":432},{"type":44,"tag":100,"props":17084,"children":17085},{"style":113},[17086],{"type":50,"value":745},{"type":44,"tag":100,"props":17088,"children":17089},{"style":400},[17090],{"type":50,"value":750},{"type":44,"tag":100,"props":17092,"children":17093},{"style":113},[17094],{"type":50,"value":689},{"type":44,"tag":100,"props":17096,"children":17097},{"style":400},[17098],{"type":50,"value":437},{"type":44,"tag":100,"props":17100,"children":17101},{"style":390},[17102],{"type":50,"value":408},{"type":44,"tag":100,"props":17104,"children":17105},{"style":400},[17106],{"type":50,"value":2974},{"type":44,"tag":100,"props":17108,"children":17109},{"class":102,"line":2977},[17110,17114,17118,17122,17126,17130,17134,17138],{"type":44,"tag":100,"props":17111,"children":17112},{"style":113},[17113],{"type":50,"value":514},{"type":44,"tag":100,"props":17115,"children":17116},{"style":400},[17117],{"type":50,"value":427},{"type":44,"tag":100,"props":17119,"children":17120},{"style":113},[17121],{"type":50,"value":2815},{"type":44,"tag":100,"props":17123,"children":17124},{"style":400},[17125],{"type":50,"value":786},{"type":44,"tag":100,"props":17127,"children":17128},{"style":113},[17129],{"type":50,"value":2999},{"type":44,"tag":100,"props":17131,"children":17132},{"style":400},[17133],{"type":50,"value":437},{"type":44,"tag":100,"props":17135,"children":17136},{"style":390},[17137],{"type":50,"value":408},{"type":44,"tag":100,"props":17139,"children":17140},{"style":400},[17141],{"type":50,"value":3012},{"type":44,"tag":100,"props":17143,"children":17144},{"class":102,"line":3015},[17145,17149,17153,17157,17161,17165,17169,17173,17177,17181,17185,17189,17193,17197,17201,17205,17209,17213,17217,17221,17225],{"type":44,"tag":100,"props":17146,"children":17147},{"style":113},[17148],{"type":50,"value":654},{"type":44,"tag":100,"props":17150,"children":17151},{"style":400},[17152],{"type":50,"value":427},{"type":44,"tag":100,"props":17154,"children":17155},{"style":113},[17156],{"type":50,"value":1205},{"type":44,"tag":100,"props":17158,"children":17159},{"style":400},[17160],{"type":50,"value":427},{"type":44,"tag":100,"props":17162,"children":17163},{"style":113},[17164],{"type":50,"value":2815},{"type":44,"tag":100,"props":17166,"children":17167},{"style":400},[17168],{"type":50,"value":786},{"type":44,"tag":100,"props":17170,"children":17171},{"style":113},[17172],{"type":50,"value":2999},{"type":44,"tag":100,"props":17174,"children":17175},{"style":400},[17176],{"type":50,"value":437},{"type":44,"tag":100,"props":17178,"children":17179},{"style":390},[17180],{"type":50,"value":664},{"type":44,"tag":100,"props":17182,"children":17183},{"style":113},[17184],{"type":50,"value":1262},{"type":44,"tag":100,"props":17186,"children":17187},{"style":400},[17188],{"type":50,"value":427},{"type":44,"tag":100,"props":17190,"children":17191},{"style":113},[17192],{"type":50,"value":2925},{"type":44,"tag":100,"props":17194,"children":17195},{"style":400},[17196],{"type":50,"value":786},{"type":44,"tag":100,"props":17198,"children":17199},{"style":113},[17200],{"type":50,"value":2784},{"type":44,"tag":100,"props":17202,"children":17203},{"style":400},[17204],{"type":50,"value":750},{"type":44,"tag":100,"props":17206,"children":17207},{"style":113},[17208],{"type":50,"value":679},{"type":44,"tag":100,"props":17210,"children":17211},{"style":400},[17212],{"type":50,"value":684},{"type":44,"tag":100,"props":17214,"children":17215},{"style":113},[17216],{"type":50,"value":689},{"type":44,"tag":100,"props":17218,"children":17219},{"style":400},[17220],{"type":50,"value":437},{"type":44,"tag":100,"props":17222,"children":17223},{"style":390},[17224],{"type":50,"value":408},{"type":44,"tag":100,"props":17226,"children":17227},{"style":400},[17228],{"type":50,"value":3078},{"type":44,"tag":100,"props":17230,"children":17231},{"class":102,"line":3081},[17232,17236],{"type":44,"tag":100,"props":17233,"children":17234},{"style":390},[17235],{"type":50,"value":776},{"type":44,"tag":100,"props":17237,"children":17238},{"style":400},[17239],{"type":50,"value":3091},{"type":44,"tag":100,"props":17241,"children":17242},{"class":102,"line":3094},[17243,17247],{"type":44,"tag":100,"props":17244,"children":17245},{"style":390},[17246],{"type":50,"value":3100},{"type":44,"tag":100,"props":17248,"children":17249},{"style":400},[17250],{"type":50,"value":3105},{"type":44,"tag":100,"props":17252,"children":17253},{"class":102,"line":3108},[17254,17258,17262,17266,17270,17274,17278,17282],{"type":44,"tag":100,"props":17255,"children":17256},{"style":390},[17257],{"type":50,"value":3114},{"type":44,"tag":100,"props":17259,"children":17260},{"style":113},[17261],{"type":50,"value":2874},{"type":44,"tag":100,"props":17263,"children":17264},{"style":400},[17265],{"type":50,"value":786},{"type":44,"tag":100,"props":17267,"children":17268},{"style":113},[17269],{"type":50,"value":2762},{"type":44,"tag":100,"props":17271,"children":17272},{"style":390},[17273],{"type":50,"value":2591},{"type":44,"tag":100,"props":17275,"children":17276},{"style":113},[17277],{"type":50,"value":3135},{"type":44,"tag":100,"props":17279,"children":17280},{"style":400},[17281],{"type":50,"value":786},{"type":44,"tag":100,"props":17283,"children":17284},{"style":113},[17285],{"type":50,"value":3144},{"type":44,"tag":100,"props":17287,"children":17288},{"class":102,"line":3147},[17289,17293,17297,17301,17305,17309,17313,17317,17321],{"type":44,"tag":100,"props":17290,"children":17291},{"style":390},[17292],{"type":50,"value":800},{"type":44,"tag":100,"props":17294,"children":17295},{"style":113},[17296],{"type":50,"value":2874},{"type":44,"tag":100,"props":17298,"children":17299},{"style":400},[17300],{"type":50,"value":786},{"type":44,"tag":100,"props":17302,"children":17303},{"style":113},[17304],{"type":50,"value":2762},{"type":44,"tag":100,"props":17306,"children":17307},{"style":400},[17308],{"type":50,"value":750},{"type":44,"tag":100,"props":17310,"children":17311},{"style":113},[17312],{"type":50,"value":2925},{"type":44,"tag":100,"props":17314,"children":17315},{"style":400},[17316],{"type":50,"value":786},{"type":44,"tag":100,"props":17318,"children":17319},{"style":113},[17320],{"type":50,"value":2784},{"type":44,"tag":100,"props":17322,"children":17323},{"style":400},[17324],{"type":50,"value":3185},{"type":44,"tag":100,"props":17326,"children":17327},{"class":102,"line":3188},[17328,17332,17336,17340,17344],{"type":44,"tag":100,"props":17329,"children":17330},{"style":390},[17331],{"type":50,"value":814},{"type":44,"tag":100,"props":17333,"children":17334},{"style":113},[17335],{"type":50,"value":2874},{"type":44,"tag":100,"props":17337,"children":17338},{"style":400},[17339],{"type":50,"value":786},{"type":44,"tag":100,"props":17341,"children":17342},{"style":113},[17343],{"type":50,"value":2762},{"type":44,"tag":100,"props":17345,"children":17346},{"style":400},[17347],{"type":50,"value":3185},{"type":44,"tag":203,"props":17349,"children":17350},{"v-slot:snowflake":7},[17351],{"type":44,"tag":90,"props":17352,"children":17353},{"className":208,"code":4154,"language":210,"meta":7,"style":7},[17354],{"type":44,"tag":81,"props":17355,"children":17356},{"__ignoreMap":7},[17357,17364,17371,17378,17385,17392,17399,17406,17413,17420,17427,17434,17441,17448,17455,17462,17481,17488,17507,17546,17585,17600,17623,17646,17681,17708,17715,17730,17737,17744,17771,17782,17793,17800,17807,17826,17845,17904,17943,18046,18081,18168,18179,18190,18225,18264],{"type":44,"tag":100,"props":17358,"children":17359},{"class":102,"line":103},[17360],{"type":44,"tag":100,"props":17361,"children":17362},{"style":220},[17363],{"type":50,"value":223},{"type":44,"tag":100,"props":17365,"children":17366},{"class":102,"line":226},[17367],{"type":44,"tag":100,"props":17368,"children":17369},{"style":220},[17370],{"type":50,"value":2286},{"type":44,"tag":100,"props":17372,"children":17373},{"class":102,"line":235},[17374],{"type":44,"tag":100,"props":17375,"children":17376},{"style":220},[17377],{"type":50,"value":241},{"type":44,"tag":100,"props":17379,"children":17380},{"class":102,"line":24},[17381],{"type":44,"tag":100,"props":17382,"children":17383},{"style":220},[17384],{"type":50,"value":249},{"type":44,"tag":100,"props":17386,"children":17387},{"class":102,"line":252},[17388],{"type":44,"tag":100,"props":17389,"children":17390},{"style":220},[17391],{"type":50,"value":258},{"type":44,"tag":100,"props":17393,"children":17394},{"class":102,"line":261},[17395],{"type":44,"tag":100,"props":17396,"children":17397},{"style":220},[17398],{"type":50,"value":267},{"type":44,"tag":100,"props":17400,"children":17401},{"class":102,"line":270},[17402],{"type":44,"tag":100,"props":17403,"children":17404},{"style":220},[17405],{"type":50,"value":276},{"type":44,"tag":100,"props":17407,"children":17408},{"class":102,"line":279},[17409],{"type":44,"tag":100,"props":17410,"children":17411},{"style":220},[17412],{"type":50,"value":2329},{"type":44,"tag":100,"props":17414,"children":17415},{"class":102,"line":288},[17416],{"type":44,"tag":100,"props":17417,"children":17418},{"style":220},[17419],{"type":50,"value":285},{"type":44,"tag":100,"props":17421,"children":17422},{"class":102,"line":297},[17423],{"type":44,"tag":100,"props":17424,"children":17425},{"style":220},[17426],{"type":50,"value":2344},{"type":44,"tag":100,"props":17428,"children":17429},{"class":102,"line":306},[17430],{"type":44,"tag":100,"props":17431,"children":17432},{"style":220},[17433],{"type":50,"value":303},{"type":44,"tag":100,"props":17435,"children":17436},{"class":102,"line":315},[17437],{"type":44,"tag":100,"props":17438,"children":17439},{"style":220},[17440],{"type":50,"value":312},{"type":44,"tag":100,"props":17442,"children":17443},{"class":102,"line":324},[17444],{"type":44,"tag":100,"props":17445,"children":17446},{"style":220},[17447],{"type":50,"value":321},{"type":44,"tag":100,"props":17449,"children":17450},{"class":102,"line":333},[17451],{"type":44,"tag":100,"props":17452,"children":17453},{"style":220},[17454],{"type":50,"value":374},{"type":44,"tag":100,"props":17456,"children":17457},{"class":102,"line":11},[17458],{"type":44,"tag":100,"props":17459,"children":17460},{"emptyLinePlaceholder":23},[17461],{"type":50,"value":383},{"type":44,"tag":100,"props":17463,"children":17464},{"class":102,"line":350},[17465,17469,17473,17477],{"type":44,"tag":100,"props":17466,"children":17467},{"style":390},[17468],{"type":50,"value":2387},{"type":44,"tag":100,"props":17470,"children":17471},{"style":400},[17472],{"type":50,"value":2392},{"type":44,"tag":100,"props":17474,"children":17475},{"style":390},[17476],{"type":50,"value":408},{"type":44,"tag":100,"props":17478,"children":17479},{"style":400},[17480],{"type":50,"value":2401},{"type":44,"tag":100,"props":17482,"children":17483},{"class":102,"line":359},[17484],{"type":44,"tag":100,"props":17485,"children":17486},{"style":390},[17487],{"type":50,"value":2409},{"type":44,"tag":100,"props":17489,"children":17490},{"class":102,"line":368},[17491,17495,17499,17503],{"type":44,"tag":100,"props":17492,"children":17493},{"style":113},[17494],{"type":50,"value":2417},{"type":44,"tag":100,"props":17496,"children":17497},{"style":400},[17498],{"type":50,"value":786},{"type":44,"tag":100,"props":17500,"children":17501},{"style":113},[17502],{"type":50,"value":2426},{"type":44,"tag":100,"props":17504,"children":17505},{"style":400},[17506],{"type":50,"value":2431},{"type":44,"tag":100,"props":17508,"children":17509},{"class":102,"line":377},[17510,17514,17518,17522,17526,17530,17534,17538,17542],{"type":44,"tag":100,"props":17511,"children":17512},{"style":400},[17513],{"type":50,"value":3377},{"type":44,"tag":100,"props":17515,"children":17516},{"style":119},[17517],{"type":50,"value":2806},{"type":44,"tag":100,"props":17519,"children":17520},{"style":400},[17521],{"type":50,"value":750},{"type":44,"tag":100,"props":17523,"children":17524},{"style":113},[17525],{"type":50,"value":2444},{"type":44,"tag":100,"props":17527,"children":17528},{"style":400},[17529],{"type":50,"value":786},{"type":44,"tag":100,"props":17531,"children":17532},{"style":113},[17533],{"type":50,"value":2453},{"type":44,"tag":100,"props":17535,"children":17536},{"style":400},[17537],{"type":50,"value":437},{"type":44,"tag":100,"props":17539,"children":17540},{"style":390},[17541],{"type":50,"value":408},{"type":44,"tag":100,"props":17543,"children":17544},{"style":400},[17545],{"type":50,"value":2466},{"type":44,"tag":100,"props":17547,"children":17548},{"class":102,"line":386},[17549,17553,17557,17561,17565,17569,17573,17577,17581],{"type":44,"tag":100,"props":17550,"children":17551},{"style":400},[17552],{"type":50,"value":3377},{"type":44,"tag":100,"props":17554,"children":17555},{"style":119},[17556],{"type":50,"value":2806},{"type":44,"tag":100,"props":17558,"children":17559},{"style":400},[17560],{"type":50,"value":750},{"type":44,"tag":100,"props":17562,"children":17563},{"style":113},[17564],{"type":50,"value":2478},{"type":44,"tag":100,"props":17566,"children":17567},{"style":400},[17568],{"type":50,"value":786},{"type":44,"tag":100,"props":17570,"children":17571},{"style":113},[17572],{"type":50,"value":2487},{"type":44,"tag":100,"props":17574,"children":17575},{"style":400},[17576],{"type":50,"value":437},{"type":44,"tag":100,"props":17578,"children":17579},{"style":390},[17580],{"type":50,"value":408},{"type":44,"tag":100,"props":17582,"children":17583},{"style":400},[17584],{"type":50,"value":2500},{"type":44,"tag":100,"props":17586,"children":17587},{"class":102,"line":396},[17588,17592,17596],{"type":44,"tag":100,"props":17589,"children":17590},{"style":113},[17591],{"type":50,"value":2417},{"type":44,"tag":100,"props":17593,"children":17594},{"style":400},[17595],{"type":50,"value":786},{"type":44,"tag":100,"props":17597,"children":17598},{"style":113},[17599],{"type":50,"value":2516},{"type":44,"tag":100,"props":17601,"children":17602},{"class":102,"line":416},[17603,17607,17611,17615,17619],{"type":44,"tag":100,"props":17604,"children":17605},{"style":390},[17606],{"type":50,"value":2524},{"type":44,"tag":100,"props":17608,"children":17609},{"style":113},[17610],{"type":50,"value":781},{"type":44,"tag":100,"props":17612,"children":17613},{"style":400},[17614],{"type":50,"value":786},{"type":44,"tag":100,"props":17616,"children":17617},{"style":113},[17618],{"type":50,"value":1408},{"type":44,"tag":100,"props":17620,"children":17621},{"style":400},[17622],{"type":50,"value":1413},{"type":44,"tag":100,"props":17624,"children":17625},{"class":102,"line":449},[17626,17630,17634,17638,17642],{"type":44,"tag":100,"props":17627,"children":17628},{"style":390},[17629],{"type":50,"value":2548},{"type":44,"tag":100,"props":17631,"children":17632},{"style":113},[17633],{"type":50,"value":781},{"type":44,"tag":100,"props":17635,"children":17636},{"style":400},[17637],{"type":50,"value":786},{"type":44,"tag":100,"props":17639,"children":17640},{"style":113},[17641],{"type":50,"value":2561},{"type":44,"tag":100,"props":17643,"children":17644},{"style":400},[17645],{"type":50,"value":2566},{"type":44,"tag":100,"props":17647,"children":17648},{"class":102,"line":481},[17649,17653,17657,17661,17665,17669,17673,17677],{"type":44,"tag":100,"props":17650,"children":17651},{"style":390},[17652],{"type":50,"value":2574},{"type":44,"tag":100,"props":17654,"children":17655},{"style":113},[17656],{"type":50,"value":1426},{"type":44,"tag":100,"props":17658,"children":17659},{"style":400},[17660],{"type":50,"value":786},{"type":44,"tag":100,"props":17662,"children":17663},{"style":113},[17664],{"type":50,"value":2426},{"type":44,"tag":100,"props":17666,"children":17667},{"style":390},[17668],{"type":50,"value":2591},{"type":44,"tag":100,"props":17670,"children":17671},{"style":113},[17672],{"type":50,"value":2596},{"type":44,"tag":100,"props":17674,"children":17675},{"style":400},[17676],{"type":50,"value":786},{"type":44,"tag":100,"props":17678,"children":17679},{"style":113},[17680],{"type":50,"value":2605},{"type":44,"tag":100,"props":17682,"children":17683},{"class":102,"line":508},[17684,17688,17692,17696,17700,17704],{"type":44,"tag":100,"props":17685,"children":17686},{"style":390},[17687],{"type":50,"value":2613},{"type":44,"tag":100,"props":17689,"children":17690},{"style":113},[17691],{"type":50,"value":1426},{"type":44,"tag":100,"props":17693,"children":17694},{"style":400},[17695],{"type":50,"value":786},{"type":44,"tag":100,"props":17697,"children":17698},{"style":113},[17699],{"type":50,"value":2626},{"type":44,"tag":100,"props":17701,"children":17702},{"style":390},[17703],{"type":50,"value":2591},{"type":44,"tag":100,"props":17705,"children":17706},{"style":119},[17707],{"type":50,"value":2635},{"type":44,"tag":100,"props":17709,"children":17710},{"class":102,"line":531},[17711],{"type":44,"tag":100,"props":17712,"children":17713},{"style":400},[17714],{"type":50,"value":2643},{"type":44,"tag":100,"props":17716,"children":17717},{"class":102,"line":604},[17718,17722,17726],{"type":44,"tag":100,"props":17719,"children":17720},{"style":400},[17721],{"type":50,"value":2651},{"type":44,"tag":100,"props":17723,"children":17724},{"style":390},[17725],{"type":50,"value":408},{"type":44,"tag":100,"props":17727,"children":17728},{"style":400},[17729],{"type":50,"value":2401},{"type":44,"tag":100,"props":17731,"children":17732},{"class":102,"line":626},[17733],{"type":44,"tag":100,"props":17734,"children":17735},{"style":390},[17736],{"type":50,"value":2409},{"type":44,"tag":100,"props":17738,"children":17739},{"class":102,"line":648},[17740],{"type":44,"tag":100,"props":17741,"children":17742},{"style":400},[17743],{"type":50,"value":2674},{"type":44,"tag":100,"props":17745,"children":17746},{"class":102,"line":705},[17747,17751,17755,17759,17763,17767],{"type":44,"tag":100,"props":17748,"children":17749},{"style":113},[17750],{"type":50,"value":2682},{"type":44,"tag":100,"props":17752,"children":17753},{"style":400},[17754],{"type":50,"value":427},{"type":44,"tag":100,"props":17756,"children":17757},{"style":390},[17758],{"type":50,"value":2691},{"type":44,"tag":100,"props":17760,"children":17761},{"style":400},[17762],{"type":50,"value":2696},{"type":44,"tag":100,"props":17764,"children":17765},{"style":390},[17766],{"type":50,"value":408},{"type":44,"tag":100,"props":17768,"children":17769},{"style":400},[17770],{"type":50,"value":2705},{"type":44,"tag":100,"props":17772,"children":17773},{"class":102,"line":770},[17774,17778],{"type":44,"tag":100,"props":17775,"children":17776},{"style":390},[17777],{"type":50,"value":2524},{"type":44,"tag":100,"props":17779,"children":17780},{"style":400},[17781],{"type":50,"value":2717},{"type":44,"tag":100,"props":17783,"children":17784},{"class":102,"line":794},[17785,17789],{"type":44,"tag":100,"props":17786,"children":17787},{"style":390},[17788],{"type":50,"value":2725},{"type":44,"tag":100,"props":17790,"children":17791},{"style":400},[17792],{"type":50,"value":2730},{"type":44,"tag":100,"props":17794,"children":17795},{"class":102,"line":808},[17796],{"type":44,"tag":100,"props":17797,"children":17798},{"style":400},[17799],{"type":50,"value":1464},{"type":44,"tag":100,"props":17801,"children":17802},{"class":102,"line":1484},[17803],{"type":44,"tag":100,"props":17804,"children":17805},{"style":390},[17806],{"type":50,"value":393},{"type":44,"tag":100,"props":17808,"children":17809},{"class":102,"line":2747},[17810,17814,17818,17822],{"type":44,"tag":100,"props":17811,"children":17812},{"style":113},[17813],{"type":50,"value":2753},{"type":44,"tag":100,"props":17815,"children":17816},{"style":400},[17817],{"type":50,"value":786},{"type":44,"tag":100,"props":17819,"children":17820},{"style":113},[17821],{"type":50,"value":2762},{"type":44,"tag":100,"props":17823,"children":17824},{"style":400},[17825],{"type":50,"value":2431},{"type":44,"tag":100,"props":17827,"children":17828},{"class":102,"line":2769},[17829,17833,17837,17841],{"type":44,"tag":100,"props":17830,"children":17831},{"style":113},[17832],{"type":50,"value":2775},{"type":44,"tag":100,"props":17834,"children":17835},{"style":400},[17836],{"type":50,"value":786},{"type":44,"tag":100,"props":17838,"children":17839},{"style":113},[17840],{"type":50,"value":2784},{"type":44,"tag":100,"props":17842,"children":17843},{"style":400},[17844],{"type":50,"value":2431},{"type":44,"tag":100,"props":17846,"children":17847},{"class":102,"line":2791},[17848,17852,17856,17860,17864,17868,17872,17876,17880,17884,17888,17892,17896,17900],{"type":44,"tag":100,"props":17849,"children":17850},{"style":113},[17851],{"type":50,"value":4654},{"type":44,"tag":100,"props":17853,"children":17854},{"style":400},[17855],{"type":50,"value":427},{"type":44,"tag":100,"props":17857,"children":17858},{"style":119},[17859],{"type":50,"value":2806},{"type":44,"tag":100,"props":17861,"children":17862},{"style":400},[17863],{"type":50,"value":750},{"type":44,"tag":100,"props":17865,"children":17866},{"style":113},[17867],{"type":50,"value":2815},{"type":44,"tag":100,"props":17869,"children":17870},{"style":400},[17871],{"type":50,"value":786},{"type":44,"tag":100,"props":17873,"children":17874},{"style":113},[17875],{"type":50,"value":2762},{"type":44,"tag":100,"props":17877,"children":17878},{"style":400},[17879],{"type":50,"value":750},{"type":44,"tag":100,"props":17881,"children":17882},{"style":113},[17883],{"type":50,"value":2815},{"type":44,"tag":100,"props":17885,"children":17886},{"style":400},[17887],{"type":50,"value":786},{"type":44,"tag":100,"props":17889,"children":17890},{"style":113},[17891],{"type":50,"value":2840},{"type":44,"tag":100,"props":17893,"children":17894},{"style":400},[17895],{"type":50,"value":437},{"type":44,"tag":100,"props":17897,"children":17898},{"style":390},[17899],{"type":50,"value":408},{"type":44,"tag":100,"props":17901,"children":17902},{"style":400},[17903],{"type":50,"value":2853},{"type":44,"tag":100,"props":17905,"children":17906},{"class":102,"line":2856},[17907,17911,17915,17919,17923,17927,17931,17935,17939],{"type":44,"tag":100,"props":17908,"children":17909},{"style":113},[17910],{"type":50,"value":422},{"type":44,"tag":100,"props":17912,"children":17913},{"style":400},[17914],{"type":50,"value":427},{"type":44,"tag":100,"props":17916,"children":17917},{"style":390},[17918],{"type":50,"value":2691},{"type":44,"tag":100,"props":17920,"children":17921},{"style":113},[17922],{"type":50,"value":2874},{"type":44,"tag":100,"props":17924,"children":17925},{"style":400},[17926],{"type":50,"value":786},{"type":44,"tag":100,"props":17928,"children":17929},{"style":113},[17930],{"type":50,"value":2426},{"type":44,"tag":100,"props":17932,"children":17933},{"style":400},[17934],{"type":50,"value":437},{"type":44,"tag":100,"props":17936,"children":17937},{"style":390},[17938],{"type":50,"value":408},{"type":44,"tag":100,"props":17940,"children":17941},{"style":400},[17942],{"type":50,"value":2895},{"type":44,"tag":100,"props":17944,"children":17945},{"class":102,"line":2898},[17946,17950,17954,17958,17962,17966,17970,17974,17978,17982,17986,17990,17994,17998,18002,18006,18010,18014,18018,18022,18026,18030,18034,18038,18042],{"type":44,"tag":100,"props":17947,"children":17948},{"style":113},[17949],{"type":50,"value":654},{"type":44,"tag":100,"props":17951,"children":17952},{"style":400},[17953],{"type":50,"value":427},{"type":44,"tag":100,"props":17955,"children":17956},{"style":113},[17957],{"type":50,"value":1340},{"type":44,"tag":100,"props":17959,"children":17960},{"style":400},[17961],{"type":50,"value":427},{"type":44,"tag":100,"props":17963,"children":17964},{"style":390},[17965],{"type":50,"value":2691},{"type":44,"tag":100,"props":17967,"children":17968},{"style":113},[17969],{"type":50,"value":2874},{"type":44,"tag":100,"props":17971,"children":17972},{"style":400},[17973],{"type":50,"value":786},{"type":44,"tag":100,"props":17975,"children":17976},{"style":113},[17977],{"type":50,"value":2426},{"type":44,"tag":100,"props":17979,"children":17980},{"style":400},[17981],{"type":50,"value":437},{"type":44,"tag":100,"props":17983,"children":17984},{"style":390},[17985],{"type":50,"value":664},{"type":44,"tag":100,"props":17987,"children":17988},{"style":113},[17989],{"type":50,"value":1262},{"type":44,"tag":100,"props":17991,"children":17992},{"style":400},[17993],{"type":50,"value":427},{"type":44,"tag":100,"props":17995,"children":17996},{"style":113},[17997],{"type":50,"value":2925},{"type":44,"tag":100,"props":17999,"children":18000},{"style":400},[18001],{"type":50,"value":786},{"type":44,"tag":100,"props":18003,"children":18004},{"style":113},[18005],{"type":50,"value":2784},{"type":44,"tag":100,"props":18007,"children":18008},{"style":400},[18009],{"type":50,"value":750},{"type":44,"tag":100,"props":18011,"children":18012},{"style":113},[18013],{"type":50,"value":679},{"type":44,"tag":100,"props":18015,"children":18016},{"style":400},[18017],{"type":50,"value":437},{"type":44,"tag":100,"props":18019,"children":18020},{"style":390},[18021],{"type":50,"value":432},{"type":44,"tag":100,"props":18023,"children":18024},{"style":113},[18025],{"type":50,"value":745},{"type":44,"tag":100,"props":18027,"children":18028},{"style":400},[18029],{"type":50,"value":750},{"type":44,"tag":100,"props":18031,"children":18032},{"style":113},[18033],{"type":50,"value":689},{"type":44,"tag":100,"props":18035,"children":18036},{"style":400},[18037],{"type":50,"value":437},{"type":44,"tag":100,"props":18039,"children":18040},{"style":390},[18041],{"type":50,"value":408},{"type":44,"tag":100,"props":18043,"children":18044},{"style":400},[18045],{"type":50,"value":2974},{"type":44,"tag":100,"props":18047,"children":18048},{"class":102,"line":2977},[18049,18053,18057,18061,18065,18069,18073,18077],{"type":44,"tag":100,"props":18050,"children":18051},{"style":113},[18052],{"type":50,"value":514},{"type":44,"tag":100,"props":18054,"children":18055},{"style":400},[18056],{"type":50,"value":427},{"type":44,"tag":100,"props":18058,"children":18059},{"style":113},[18060],{"type":50,"value":2815},{"type":44,"tag":100,"props":18062,"children":18063},{"style":400},[18064],{"type":50,"value":786},{"type":44,"tag":100,"props":18066,"children":18067},{"style":113},[18068],{"type":50,"value":2999},{"type":44,"tag":100,"props":18070,"children":18071},{"style":400},[18072],{"type":50,"value":437},{"type":44,"tag":100,"props":18074,"children":18075},{"style":390},[18076],{"type":50,"value":408},{"type":44,"tag":100,"props":18078,"children":18079},{"style":400},[18080],{"type":50,"value":3012},{"type":44,"tag":100,"props":18082,"children":18083},{"class":102,"line":3015},[18084,18088,18092,18096,18100,18104,18108,18112,18116,18120,18124,18128,18132,18136,18140,18144,18148,18152,18156,18160,18164],{"type":44,"tag":100,"props":18085,"children":18086},{"style":113},[18087],{"type":50,"value":654},{"type":44,"tag":100,"props":18089,"children":18090},{"style":400},[18091],{"type":50,"value":427},{"type":44,"tag":100,"props":18093,"children":18094},{"style":113},[18095],{"type":50,"value":1205},{"type":44,"tag":100,"props":18097,"children":18098},{"style":400},[18099],{"type":50,"value":427},{"type":44,"tag":100,"props":18101,"children":18102},{"style":113},[18103],{"type":50,"value":2815},{"type":44,"tag":100,"props":18105,"children":18106},{"style":400},[18107],{"type":50,"value":786},{"type":44,"tag":100,"props":18109,"children":18110},{"style":113},[18111],{"type":50,"value":2999},{"type":44,"tag":100,"props":18113,"children":18114},{"style":400},[18115],{"type":50,"value":437},{"type":44,"tag":100,"props":18117,"children":18118},{"style":390},[18119],{"type":50,"value":664},{"type":44,"tag":100,"props":18121,"children":18122},{"style":113},[18123],{"type":50,"value":1262},{"type":44,"tag":100,"props":18125,"children":18126},{"style":400},[18127],{"type":50,"value":427},{"type":44,"tag":100,"props":18129,"children":18130},{"style":113},[18131],{"type":50,"value":2925},{"type":44,"tag":100,"props":18133,"children":18134},{"style":400},[18135],{"type":50,"value":786},{"type":44,"tag":100,"props":18137,"children":18138},{"style":113},[18139],{"type":50,"value":2784},{"type":44,"tag":100,"props":18141,"children":18142},{"style":400},[18143],{"type":50,"value":750},{"type":44,"tag":100,"props":18145,"children":18146},{"style":113},[18147],{"type":50,"value":679},{"type":44,"tag":100,"props":18149,"children":18150},{"style":400},[18151],{"type":50,"value":684},{"type":44,"tag":100,"props":18153,"children":18154},{"style":113},[18155],{"type":50,"value":689},{"type":44,"tag":100,"props":18157,"children":18158},{"style":400},[18159],{"type":50,"value":437},{"type":44,"tag":100,"props":18161,"children":18162},{"style":390},[18163],{"type":50,"value":408},{"type":44,"tag":100,"props":18165,"children":18166},{"style":400},[18167],{"type":50,"value":3078},{"type":44,"tag":100,"props":18169,"children":18170},{"class":102,"line":3081},[18171,18175],{"type":44,"tag":100,"props":18172,"children":18173},{"style":390},[18174],{"type":50,"value":776},{"type":44,"tag":100,"props":18176,"children":18177},{"style":400},[18178],{"type":50,"value":3091},{"type":44,"tag":100,"props":18180,"children":18181},{"class":102,"line":3094},[18182,18186],{"type":44,"tag":100,"props":18183,"children":18184},{"style":390},[18185],{"type":50,"value":3100},{"type":44,"tag":100,"props":18187,"children":18188},{"style":400},[18189],{"type":50,"value":3105},{"type":44,"tag":100,"props":18191,"children":18192},{"class":102,"line":3108},[18193,18197,18201,18205,18209,18213,18217,18221],{"type":44,"tag":100,"props":18194,"children":18195},{"style":390},[18196],{"type":50,"value":3114},{"type":44,"tag":100,"props":18198,"children":18199},{"style":113},[18200],{"type":50,"value":2874},{"type":44,"tag":100,"props":18202,"children":18203},{"style":400},[18204],{"type":50,"value":786},{"type":44,"tag":100,"props":18206,"children":18207},{"style":113},[18208],{"type":50,"value":2762},{"type":44,"tag":100,"props":18210,"children":18211},{"style":390},[18212],{"type":50,"value":2591},{"type":44,"tag":100,"props":18214,"children":18215},{"style":113},[18216],{"type":50,"value":3135},{"type":44,"tag":100,"props":18218,"children":18219},{"style":400},[18220],{"type":50,"value":786},{"type":44,"tag":100,"props":18222,"children":18223},{"style":113},[18224],{"type":50,"value":3144},{"type":44,"tag":100,"props":18226,"children":18227},{"class":102,"line":3147},[18228,18232,18236,18240,18244,18248,18252,18256,18260],{"type":44,"tag":100,"props":18229,"children":18230},{"style":390},[18231],{"type":50,"value":800},{"type":44,"tag":100,"props":18233,"children":18234},{"style":113},[18235],{"type":50,"value":2874},{"type":44,"tag":100,"props":18237,"children":18238},{"style":400},[18239],{"type":50,"value":786},{"type":44,"tag":100,"props":18241,"children":18242},{"style":113},[18243],{"type":50,"value":2762},{"type":44,"tag":100,"props":18245,"children":18246},{"style":400},[18247],{"type":50,"value":750},{"type":44,"tag":100,"props":18249,"children":18250},{"style":113},[18251],{"type":50,"value":2925},{"type":44,"tag":100,"props":18253,"children":18254},{"style":400},[18255],{"type":50,"value":786},{"type":44,"tag":100,"props":18257,"children":18258},{"style":113},[18259],{"type":50,"value":2784},{"type":44,"tag":100,"props":18261,"children":18262},{"style":400},[18263],{"type":50,"value":3185},{"type":44,"tag":100,"props":18265,"children":18266},{"class":102,"line":3188},[18267,18271,18275,18279,18283],{"type":44,"tag":100,"props":18268,"children":18269},{"style":390},[18270],{"type":50,"value":814},{"type":44,"tag":100,"props":18272,"children":18273},{"style":113},[18274],{"type":50,"value":2874},{"type":44,"tag":100,"props":18276,"children":18277},{"style":400},[18278],{"type":50,"value":786},{"type":44,"tag":100,"props":18280,"children":18281},{"style":113},[18282],{"type":50,"value":2762},{"type":44,"tag":100,"props":18284,"children":18285},{"style":400},[18286],{"type":50,"value":3185},{"type":44,"tag":124,"props":18288,"children":18289},{"id":5092},[18290,18291],{"type":50,"value":5095},{"type":44,"tag":81,"props":18292,"children":18294},{"className":18293},[],[18295],{"type":50,"value":5101},{"type":44,"tag":53,"props":18297,"children":18298},{},[18299],{"type":50,"value":5106},{"type":44,"tag":5108,"props":18301,"children":18302},{},[18303],{"type":44,"tag":53,"props":18304,"children":18305},{},[18306,18307,18312,18313,18318],{"type":50,"value":5115},{"type":44,"tag":81,"props":18308,"children":18310},{"className":18309},[],[18311],{"type":50,"value":5121},{"type":50,"value":5123},{"type":44,"tag":81,"props":18314,"children":18316},{"className":18315},[],[18317],{"type":50,"value":5129},{"type":50,"value":786},{"type":44,"tag":53,"props":18320,"children":18321},{},[18322,18323,18331],{"type":50,"value":183},{"type":44,"tag":185,"props":18324,"children":18325},{},[18326],{"type":44,"tag":81,"props":18327,"children":18329},{"className":18328},[],[18330],{"type":50,"value":5143},{"type":50,"value":195},{"type":44,"tag":90,"props":18333,"children":18334},{"className":208,"code":5147,"language":210,"meta":7,"style":7},[18335],{"type":44,"tag":81,"props":18336,"children":18337},{"__ignoreMap":7},[18338,18345,18352,18359,18366,18373,18380,18387,18394,18401,18408,18415,18422,18429,18436,18443,18450,18457,18464,18471,18478,18485,18492,18499,18506,18525],{"type":44,"tag":100,"props":18339,"children":18340},{"class":102,"line":103},[18341],{"type":44,"tag":100,"props":18342,"children":18343},{"style":220},[18344],{"type":50,"value":223},{"type":44,"tag":100,"props":18346,"children":18347},{"class":102,"line":226},[18348],{"type":44,"tag":100,"props":18349,"children":18350},{"style":220},[18351],{"type":50,"value":5166},{"type":44,"tag":100,"props":18353,"children":18354},{"class":102,"line":235},[18355],{"type":44,"tag":100,"props":18356,"children":18357},{"style":220},[18358],{"type":50,"value":241},{"type":44,"tag":100,"props":18360,"children":18361},{"class":102,"line":24},[18362],{"type":44,"tag":100,"props":18363,"children":18364},{"style":220},[18365],{"type":50,"value":249},{"type":44,"tag":100,"props":18367,"children":18368},{"class":102,"line":252},[18369],{"type":44,"tag":100,"props":18370,"children":18371},{"style":220},[18372],{"type":50,"value":258},{"type":44,"tag":100,"props":18374,"children":18375},{"class":102,"line":261},[18376],{"type":44,"tag":100,"props":18377,"children":18378},{"style":220},[18379],{"type":50,"value":267},{"type":44,"tag":100,"props":18381,"children":18382},{"class":102,"line":270},[18383],{"type":44,"tag":100,"props":18384,"children":18385},{"style":220},[18386],{"type":50,"value":5202},{"type":44,"tag":100,"props":18388,"children":18389},{"class":102,"line":279},[18390],{"type":44,"tag":100,"props":18391,"children":18392},{"style":220},[18393],{"type":50,"value":285},{"type":44,"tag":100,"props":18395,"children":18396},{"class":102,"line":288},[18397],{"type":44,"tag":100,"props":18398,"children":18399},{"style":220},[18400],{"type":50,"value":5217},{"type":44,"tag":100,"props":18402,"children":18403},{"class":102,"line":297},[18404],{"type":44,"tag":100,"props":18405,"children":18406},{"style":220},[18407],{"type":50,"value":5225},{"type":44,"tag":100,"props":18409,"children":18410},{"class":102,"line":306},[18411],{"type":44,"tag":100,"props":18412,"children":18413},{"style":220},[18414],{"type":50,"value":312},{"type":44,"tag":100,"props":18416,"children":18417},{"class":102,"line":315},[18418],{"type":44,"tag":100,"props":18419,"children":18420},{"style":220},[18421],{"type":50,"value":321},{"type":44,"tag":100,"props":18423,"children":18424},{"class":102,"line":324},[18425],{"type":44,"tag":100,"props":18426,"children":18427},{"style":220},[18428],{"type":50,"value":330},{"type":44,"tag":100,"props":18430,"children":18431},{"class":102,"line":333},[18432],{"type":44,"tag":100,"props":18433,"children":18434},{"style":220},[18435],{"type":50,"value":374},{"type":44,"tag":100,"props":18437,"children":18438},{"class":102,"line":11},[18439],{"type":44,"tag":100,"props":18440,"children":18441},{"emptyLinePlaceholder":23},[18442],{"type":50,"value":383},{"type":44,"tag":100,"props":18444,"children":18445},{"class":102,"line":350},[18446],{"type":44,"tag":100,"props":18447,"children":18448},{"style":390},[18449],{"type":50,"value":393},{"type":44,"tag":100,"props":18451,"children":18452},{"class":102,"line":359},[18453],{"type":44,"tag":100,"props":18454,"children":18455},{"style":400},[18456],{"type":50,"value":5275},{"type":44,"tag":100,"props":18458,"children":18459},{"class":102,"line":368},[18460],{"type":44,"tag":100,"props":18461,"children":18462},{"style":400},[18463],{"type":50,"value":5283},{"type":44,"tag":100,"props":18465,"children":18466},{"class":102,"line":377},[18467],{"type":44,"tag":100,"props":18468,"children":18469},{"style":400},[18470],{"type":50,"value":5291},{"type":44,"tag":100,"props":18472,"children":18473},{"class":102,"line":386},[18474],{"type":44,"tag":100,"props":18475,"children":18476},{"style":400},[18477],{"type":50,"value":5299},{"type":44,"tag":100,"props":18479,"children":18480},{"class":102,"line":396},[18481],{"type":44,"tag":100,"props":18482,"children":18483},{"style":400},[18484],{"type":50,"value":5307},{"type":44,"tag":100,"props":18486,"children":18487},{"class":102,"line":416},[18488],{"type":44,"tag":100,"props":18489,"children":18490},{"style":400},[18491],{"type":50,"value":5315},{"type":44,"tag":100,"props":18493,"children":18494},{"class":102,"line":449},[18495],{"type":44,"tag":100,"props":18496,"children":18497},{"style":400},[18498],{"type":50,"value":5323},{"type":44,"tag":100,"props":18500,"children":18501},{"class":102,"line":481},[18502],{"type":44,"tag":100,"props":18503,"children":18504},{"style":400},[18505],{"type":50,"value":5331},{"type":44,"tag":100,"props":18507,"children":18508},{"class":102,"line":508},[18509,18513,18517,18521],{"type":44,"tag":100,"props":18510,"children":18511},{"style":390},[18512],{"type":50,"value":776},{"type":44,"tag":100,"props":18514,"children":18515},{"style":113},[18516],{"type":50,"value":781},{"type":44,"tag":100,"props":18518,"children":18519},{"style":400},[18520],{"type":50,"value":786},{"type":44,"tag":100,"props":18522,"children":18523},{"style":113},[18524],{"type":50,"value":5351},{"type":44,"tag":100,"props":18526,"children":18527},{"class":102,"line":531},[18528,18532],{"type":44,"tag":100,"props":18529,"children":18530},{"style":390},[18531],{"type":50,"value":814},{"type":44,"tag":100,"props":18533,"children":18534},{"style":400},[18535],{"type":50,"value":5363},{"type":44,"tag":124,"props":18537,"children":18538},{"id":5366},[18539,18540],{"type":50,"value":5369},{"type":44,"tag":81,"props":18541,"children":18543},{"className":18542},[],[18544],{"type":50,"value":5375},{"type":44,"tag":53,"props":18546,"children":18547},{},[18548],{"type":50,"value":5380},{"type":44,"tag":53,"props":18550,"children":18551},{},[18552,18553,18561],{"type":50,"value":183},{"type":44,"tag":185,"props":18554,"children":18555},{},[18556],{"type":44,"tag":81,"props":18557,"children":18559},{"className":18558},[],[18560],{"type":50,"value":5393},{"type":50,"value":195},{"type":44,"tag":197,"props":18563,"children":18564},{":variants":199,"group":200},[18565,19845,21137],{"type":44,"tag":203,"props":18566,"children":18567},{"v-slot:clickhouse":7},[18568],{"type":44,"tag":90,"props":18569,"children":18570},{"className":208,"code":5403,"language":210,"meta":7,"style":7},[18571],{"type":44,"tag":81,"props":18572,"children":18573},{"__ignoreMap":7},[18574,18581,18588,18595,18602,18609,18616,18623,18630,18637,18644,18651,18658,18665,18672,18679,18686,18705,18712,18719,18726,18745,18764,18783,18802,18821,18832,18839,18854,18861,18868,18875,18898,18917,18936,18955,18966,18973,18988,18995,19010,19029,19064,19087,19110,19153,19180,19203,19210,19217,19240,19259,19278,19297,19316,19335,19354,19373,19392,19467,19542,19629,19640,19651,19686,19721,19732,19767,19802],{"type":44,"tag":100,"props":18575,"children":18576},{"class":102,"line":103},[18577],{"type":44,"tag":100,"props":18578,"children":18579},{"style":220},[18580],{"type":50,"value":223},{"type":44,"tag":100,"props":18582,"children":18583},{"class":102,"line":226},[18584],{"type":44,"tag":100,"props":18585,"children":18586},{"style":220},[18587],{"type":50,"value":5422},{"type":44,"tag":100,"props":18589,"children":18590},{"class":102,"line":235},[18591],{"type":44,"tag":100,"props":18592,"children":18593},{"style":220},[18594],{"type":50,"value":241},{"type":44,"tag":100,"props":18596,"children":18597},{"class":102,"line":24},[18598],{"type":44,"tag":100,"props":18599,"children":18600},{"style":220},[18601],{"type":50,"value":249},{"type":44,"tag":100,"props":18603,"children":18604},{"class":102,"line":252},[18605],{"type":44,"tag":100,"props":18606,"children":18607},{"style":220},[18608],{"type":50,"value":258},{"type":44,"tag":100,"props":18610,"children":18611},{"class":102,"line":261},[18612],{"type":44,"tag":100,"props":18613,"children":18614},{"style":220},[18615],{"type":50,"value":267},{"type":44,"tag":100,"props":18617,"children":18618},{"class":102,"line":270},[18619],{"type":44,"tag":100,"props":18620,"children":18621},{"style":220},[18622],{"type":50,"value":5458},{"type":44,"tag":100,"props":18624,"children":18625},{"class":102,"line":279},[18626],{"type":44,"tag":100,"props":18627,"children":18628},{"style":220},[18629],{"type":50,"value":5466},{"type":44,"tag":100,"props":18631,"children":18632},{"class":102,"line":288},[18633],{"type":44,"tag":100,"props":18634,"children":18635},{"style":220},[18636],{"type":50,"value":276},{"type":44,"tag":100,"props":18638,"children":18639},{"class":102,"line":297},[18640],{"type":44,"tag":100,"props":18641,"children":18642},{"style":220},[18643],{"type":50,"value":285},{"type":44,"tag":100,"props":18645,"children":18646},{"class":102,"line":306},[18647],{"type":44,"tag":100,"props":18648,"children":18649},{"style":220},[18650],{"type":50,"value":5488},{"type":44,"tag":100,"props":18652,"children":18653},{"class":102,"line":315},[18654],{"type":44,"tag":100,"props":18655,"children":18656},{"style":220},[18657],{"type":50,"value":5225},{"type":44,"tag":100,"props":18659,"children":18660},{"class":102,"line":324},[18661],{"type":44,"tag":100,"props":18662,"children":18663},{"style":220},[18664],{"type":50,"value":312},{"type":44,"tag":100,"props":18666,"children":18667},{"class":102,"line":333},[18668],{"type":44,"tag":100,"props":18669,"children":18670},{"style":220},[18671],{"type":50,"value":321},{"type":44,"tag":100,"props":18673,"children":18674},{"class":102,"line":11},[18675],{"type":44,"tag":100,"props":18676,"children":18677},{"style":220},[18678],{"type":50,"value":374},{"type":44,"tag":100,"props":18680,"children":18681},{"class":102,"line":350},[18682],{"type":44,"tag":100,"props":18683,"children":18684},{"emptyLinePlaceholder":23},[18685],{"type":50,"value":383},{"type":44,"tag":100,"props":18687,"children":18688},{"class":102,"line":359},[18689,18693,18697,18701],{"type":44,"tag":100,"props":18690,"children":18691},{"style":390},[18692],{"type":50,"value":2387},{"type":44,"tag":100,"props":18694,"children":18695},{"style":400},[18696],{"type":50,"value":5535},{"type":44,"tag":100,"props":18698,"children":18699},{"style":390},[18700],{"type":50,"value":408},{"type":44,"tag":100,"props":18702,"children":18703},{"style":400},[18704],{"type":50,"value":2401},{"type":44,"tag":100,"props":18706,"children":18707},{"class":102,"line":368},[18708],{"type":44,"tag":100,"props":18709,"children":18710},{"style":390},[18711],{"type":50,"value":2409},{"type":44,"tag":100,"props":18713,"children":18714},{"class":102,"line":377},[18715],{"type":44,"tag":100,"props":18716,"children":18717},{"style":400},[18718],{"type":50,"value":5558},{"type":44,"tag":100,"props":18720,"children":18721},{"class":102,"line":386},[18722],{"type":44,"tag":100,"props":18723,"children":18724},{"style":400},[18725],{"type":50,"value":5566},{"type":44,"tag":100,"props":18727,"children":18728},{"class":102,"line":396},[18729,18733,18737,18741],{"type":44,"tag":100,"props":18730,"children":18731},{"style":113},[18732],{"type":50,"value":5574},{"type":44,"tag":100,"props":18734,"children":18735},{"style":400},[18736],{"type":50,"value":5579},{"type":44,"tag":100,"props":18738,"children":18739},{"style":390},[18740],{"type":50,"value":408},{"type":44,"tag":100,"props":18742,"children":18743},{"style":400},[18744],{"type":50,"value":5588},{"type":44,"tag":100,"props":18746,"children":18747},{"class":102,"line":416},[18748,18752,18756,18760],{"type":44,"tag":100,"props":18749,"children":18750},{"style":113},[18751],{"type":50,"value":5574},{"type":44,"tag":100,"props":18753,"children":18754},{"style":400},[18755],{"type":50,"value":5600},{"type":44,"tag":100,"props":18757,"children":18758},{"style":390},[18759],{"type":50,"value":408},{"type":44,"tag":100,"props":18761,"children":18762},{"style":400},[18763],{"type":50,"value":5609},{"type":44,"tag":100,"props":18765,"children":18766},{"class":102,"line":449},[18767,18771,18775,18779],{"type":44,"tag":100,"props":18768,"children":18769},{"style":113},[18770],{"type":50,"value":5574},{"type":44,"tag":100,"props":18772,"children":18773},{"style":400},[18774],{"type":50,"value":5621},{"type":44,"tag":100,"props":18776,"children":18777},{"style":390},[18778],{"type":50,"value":408},{"type":44,"tag":100,"props":18780,"children":18781},{"style":400},[18782],{"type":50,"value":5630},{"type":44,"tag":100,"props":18784,"children":18785},{"class":102,"line":481},[18786,18790,18794,18798],{"type":44,"tag":100,"props":18787,"children":18788},{"style":113},[18789],{"type":50,"value":5574},{"type":44,"tag":100,"props":18791,"children":18792},{"style":400},[18793],{"type":50,"value":5642},{"type":44,"tag":100,"props":18795,"children":18796},{"style":390},[18797],{"type":50,"value":408},{"type":44,"tag":100,"props":18799,"children":18800},{"style":400},[18801],{"type":50,"value":5651},{"type":44,"tag":100,"props":18803,"children":18804},{"class":102,"line":508},[18805,18809,18813,18817],{"type":44,"tag":100,"props":18806,"children":18807},{"style":390},[18808],{"type":50,"value":2524},{"type":44,"tag":100,"props":18810,"children":18811},{"style":113},[18812],{"type":50,"value":781},{"type":44,"tag":100,"props":18814,"children":18815},{"style":400},[18816],{"type":50,"value":786},{"type":44,"tag":100,"props":18818,"children":18819},{"style":113},[18820],{"type":50,"value":5671},{"type":44,"tag":100,"props":18822,"children":18823},{"class":102,"line":531},[18824,18828],{"type":44,"tag":100,"props":18825,"children":18826},{"style":390},[18827],{"type":50,"value":2725},{"type":44,"tag":100,"props":18829,"children":18830},{"style":400},[18831],{"type":50,"value":5683},{"type":44,"tag":100,"props":18833,"children":18834},{"class":102,"line":604},[18835],{"type":44,"tag":100,"props":18836,"children":18837},{"style":400},[18838],{"type":50,"value":2643},{"type":44,"tag":100,"props":18840,"children":18841},{"class":102,"line":626},[18842,18846,18850],{"type":44,"tag":100,"props":18843,"children":18844},{"style":400},[18845],{"type":50,"value":5698},{"type":44,"tag":100,"props":18847,"children":18848},{"style":390},[18849],{"type":50,"value":408},{"type":44,"tag":100,"props":18851,"children":18852},{"style":400},[18853],{"type":50,"value":2401},{"type":44,"tag":100,"props":18855,"children":18856},{"class":102,"line":648},[18857],{"type":44,"tag":100,"props":18858,"children":18859},{"style":390},[18860],{"type":50,"value":2409},{"type":44,"tag":100,"props":18862,"children":18863},{"class":102,"line":705},[18864],{"type":44,"tag":100,"props":18865,"children":18866},{"style":400},[18867],{"type":50,"value":5721},{"type":44,"tag":100,"props":18869,"children":18870},{"class":102,"line":770},[18871],{"type":44,"tag":100,"props":18872,"children":18873},{"style":400},[18874],{"type":50,"value":5566},{"type":44,"tag":100,"props":18876,"children":18877},{"class":102,"line":794},[18878,18882,18886,18890,18894],{"type":44,"tag":100,"props":18879,"children":18880},{"style":113},[18881],{"type":50,"value":5574},{"type":44,"tag":100,"props":18883,"children":18884},{"style":400},[18885],{"type":50,"value":5740},{"type":44,"tag":100,"props":18887,"children":18888},{"style":390},[18889],{"type":50,"value":408},{"type":44,"tag":100,"props":18891,"children":18892},{"style":390},[18893],{"type":50,"value":5749},{"type":44,"tag":100,"props":18895,"children":18896},{"style":400},[18897],{"type":50,"value":2431},{"type":44,"tag":100,"props":18899,"children":18900},{"class":102,"line":808},[18901,18905,18909,18913],{"type":44,"tag":100,"props":18902,"children":18903},{"style":113},[18904],{"type":50,"value":5574},{"type":44,"tag":100,"props":18906,"children":18907},{"style":400},[18908],{"type":50,"value":5765},{"type":44,"tag":100,"props":18910,"children":18911},{"style":390},[18912],{"type":50,"value":408},{"type":44,"tag":100,"props":18914,"children":18915},{"style":400},[18916],{"type":50,"value":5774},{"type":44,"tag":100,"props":18918,"children":18919},{"class":102,"line":1484},[18920,18924,18928,18932],{"type":44,"tag":100,"props":18921,"children":18922},{"style":113},[18923],{"type":50,"value":5574},{"type":44,"tag":100,"props":18925,"children":18926},{"style":400},[18927],{"type":50,"value":5786},{"type":44,"tag":100,"props":18929,"children":18930},{"style":390},[18931],{"type":50,"value":408},{"type":44,"tag":100,"props":18933,"children":18934},{"style":400},[18935],{"type":50,"value":5795},{"type":44,"tag":100,"props":18937,"children":18938},{"class":102,"line":2747},[18939,18943,18947,18951],{"type":44,"tag":100,"props":18940,"children":18941},{"style":390},[18942],{"type":50,"value":2524},{"type":44,"tag":100,"props":18944,"children":18945},{"style":113},[18946],{"type":50,"value":781},{"type":44,"tag":100,"props":18948,"children":18949},{"style":400},[18950],{"type":50,"value":786},{"type":44,"tag":100,"props":18952,"children":18953},{"style":113},[18954],{"type":50,"value":5815},{"type":44,"tag":100,"props":18956,"children":18957},{"class":102,"line":2769},[18958,18962],{"type":44,"tag":100,"props":18959,"children":18960},{"style":390},[18961],{"type":50,"value":2725},{"type":44,"tag":100,"props":18963,"children":18964},{"style":400},[18965],{"type":50,"value":5827},{"type":44,"tag":100,"props":18967,"children":18968},{"class":102,"line":2791},[18969],{"type":44,"tag":100,"props":18970,"children":18971},{"style":400},[18972],{"type":50,"value":2643},{"type":44,"tag":100,"props":18974,"children":18975},{"class":102,"line":2856},[18976,18980,18984],{"type":44,"tag":100,"props":18977,"children":18978},{"style":400},[18979],{"type":50,"value":5842},{"type":44,"tag":100,"props":18981,"children":18982},{"style":390},[18983],{"type":50,"value":408},{"type":44,"tag":100,"props":18985,"children":18986},{"style":400},[18987],{"type":50,"value":2401},{"type":44,"tag":100,"props":18989,"children":18990},{"class":102,"line":2898},[18991],{"type":44,"tag":100,"props":18992,"children":18993},{"style":390},[18994],{"type":50,"value":2409},{"type":44,"tag":100,"props":18996,"children":18997},{"class":102,"line":2977},[18998,19002,19006],{"type":44,"tag":100,"props":18999,"children":19000},{"style":400},[19001],{"type":50,"value":5865},{"type":44,"tag":100,"props":19003,"children":19004},{"style":390},[19005],{"type":50,"value":408},{"type":44,"tag":100,"props":19007,"children":19008},{"style":400},[19009],{"type":50,"value":413},{"type":44,"tag":100,"props":19011,"children":19012},{"class":102,"line":3015},[19013,19017,19021,19025],{"type":44,"tag":100,"props":19014,"children":19015},{"style":113},[19016],{"type":50,"value":5881},{"type":44,"tag":100,"props":19018,"children":19019},{"style":400},[19020],{"type":50,"value":786},{"type":44,"tag":100,"props":19022,"children":19023},{"style":113},[19024],{"type":50,"value":5890},{"type":44,"tag":100,"props":19026,"children":19027},{"style":400},[19028],{"type":50,"value":2431},{"type":44,"tag":100,"props":19030,"children":19031},{"class":102,"line":3081},[19032,19036,19040,19044,19048,19052,19056,19060],{"type":44,"tag":100,"props":19033,"children":19034},{"style":113},[19035],{"type":50,"value":5574},{"type":44,"tag":100,"props":19037,"children":19038},{"style":400},[19039],{"type":50,"value":427},{"type":44,"tag":100,"props":19041,"children":19042},{"style":113},[19043],{"type":50,"value":2478},{"type":44,"tag":100,"props":19045,"children":19046},{"style":400},[19047],{"type":50,"value":786},{"type":44,"tag":100,"props":19049,"children":19050},{"style":113},[19051],{"type":50,"value":2999},{"type":44,"tag":100,"props":19053,"children":19054},{"style":400},[19055],{"type":50,"value":437},{"type":44,"tag":100,"props":19057,"children":19058},{"style":390},[19059],{"type":50,"value":408},{"type":44,"tag":100,"props":19061,"children":19062},{"style":400},[19063],{"type":50,"value":5930},{"type":44,"tag":100,"props":19065,"children":19066},{"class":102,"line":3094},[19067,19071,19075,19079,19083],{"type":44,"tag":100,"props":19068,"children":19069},{"style":390},[19070],{"type":50,"value":2524},{"type":44,"tag":100,"props":19072,"children":19073},{"style":113},[19074],{"type":50,"value":781},{"type":44,"tag":100,"props":19076,"children":19077},{"style":400},[19078],{"type":50,"value":786},{"type":44,"tag":100,"props":19080,"children":19081},{"style":113},[19082],{"type":50,"value":1408},{"type":44,"tag":100,"props":19084,"children":19085},{"style":400},[19086],{"type":50,"value":1413},{"type":44,"tag":100,"props":19088,"children":19089},{"class":102,"line":3108},[19090,19094,19098,19102,19106],{"type":44,"tag":100,"props":19091,"children":19092},{"style":390},[19093],{"type":50,"value":2548},{"type":44,"tag":100,"props":19095,"children":19096},{"style":113},[19097],{"type":50,"value":781},{"type":44,"tag":100,"props":19099,"children":19100},{"style":400},[19101],{"type":50,"value":786},{"type":44,"tag":100,"props":19103,"children":19104},{"style":113},[19105],{"type":50,"value":5973},{"type":44,"tag":100,"props":19107,"children":19108},{"style":400},[19109],{"type":50,"value":5978},{"type":44,"tag":100,"props":19111,"children":19112},{"class":102,"line":3147},[19113,19117,19121,19125,19129,19133,19137,19141,19145,19149],{"type":44,"tag":100,"props":19114,"children":19115},{"style":390},[19116],{"type":50,"value":2574},{"type":44,"tag":100,"props":19118,"children":19119},{"style":400},[19120],{"type":50,"value":5990},{"type":44,"tag":100,"props":19122,"children":19123},{"style":113},[19124],{"type":50,"value":2478},{"type":44,"tag":100,"props":19126,"children":19127},{"style":400},[19128],{"type":50,"value":786},{"type":44,"tag":100,"props":19130,"children":19131},{"style":113},[19132],{"type":50,"value":2487},{"type":44,"tag":100,"props":19134,"children":19135},{"style":400},[19136],{"type":50,"value":437},{"type":44,"tag":100,"props":19138,"children":19139},{"style":390},[19140],{"type":50,"value":460},{"type":44,"tag":100,"props":19142,"children":19143},{"style":113},[19144],{"type":50,"value":6015},{"type":44,"tag":100,"props":19146,"children":19147},{"style":400},[19148],{"type":50,"value":786},{"type":44,"tag":100,"props":19150,"children":19151},{"style":113},[19152],{"type":50,"value":6024},{"type":44,"tag":100,"props":19154,"children":19155},{"class":102,"line":3188},[19156,19160,19164,19168,19172,19176],{"type":44,"tag":100,"props":19157,"children":19158},{"style":390},[19159],{"type":50,"value":2613},{"type":44,"tag":100,"props":19161,"children":19162},{"style":113},[19163],{"type":50,"value":1426},{"type":44,"tag":100,"props":19165,"children":19166},{"style":400},[19167],{"type":50,"value":786},{"type":44,"tag":100,"props":19169,"children":19170},{"style":113},[19171],{"type":50,"value":2626},{"type":44,"tag":100,"props":19173,"children":19174},{"style":390},[19175],{"type":50,"value":2591},{"type":44,"tag":100,"props":19177,"children":19178},{"style":119},[19179],{"type":50,"value":2635},{"type":44,"tag":100,"props":19181,"children":19182},{"class":102,"line":6054},[19183,19187,19191,19195,19199],{"type":44,"tag":100,"props":19184,"children":19185},{"style":390},[19186],{"type":50,"value":2725},{"type":44,"tag":100,"props":19188,"children":19189},{"style":400},[19190],{"type":50,"value":6064},{"type":44,"tag":100,"props":19192,"children":19193},{"style":113},[19194],{"type":50,"value":6069},{"type":44,"tag":100,"props":19196,"children":19197},{"style":400},[19198],{"type":50,"value":786},{"type":44,"tag":100,"props":19200,"children":19201},{"style":113},[19202],{"type":50,"value":6078},{"type":44,"tag":100,"props":19204,"children":19205},{"class":102,"line":6081},[19206],{"type":44,"tag":100,"props":19207,"children":19208},{"style":400},[19209],{"type":50,"value":1464},{"type":44,"tag":100,"props":19211,"children":19212},{"class":102,"line":6089},[19213],{"type":44,"tag":100,"props":19214,"children":19215},{"style":390},[19216],{"type":50,"value":393},{"type":44,"tag":100,"props":19218,"children":19219},{"class":102,"line":6097},[19220,19224,19228,19232,19236],{"type":44,"tag":100,"props":19221,"children":19222},{"style":113},[19223],{"type":50,"value":2775},{"type":44,"tag":100,"props":19225,"children":19226},{"style":400},[19227],{"type":50,"value":786},{"type":44,"tag":100,"props":19229,"children":19230},{"style":113},[19231],{"type":50,"value":6111},{"type":44,"tag":100,"props":19233,"children":19234},{"style":390},[19235],{"type":50,"value":1661},{"type":44,"tag":100,"props":19237,"children":19238},{"style":400},[19239],{"type":50,"value":6120},{"type":44,"tag":100,"props":19241,"children":19242},{"class":102,"line":6123},[19243,19247,19251,19255],{"type":44,"tag":100,"props":19244,"children":19245},{"style":113},[19246],{"type":50,"value":2775},{"type":44,"tag":100,"props":19248,"children":19249},{"style":400},[19250],{"type":50,"value":786},{"type":44,"tag":100,"props":19252,"children":19253},{"style":113},[19254],{"type":50,"value":5890},{"type":44,"tag":100,"props":19256,"children":19257},{"style":400},[19258],{"type":50,"value":2431},{"type":44,"tag":100,"props":19260,"children":19261},{"class":102,"line":6143},[19262,19266,19270,19274],{"type":44,"tag":100,"props":19263,"children":19264},{"style":113},[19265],{"type":50,"value":2775},{"type":44,"tag":100,"props":19267,"children":19268},{"style":400},[19269],{"type":50,"value":786},{"type":44,"tag":100,"props":19271,"children":19272},{"style":113},[19273],{"type":50,"value":6157},{"type":44,"tag":100,"props":19275,"children":19276},{"style":400},[19277],{"type":50,"value":2431},{"type":44,"tag":100,"props":19279,"children":19280},{"class":102,"line":6164},[19281,19285,19289,19293],{"type":44,"tag":100,"props":19282,"children":19283},{"style":113},[19284],{"type":50,"value":2775},{"type":44,"tag":100,"props":19286,"children":19287},{"style":400},[19288],{"type":50,"value":786},{"type":44,"tag":100,"props":19290,"children":19291},{"style":113},[19292],{"type":50,"value":6178},{"type":44,"tag":100,"props":19294,"children":19295},{"style":400},[19296],{"type":50,"value":2431},{"type":44,"tag":100,"props":19298,"children":19299},{"class":102,"line":6185},[19300,19304,19308,19312],{"type":44,"tag":100,"props":19301,"children":19302},{"style":113},[19303],{"type":50,"value":2775},{"type":44,"tag":100,"props":19305,"children":19306},{"style":400},[19307],{"type":50,"value":786},{"type":44,"tag":100,"props":19309,"children":19310},{"style":113},[19311],{"type":50,"value":6199},{"type":44,"tag":100,"props":19313,"children":19314},{"style":400},[19315],{"type":50,"value":2431},{"type":44,"tag":100,"props":19317,"children":19318},{"class":102,"line":6206},[19319,19323,19327,19331],{"type":44,"tag":100,"props":19320,"children":19321},{"style":113},[19322],{"type":50,"value":2775},{"type":44,"tag":100,"props":19324,"children":19325},{"style":400},[19326],{"type":50,"value":786},{"type":44,"tag":100,"props":19328,"children":19329},{"style":113},[19330],{"type":50,"value":6220},{"type":44,"tag":100,"props":19332,"children":19333},{"style":400},[19334],{"type":50,"value":2431},{"type":44,"tag":100,"props":19336,"children":19337},{"class":102,"line":6227},[19338,19342,19346,19350],{"type":44,"tag":100,"props":19339,"children":19340},{"style":113},[19341],{"type":50,"value":6233},{"type":44,"tag":100,"props":19343,"children":19344},{"style":400},[19345],{"type":50,"value":786},{"type":44,"tag":100,"props":19347,"children":19348},{"style":113},[19349],{"type":50,"value":6242},{"type":44,"tag":100,"props":19351,"children":19352},{"style":400},[19353],{"type":50,"value":2431},{"type":44,"tag":100,"props":19355,"children":19356},{"class":102,"line":6249},[19357,19361,19365,19369],{"type":44,"tag":100,"props":19358,"children":19359},{"style":113},[19360],{"type":50,"value":6233},{"type":44,"tag":100,"props":19362,"children":19363},{"style":400},[19364],{"type":50,"value":786},{"type":44,"tag":100,"props":19366,"children":19367},{"style":113},[19368],{"type":50,"value":6263},{"type":44,"tag":100,"props":19370,"children":19371},{"style":400},[19372],{"type":50,"value":2431},{"type":44,"tag":100,"props":19374,"children":19375},{"class":102,"line":6270},[19376,19380,19384,19388],{"type":44,"tag":100,"props":19377,"children":19378},{"style":113},[19379],{"type":50,"value":6276},{"type":44,"tag":100,"props":19381,"children":19382},{"style":400},[19383],{"type":50,"value":786},{"type":44,"tag":100,"props":19385,"children":19386},{"style":113},[19387],{"type":50,"value":6285},{"type":44,"tag":100,"props":19389,"children":19390},{"style":400},[19391],{"type":50,"value":2431},{"type":44,"tag":100,"props":19393,"children":19394},{"class":102,"line":6292},[19395,19399,19403,19407,19411,19415,19419,19423,19427,19431,19435,19439,19443,19447,19451,19455,19459,19463],{"type":44,"tag":100,"props":19396,"children":19397},{"style":113},[19398],{"type":50,"value":654},{"type":44,"tag":100,"props":19400,"children":19401},{"style":400},[19402],{"type":50,"value":427},{"type":44,"tag":100,"props":19404,"children":19405},{"style":113},[19406],{"type":50,"value":6306},{"type":44,"tag":100,"props":19408,"children":19409},{"style":400},[19410],{"type":50,"value":786},{"type":44,"tag":100,"props":19412,"children":19413},{"style":113},[19414],{"type":50,"value":6285},{"type":44,"tag":100,"props":19416,"children":19417},{"style":390},[19418],{"type":50,"value":6319},{"type":44,"tag":100,"props":19420,"children":19421},{"style":113},[19422],{"type":50,"value":669},{"type":44,"tag":100,"props":19424,"children":19425},{"style":400},[19426],{"type":50,"value":427},{"type":44,"tag":100,"props":19428,"children":19429},{"style":113},[19430],{"type":50,"value":2925},{"type":44,"tag":100,"props":19432,"children":19433},{"style":400},[19434],{"type":50,"value":786},{"type":44,"tag":100,"props":19436,"children":19437},{"style":113},[19438],{"type":50,"value":6157},{"type":44,"tag":100,"props":19440,"children":19441},{"style":400},[19442],{"type":50,"value":750},{"type":44,"tag":100,"props":19444,"children":19445},{"style":113},[19446],{"type":50,"value":679},{"type":44,"tag":100,"props":19448,"children":19449},{"style":400},[19450],{"type":50,"value":684},{"type":44,"tag":100,"props":19452,"children":19453},{"style":113},[19454],{"type":50,"value":689},{"type":44,"tag":100,"props":19456,"children":19457},{"style":400},[19458],{"type":50,"value":437},{"type":44,"tag":100,"props":19460,"children":19461},{"style":390},[19462],{"type":50,"value":408},{"type":44,"tag":100,"props":19464,"children":19465},{"style":400},[19466],{"type":50,"value":6368},{"type":44,"tag":100,"props":19468,"children":19469},{"class":102,"line":6371},[19470,19474,19478,19482,19486,19490,19494,19498,19502,19506,19510,19514,19518,19522,19526,19530,19534,19538],{"type":44,"tag":100,"props":19471,"children":19472},{"style":113},[19473],{"type":50,"value":654},{"type":44,"tag":100,"props":19475,"children":19476},{"style":400},[19477],{"type":50,"value":427},{"type":44,"tag":100,"props":19479,"children":19480},{"style":113},[19481],{"type":50,"value":2925},{"type":44,"tag":100,"props":19483,"children":19484},{"style":400},[19485],{"type":50,"value":786},{"type":44,"tag":100,"props":19487,"children":19488},{"style":113},[19489],{"type":50,"value":6157},{"type":44,"tag":100,"props":19491,"children":19492},{"style":390},[19493],{"type":50,"value":6319},{"type":44,"tag":100,"props":19495,"children":19496},{"style":113},[19497],{"type":50,"value":669},{"type":44,"tag":100,"props":19499,"children":19500},{"style":400},[19501],{"type":50,"value":427},{"type":44,"tag":100,"props":19503,"children":19504},{"style":113},[19505],{"type":50,"value":2925},{"type":44,"tag":100,"props":19507,"children":19508},{"style":400},[19509],{"type":50,"value":786},{"type":44,"tag":100,"props":19511,"children":19512},{"style":113},[19513],{"type":50,"value":6220},{"type":44,"tag":100,"props":19515,"children":19516},{"style":400},[19517],{"type":50,"value":750},{"type":44,"tag":100,"props":19519,"children":19520},{"style":113},[19521],{"type":50,"value":679},{"type":44,"tag":100,"props":19523,"children":19524},{"style":400},[19525],{"type":50,"value":684},{"type":44,"tag":100,"props":19527,"children":19528},{"style":113},[19529],{"type":50,"value":689},{"type":44,"tag":100,"props":19531,"children":19532},{"style":400},[19533],{"type":50,"value":437},{"type":44,"tag":100,"props":19535,"children":19536},{"style":390},[19537],{"type":50,"value":408},{"type":44,"tag":100,"props":19539,"children":19540},{"style":400},[19541],{"type":50,"value":6445},{"type":44,"tag":100,"props":19543,"children":19544},{"class":102,"line":6448},[19545,19549,19553,19557,19561,19565,19569,19573,19577,19581,19585,19589,19593,19597,19601,19605,19609,19613,19617,19621,19625],{"type":44,"tag":100,"props":19546,"children":19547},{"style":113},[19548],{"type":50,"value":654},{"type":44,"tag":100,"props":19550,"children":19551},{"style":400},[19552],{"type":50,"value":427},{"type":44,"tag":100,"props":19554,"children":19555},{"style":113},[19556],{"type":50,"value":2925},{"type":44,"tag":100,"props":19558,"children":19559},{"style":400},[19560],{"type":50,"value":786},{"type":44,"tag":100,"props":19562,"children":19563},{"style":113},[19564],{"type":50,"value":6199},{"type":44,"tag":100,"props":19566,"children":19567},{"style":390},[19568],{"type":50,"value":6319},{"type":44,"tag":100,"props":19570,"children":19571},{"style":113},[19572],{"type":50,"value":669},{"type":44,"tag":100,"props":19574,"children":19575},{"style":400},[19576],{"type":50,"value":427},{"type":44,"tag":100,"props":19578,"children":19579},{"style":113},[19580],{"type":50,"value":2925},{"type":44,"tag":100,"props":19582,"children":19583},{"style":400},[19584],{"type":50,"value":786},{"type":44,"tag":100,"props":19586,"children":19587},{"style":113},[19588],{"type":50,"value":6178},{"type":44,"tag":100,"props":19590,"children":19591},{"style":400},[19592],{"type":50,"value":750},{"type":44,"tag":100,"props":19594,"children":19595},{"style":113},[19596],{"type":50,"value":679},{"type":44,"tag":100,"props":19598,"children":19599},{"style":400},[19600],{"type":50,"value":437},{"type":44,"tag":100,"props":19602,"children":19603},{"style":390},[19604],{"type":50,"value":432},{"type":44,"tag":100,"props":19606,"children":19607},{"style":113},[19608],{"type":50,"value":745},{"type":44,"tag":100,"props":19610,"children":19611},{"style":400},[19612],{"type":50,"value":750},{"type":44,"tag":100,"props":19614,"children":19615},{"style":113},[19616],{"type":50,"value":689},{"type":44,"tag":100,"props":19618,"children":19619},{"style":400},[19620],{"type":50,"value":437},{"type":44,"tag":100,"props":19622,"children":19623},{"style":390},[19624],{"type":50,"value":408},{"type":44,"tag":100,"props":19626,"children":19627},{"style":400},[19628],{"type":50,"value":6534},{"type":44,"tag":100,"props":19630,"children":19631},{"class":102,"line":6537},[19632,19636],{"type":44,"tag":100,"props":19633,"children":19634},{"style":390},[19635],{"type":50,"value":776},{"type":44,"tag":100,"props":19637,"children":19638},{"style":400},[19639],{"type":50,"value":6547},{"type":44,"tag":100,"props":19641,"children":19642},{"class":102,"line":6550},[19643,19647],{"type":44,"tag":100,"props":19644,"children":19645},{"style":390},[19646],{"type":50,"value":6556},{"type":44,"tag":100,"props":19648,"children":19649},{"style":400},[19650],{"type":50,"value":6561},{"type":44,"tag":100,"props":19652,"children":19653},{"class":102,"line":6564},[19654,19658,19662,19666,19670,19674,19678,19682],{"type":44,"tag":100,"props":19655,"children":19656},{"style":390},[19657],{"type":50,"value":3114},{"type":44,"tag":100,"props":19659,"children":19660},{"style":113},[19661],{"type":50,"value":3135},{"type":44,"tag":100,"props":19663,"children":19664},{"style":400},[19665],{"type":50,"value":786},{"type":44,"tag":100,"props":19667,"children":19668},{"style":113},[19669],{"type":50,"value":6111},{"type":44,"tag":100,"props":19671,"children":19672},{"style":390},[19673],{"type":50,"value":2591},{"type":44,"tag":100,"props":19675,"children":19676},{"style":113},[19677],{"type":50,"value":6590},{"type":44,"tag":100,"props":19679,"children":19680},{"style":400},[19681],{"type":50,"value":786},{"type":44,"tag":100,"props":19683,"children":19684},{"style":113},[19685],{"type":50,"value":6024},{"type":44,"tag":100,"props":19687,"children":19688},{"class":102,"line":6601},[19689,19693,19697,19701,19705,19709,19713,19717],{"type":44,"tag":100,"props":19690,"children":19691},{"style":390},[19692],{"type":50,"value":6607},{"type":44,"tag":100,"props":19694,"children":19695},{"style":113},[19696],{"type":50,"value":3135},{"type":44,"tag":100,"props":19698,"children":19699},{"style":400},[19700],{"type":50,"value":786},{"type":44,"tag":100,"props":19702,"children":19703},{"style":113},[19704],{"type":50,"value":5890},{"type":44,"tag":100,"props":19706,"children":19707},{"style":390},[19708],{"type":50,"value":2591},{"type":44,"tag":100,"props":19710,"children":19711},{"style":113},[19712],{"type":50,"value":6590},{"type":44,"tag":100,"props":19714,"children":19715},{"style":400},[19716],{"type":50,"value":786},{"type":44,"tag":100,"props":19718,"children":19719},{"style":113},[19720],{"type":50,"value":6078},{"type":44,"tag":100,"props":19722,"children":19723},{"class":102,"line":6638},[19724,19728],{"type":44,"tag":100,"props":19725,"children":19726},{"style":390},[19727],{"type":50,"value":6556},{"type":44,"tag":100,"props":19729,"children":19730},{"style":400},[19731],{"type":50,"value":6648},{"type":44,"tag":100,"props":19733,"children":19734},{"class":102,"line":6651},[19735,19739,19743,19747,19751,19755,19759,19763],{"type":44,"tag":100,"props":19736,"children":19737},{"style":390},[19738],{"type":50,"value":3114},{"type":44,"tag":100,"props":19740,"children":19741},{"style":113},[19742],{"type":50,"value":3135},{"type":44,"tag":100,"props":19744,"children":19745},{"style":400},[19746],{"type":50,"value":786},{"type":44,"tag":100,"props":19748,"children":19749},{"style":113},[19750],{"type":50,"value":6111},{"type":44,"tag":100,"props":19752,"children":19753},{"style":390},[19754],{"type":50,"value":2591},{"type":44,"tag":100,"props":19756,"children":19757},{"style":113},[19758],{"type":50,"value":6677},{"type":44,"tag":100,"props":19760,"children":19761},{"style":400},[19762],{"type":50,"value":786},{"type":44,"tag":100,"props":19764,"children":19765},{"style":113},[19766],{"type":50,"value":6686},{"type":44,"tag":100,"props":19768,"children":19769},{"class":102,"line":6689},[19770,19774,19778,19782,19786,19790,19794,19798],{"type":44,"tag":100,"props":19771,"children":19772},{"style":390},[19773],{"type":50,"value":6607},{"type":44,"tag":100,"props":19775,"children":19776},{"style":113},[19777],{"type":50,"value":3135},{"type":44,"tag":100,"props":19779,"children":19780},{"style":400},[19781],{"type":50,"value":786},{"type":44,"tag":100,"props":19783,"children":19784},{"style":113},[19785],{"type":50,"value":5890},{"type":44,"tag":100,"props":19787,"children":19788},{"style":390},[19789],{"type":50,"value":2591},{"type":44,"tag":100,"props":19791,"children":19792},{"style":113},[19793],{"type":50,"value":6677},{"type":44,"tag":100,"props":19795,"children":19796},{"style":400},[19797],{"type":50,"value":786},{"type":44,"tag":100,"props":19799,"children":19800},{"style":113},[19801],{"type":50,"value":6078},{"type":44,"tag":100,"props":19803,"children":19804},{"class":102,"line":6725},[19805,19809,19813,19817,19821,19825,19829,19833,19837,19841],{"type":44,"tag":100,"props":19806,"children":19807},{"style":390},[19808],{"type":50,"value":814},{"type":44,"tag":100,"props":19810,"children":19811},{"style":113},[19812],{"type":50,"value":3135},{"type":44,"tag":100,"props":19814,"children":19815},{"style":400},[19816],{"type":50,"value":786},{"type":44,"tag":100,"props":19818,"children":19819},{"style":113},[19820],{"type":50,"value":6111},{"type":44,"tag":100,"props":19822,"children":19823},{"style":390},[19824],{"type":50,"value":6747},{"type":44,"tag":100,"props":19826,"children":19827},{"style":400},[19828],{"type":50,"value":750},{"type":44,"tag":100,"props":19830,"children":19831},{"style":113},[19832],{"type":50,"value":2925},{"type":44,"tag":100,"props":19834,"children":19835},{"style":400},[19836],{"type":50,"value":786},{"type":44,"tag":100,"props":19838,"children":19839},{"style":113},[19840],{"type":50,"value":6157},{"type":44,"tag":100,"props":19842,"children":19843},{"style":390},[19844],{"type":50,"value":6768},{"type":44,"tag":203,"props":19846,"children":19847},{"v-slot:bigquery":7},[19848],{"type":44,"tag":90,"props":19849,"children":19850},{"className":208,"code":6774,"language":210,"meta":7,"style":7},[19851],{"type":44,"tag":81,"props":19852,"children":19853},{"__ignoreMap":7},[19854,19861,19868,19875,19882,19889,19896,19903,19910,19917,19924,19931,19938,19945,19952,19959,19966,19985,19992,19999,20006,20025,20044,20063,20082,20101,20112,20119,20134,20141,20148,20155,20178,20197,20216,20235,20246,20253,20268,20275,20294,20313,20348,20371,20394,20441,20468,20495,20502,20509,20532,20551,20570,20589,20608,20627,20646,20665,20684,20759,20834,20921,20932,20943,20978,21013,21024,21059,21094],{"type":44,"tag":100,"props":19855,"children":19856},{"class":102,"line":103},[19857],{"type":44,"tag":100,"props":19858,"children":19859},{"style":220},[19860],{"type":50,"value":223},{"type":44,"tag":100,"props":19862,"children":19863},{"class":102,"line":226},[19864],{"type":44,"tag":100,"props":19865,"children":19866},{"style":220},[19867],{"type":50,"value":5422},{"type":44,"tag":100,"props":19869,"children":19870},{"class":102,"line":235},[19871],{"type":44,"tag":100,"props":19872,"children":19873},{"style":220},[19874],{"type":50,"value":241},{"type":44,"tag":100,"props":19876,"children":19877},{"class":102,"line":24},[19878],{"type":44,"tag":100,"props":19879,"children":19880},{"style":220},[19881],{"type":50,"value":249},{"type":44,"tag":100,"props":19883,"children":19884},{"class":102,"line":252},[19885],{"type":44,"tag":100,"props":19886,"children":19887},{"style":220},[19888],{"type":50,"value":258},{"type":44,"tag":100,"props":19890,"children":19891},{"class":102,"line":261},[19892],{"type":44,"tag":100,"props":19893,"children":19894},{"style":220},[19895],{"type":50,"value":267},{"type":44,"tag":100,"props":19897,"children":19898},{"class":102,"line":270},[19899],{"type":44,"tag":100,"props":19900,"children":19901},{"style":220},[19902],{"type":50,"value":5458},{"type":44,"tag":100,"props":19904,"children":19905},{"class":102,"line":279},[19906],{"type":44,"tag":100,"props":19907,"children":19908},{"style":220},[19909],{"type":50,"value":5466},{"type":44,"tag":100,"props":19911,"children":19912},{"class":102,"line":288},[19913],{"type":44,"tag":100,"props":19914,"children":19915},{"style":220},[19916],{"type":50,"value":276},{"type":44,"tag":100,"props":19918,"children":19919},{"class":102,"line":297},[19920],{"type":44,"tag":100,"props":19921,"children":19922},{"style":220},[19923],{"type":50,"value":285},{"type":44,"tag":100,"props":19925,"children":19926},{"class":102,"line":306},[19927],{"type":44,"tag":100,"props":19928,"children":19929},{"style":220},[19930],{"type":50,"value":5488},{"type":44,"tag":100,"props":19932,"children":19933},{"class":102,"line":315},[19934],{"type":44,"tag":100,"props":19935,"children":19936},{"style":220},[19937],{"type":50,"value":5225},{"type":44,"tag":100,"props":19939,"children":19940},{"class":102,"line":324},[19941],{"type":44,"tag":100,"props":19942,"children":19943},{"style":220},[19944],{"type":50,"value":312},{"type":44,"tag":100,"props":19946,"children":19947},{"class":102,"line":333},[19948],{"type":44,"tag":100,"props":19949,"children":19950},{"style":220},[19951],{"type":50,"value":321},{"type":44,"tag":100,"props":19953,"children":19954},{"class":102,"line":11},[19955],{"type":44,"tag":100,"props":19956,"children":19957},{"style":220},[19958],{"type":50,"value":374},{"type":44,"tag":100,"props":19960,"children":19961},{"class":102,"line":350},[19962],{"type":44,"tag":100,"props":19963,"children":19964},{"emptyLinePlaceholder":23},[19965],{"type":50,"value":383},{"type":44,"tag":100,"props":19967,"children":19968},{"class":102,"line":359},[19969,19973,19977,19981],{"type":44,"tag":100,"props":19970,"children":19971},{"style":390},[19972],{"type":50,"value":2387},{"type":44,"tag":100,"props":19974,"children":19975},{"style":400},[19976],{"type":50,"value":5535},{"type":44,"tag":100,"props":19978,"children":19979},{"style":390},[19980],{"type":50,"value":408},{"type":44,"tag":100,"props":19982,"children":19983},{"style":400},[19984],{"type":50,"value":2401},{"type":44,"tag":100,"props":19986,"children":19987},{"class":102,"line":368},[19988],{"type":44,"tag":100,"props":19989,"children":19990},{"style":390},[19991],{"type":50,"value":2409},{"type":44,"tag":100,"props":19993,"children":19994},{"class":102,"line":377},[19995],{"type":44,"tag":100,"props":19996,"children":19997},{"style":400},[19998],{"type":50,"value":5558},{"type":44,"tag":100,"props":20000,"children":20001},{"class":102,"line":386},[20002],{"type":44,"tag":100,"props":20003,"children":20004},{"style":400},[20005],{"type":50,"value":5566},{"type":44,"tag":100,"props":20007,"children":20008},{"class":102,"line":396},[20009,20013,20017,20021],{"type":44,"tag":100,"props":20010,"children":20011},{"style":113},[20012],{"type":50,"value":5574},{"type":44,"tag":100,"props":20014,"children":20015},{"style":400},[20016],{"type":50,"value":5579},{"type":44,"tag":100,"props":20018,"children":20019},{"style":390},[20020],{"type":50,"value":408},{"type":44,"tag":100,"props":20022,"children":20023},{"style":400},[20024],{"type":50,"value":5588},{"type":44,"tag":100,"props":20026,"children":20027},{"class":102,"line":416},[20028,20032,20036,20040],{"type":44,"tag":100,"props":20029,"children":20030},{"style":113},[20031],{"type":50,"value":5574},{"type":44,"tag":100,"props":20033,"children":20034},{"style":400},[20035],{"type":50,"value":5600},{"type":44,"tag":100,"props":20037,"children":20038},{"style":390},[20039],{"type":50,"value":408},{"type":44,"tag":100,"props":20041,"children":20042},{"style":400},[20043],{"type":50,"value":5609},{"type":44,"tag":100,"props":20045,"children":20046},{"class":102,"line":449},[20047,20051,20055,20059],{"type":44,"tag":100,"props":20048,"children":20049},{"style":113},[20050],{"type":50,"value":5574},{"type":44,"tag":100,"props":20052,"children":20053},{"style":400},[20054],{"type":50,"value":5621},{"type":44,"tag":100,"props":20056,"children":20057},{"style":390},[20058],{"type":50,"value":408},{"type":44,"tag":100,"props":20060,"children":20061},{"style":400},[20062],{"type":50,"value":5630},{"type":44,"tag":100,"props":20064,"children":20065},{"class":102,"line":481},[20066,20070,20074,20078],{"type":44,"tag":100,"props":20067,"children":20068},{"style":113},[20069],{"type":50,"value":5574},{"type":44,"tag":100,"props":20071,"children":20072},{"style":400},[20073],{"type":50,"value":5642},{"type":44,"tag":100,"props":20075,"children":20076},{"style":390},[20077],{"type":50,"value":408},{"type":44,"tag":100,"props":20079,"children":20080},{"style":400},[20081],{"type":50,"value":5651},{"type":44,"tag":100,"props":20083,"children":20084},{"class":102,"line":508},[20085,20089,20093,20097],{"type":44,"tag":100,"props":20086,"children":20087},{"style":390},[20088],{"type":50,"value":2524},{"type":44,"tag":100,"props":20090,"children":20091},{"style":113},[20092],{"type":50,"value":781},{"type":44,"tag":100,"props":20094,"children":20095},{"style":400},[20096],{"type":50,"value":786},{"type":44,"tag":100,"props":20098,"children":20099},{"style":113},[20100],{"type":50,"value":5671},{"type":44,"tag":100,"props":20102,"children":20103},{"class":102,"line":531},[20104,20108],{"type":44,"tag":100,"props":20105,"children":20106},{"style":390},[20107],{"type":50,"value":2725},{"type":44,"tag":100,"props":20109,"children":20110},{"style":400},[20111],{"type":50,"value":5683},{"type":44,"tag":100,"props":20113,"children":20114},{"class":102,"line":604},[20115],{"type":44,"tag":100,"props":20116,"children":20117},{"style":400},[20118],{"type":50,"value":2643},{"type":44,"tag":100,"props":20120,"children":20121},{"class":102,"line":626},[20122,20126,20130],{"type":44,"tag":100,"props":20123,"children":20124},{"style":400},[20125],{"type":50,"value":5698},{"type":44,"tag":100,"props":20127,"children":20128},{"style":390},[20129],{"type":50,"value":408},{"type":44,"tag":100,"props":20131,"children":20132},{"style":400},[20133],{"type":50,"value":2401},{"type":44,"tag":100,"props":20135,"children":20136},{"class":102,"line":648},[20137],{"type":44,"tag":100,"props":20138,"children":20139},{"style":390},[20140],{"type":50,"value":2409},{"type":44,"tag":100,"props":20142,"children":20143},{"class":102,"line":705},[20144],{"type":44,"tag":100,"props":20145,"children":20146},{"style":400},[20147],{"type":50,"value":5721},{"type":44,"tag":100,"props":20149,"children":20150},{"class":102,"line":770},[20151],{"type":44,"tag":100,"props":20152,"children":20153},{"style":400},[20154],{"type":50,"value":5566},{"type":44,"tag":100,"props":20156,"children":20157},{"class":102,"line":794},[20158,20162,20166,20170,20174],{"type":44,"tag":100,"props":20159,"children":20160},{"style":113},[20161],{"type":50,"value":5574},{"type":44,"tag":100,"props":20163,"children":20164},{"style":400},[20165],{"type":50,"value":5740},{"type":44,"tag":100,"props":20167,"children":20168},{"style":390},[20169],{"type":50,"value":408},{"type":44,"tag":100,"props":20171,"children":20172},{"style":390},[20173],{"type":50,"value":5749},{"type":44,"tag":100,"props":20175,"children":20176},{"style":400},[20177],{"type":50,"value":2431},{"type":44,"tag":100,"props":20179,"children":20180},{"class":102,"line":808},[20181,20185,20189,20193],{"type":44,"tag":100,"props":20182,"children":20183},{"style":113},[20184],{"type":50,"value":5574},{"type":44,"tag":100,"props":20186,"children":20187},{"style":400},[20188],{"type":50,"value":5765},{"type":44,"tag":100,"props":20190,"children":20191},{"style":390},[20192],{"type":50,"value":408},{"type":44,"tag":100,"props":20194,"children":20195},{"style":400},[20196],{"type":50,"value":5774},{"type":44,"tag":100,"props":20198,"children":20199},{"class":102,"line":1484},[20200,20204,20208,20212],{"type":44,"tag":100,"props":20201,"children":20202},{"style":113},[20203],{"type":50,"value":5574},{"type":44,"tag":100,"props":20205,"children":20206},{"style":400},[20207],{"type":50,"value":5786},{"type":44,"tag":100,"props":20209,"children":20210},{"style":390},[20211],{"type":50,"value":408},{"type":44,"tag":100,"props":20213,"children":20214},{"style":400},[20215],{"type":50,"value":5795},{"type":44,"tag":100,"props":20217,"children":20218},{"class":102,"line":2747},[20219,20223,20227,20231],{"type":44,"tag":100,"props":20220,"children":20221},{"style":390},[20222],{"type":50,"value":2524},{"type":44,"tag":100,"props":20224,"children":20225},{"style":113},[20226],{"type":50,"value":781},{"type":44,"tag":100,"props":20228,"children":20229},{"style":400},[20230],{"type":50,"value":786},{"type":44,"tag":100,"props":20232,"children":20233},{"style":113},[20234],{"type":50,"value":5815},{"type":44,"tag":100,"props":20236,"children":20237},{"class":102,"line":2769},[20238,20242],{"type":44,"tag":100,"props":20239,"children":20240},{"style":390},[20241],{"type":50,"value":2725},{"type":44,"tag":100,"props":20243,"children":20244},{"style":400},[20245],{"type":50,"value":5827},{"type":44,"tag":100,"props":20247,"children":20248},{"class":102,"line":2791},[20249],{"type":44,"tag":100,"props":20250,"children":20251},{"style":400},[20252],{"type":50,"value":2643},{"type":44,"tag":100,"props":20254,"children":20255},{"class":102,"line":2856},[20256,20260,20264],{"type":44,"tag":100,"props":20257,"children":20258},{"style":400},[20259],{"type":50,"value":5842},{"type":44,"tag":100,"props":20261,"children":20262},{"style":390},[20263],{"type":50,"value":408},{"type":44,"tag":100,"props":20265,"children":20266},{"style":400},[20267],{"type":50,"value":2401},{"type":44,"tag":100,"props":20269,"children":20270},{"class":102,"line":2898},[20271],{"type":44,"tag":100,"props":20272,"children":20273},{"style":390},[20274],{"type":50,"value":2409},{"type":44,"tag":100,"props":20276,"children":20277},{"class":102,"line":2977},[20278,20282,20286,20290],{"type":44,"tag":100,"props":20279,"children":20280},{"style":390},[20281],{"type":50,"value":7207},{"type":44,"tag":100,"props":20283,"children":20284},{"style":400},[20285],{"type":50,"value":982},{"type":44,"tag":100,"props":20287,"children":20288},{"style":390},[20289],{"type":50,"value":408},{"type":44,"tag":100,"props":20291,"children":20292},{"style":400},[20293],{"type":50,"value":413},{"type":44,"tag":100,"props":20295,"children":20296},{"class":102,"line":3015},[20297,20301,20305,20309],{"type":44,"tag":100,"props":20298,"children":20299},{"style":113},[20300],{"type":50,"value":5881},{"type":44,"tag":100,"props":20302,"children":20303},{"style":400},[20304],{"type":50,"value":786},{"type":44,"tag":100,"props":20306,"children":20307},{"style":113},[20308],{"type":50,"value":5890},{"type":44,"tag":100,"props":20310,"children":20311},{"style":400},[20312],{"type":50,"value":2431},{"type":44,"tag":100,"props":20314,"children":20315},{"class":102,"line":3081},[20316,20320,20324,20328,20332,20336,20340,20344],{"type":44,"tag":100,"props":20317,"children":20318},{"style":113},[20319],{"type":50,"value":5574},{"type":44,"tag":100,"props":20321,"children":20322},{"style":400},[20323],{"type":50,"value":427},{"type":44,"tag":100,"props":20325,"children":20326},{"style":113},[20327],{"type":50,"value":2478},{"type":44,"tag":100,"props":20329,"children":20330},{"style":400},[20331],{"type":50,"value":786},{"type":44,"tag":100,"props":20333,"children":20334},{"style":113},[20335],{"type":50,"value":2999},{"type":44,"tag":100,"props":20337,"children":20338},{"style":400},[20339],{"type":50,"value":437},{"type":44,"tag":100,"props":20341,"children":20342},{"style":390},[20343],{"type":50,"value":408},{"type":44,"tag":100,"props":20345,"children":20346},{"style":400},[20347],{"type":50,"value":5930},{"type":44,"tag":100,"props":20349,"children":20350},{"class":102,"line":3094},[20351,20355,20359,20363,20367],{"type":44,"tag":100,"props":20352,"children":20353},{"style":390},[20354],{"type":50,"value":2524},{"type":44,"tag":100,"props":20356,"children":20357},{"style":113},[20358],{"type":50,"value":781},{"type":44,"tag":100,"props":20360,"children":20361},{"style":400},[20362],{"type":50,"value":786},{"type":44,"tag":100,"props":20364,"children":20365},{"style":113},[20366],{"type":50,"value":1408},{"type":44,"tag":100,"props":20368,"children":20369},{"style":400},[20370],{"type":50,"value":1413},{"type":44,"tag":100,"props":20372,"children":20373},{"class":102,"line":3108},[20374,20378,20382,20386,20390],{"type":44,"tag":100,"props":20375,"children":20376},{"style":390},[20377],{"type":50,"value":2548},{"type":44,"tag":100,"props":20379,"children":20380},{"style":113},[20381],{"type":50,"value":781},{"type":44,"tag":100,"props":20383,"children":20384},{"style":400},[20385],{"type":50,"value":786},{"type":44,"tag":100,"props":20387,"children":20388},{"style":113},[20389],{"type":50,"value":5973},{"type":44,"tag":100,"props":20391,"children":20392},{"style":400},[20393],{"type":50,"value":5978},{"type":44,"tag":100,"props":20395,"children":20396},{"class":102,"line":3147},[20397,20401,20405,20409,20413,20417,20421,20425,20429,20433,20437],{"type":44,"tag":100,"props":20398,"children":20399},{"style":390},[20400],{"type":50,"value":2574},{"type":44,"tag":100,"props":20402,"children":20403},{"style":390},[20404],{"type":50,"value":1476},{"type":44,"tag":100,"props":20406,"children":20407},{"style":400},[20408],{"type":50,"value":427},{"type":44,"tag":100,"props":20410,"children":20411},{"style":113},[20412],{"type":50,"value":2478},{"type":44,"tag":100,"props":20414,"children":20415},{"style":400},[20416],{"type":50,"value":786},{"type":44,"tag":100,"props":20418,"children":20419},{"style":113},[20420],{"type":50,"value":2487},{"type":44,"tag":100,"props":20422,"children":20423},{"style":400},[20424],{"type":50,"value":437},{"type":44,"tag":100,"props":20426,"children":20427},{"style":390},[20428],{"type":50,"value":460},{"type":44,"tag":100,"props":20430,"children":20431},{"style":113},[20432],{"type":50,"value":6015},{"type":44,"tag":100,"props":20434,"children":20435},{"style":400},[20436],{"type":50,"value":786},{"type":44,"tag":100,"props":20438,"children":20439},{"style":113},[20440],{"type":50,"value":6024},{"type":44,"tag":100,"props":20442,"children":20443},{"class":102,"line":3188},[20444,20448,20452,20456,20460,20464],{"type":44,"tag":100,"props":20445,"children":20446},{"style":390},[20447],{"type":50,"value":2613},{"type":44,"tag":100,"props":20449,"children":20450},{"style":113},[20451],{"type":50,"value":1426},{"type":44,"tag":100,"props":20453,"children":20454},{"style":400},[20455],{"type":50,"value":786},{"type":44,"tag":100,"props":20457,"children":20458},{"style":113},[20459],{"type":50,"value":2626},{"type":44,"tag":100,"props":20461,"children":20462},{"style":390},[20463],{"type":50,"value":2591},{"type":44,"tag":100,"props":20465,"children":20466},{"style":119},[20467],{"type":50,"value":2635},{"type":44,"tag":100,"props":20469,"children":20470},{"class":102,"line":6054},[20471,20475,20479,20483,20487,20491],{"type":44,"tag":100,"props":20472,"children":20473},{"style":390},[20474],{"type":50,"value":2725},{"type":44,"tag":100,"props":20476,"children":20477},{"style":390},[20478],{"type":50,"value":1476},{"type":44,"tag":100,"props":20480,"children":20481},{"style":400},[20482],{"type":50,"value":7409},{"type":44,"tag":100,"props":20484,"children":20485},{"style":113},[20486],{"type":50,"value":6069},{"type":44,"tag":100,"props":20488,"children":20489},{"style":400},[20490],{"type":50,"value":786},{"type":44,"tag":100,"props":20492,"children":20493},{"style":113},[20494],{"type":50,"value":6078},{"type":44,"tag":100,"props":20496,"children":20497},{"class":102,"line":6081},[20498],{"type":44,"tag":100,"props":20499,"children":20500},{"style":400},[20501],{"type":50,"value":1464},{"type":44,"tag":100,"props":20503,"children":20504},{"class":102,"line":6089},[20505],{"type":44,"tag":100,"props":20506,"children":20507},{"style":390},[20508],{"type":50,"value":393},{"type":44,"tag":100,"props":20510,"children":20511},{"class":102,"line":6097},[20512,20516,20520,20524,20528],{"type":44,"tag":100,"props":20513,"children":20514},{"style":113},[20515],{"type":50,"value":2775},{"type":44,"tag":100,"props":20517,"children":20518},{"style":400},[20519],{"type":50,"value":786},{"type":44,"tag":100,"props":20521,"children":20522},{"style":113},[20523],{"type":50,"value":6111},{"type":44,"tag":100,"props":20525,"children":20526},{"style":390},[20527],{"type":50,"value":1661},{"type":44,"tag":100,"props":20529,"children":20530},{"style":400},[20531],{"type":50,"value":6120},{"type":44,"tag":100,"props":20533,"children":20534},{"class":102,"line":6123},[20535,20539,20543,20547],{"type":44,"tag":100,"props":20536,"children":20537},{"style":113},[20538],{"type":50,"value":2775},{"type":44,"tag":100,"props":20540,"children":20541},{"style":400},[20542],{"type":50,"value":786},{"type":44,"tag":100,"props":20544,"children":20545},{"style":113},[20546],{"type":50,"value":5890},{"type":44,"tag":100,"props":20548,"children":20549},{"style":400},[20550],{"type":50,"value":2431},{"type":44,"tag":100,"props":20552,"children":20553},{"class":102,"line":6143},[20554,20558,20562,20566],{"type":44,"tag":100,"props":20555,"children":20556},{"style":113},[20557],{"type":50,"value":2775},{"type":44,"tag":100,"props":20559,"children":20560},{"style":400},[20561],{"type":50,"value":786},{"type":44,"tag":100,"props":20563,"children":20564},{"style":113},[20565],{"type":50,"value":6157},{"type":44,"tag":100,"props":20567,"children":20568},{"style":400},[20569],{"type":50,"value":2431},{"type":44,"tag":100,"props":20571,"children":20572},{"class":102,"line":6164},[20573,20577,20581,20585],{"type":44,"tag":100,"props":20574,"children":20575},{"style":113},[20576],{"type":50,"value":2775},{"type":44,"tag":100,"props":20578,"children":20579},{"style":400},[20580],{"type":50,"value":786},{"type":44,"tag":100,"props":20582,"children":20583},{"style":113},[20584],{"type":50,"value":6178},{"type":44,"tag":100,"props":20586,"children":20587},{"style":400},[20588],{"type":50,"value":2431},{"type":44,"tag":100,"props":20590,"children":20591},{"class":102,"line":6185},[20592,20596,20600,20604],{"type":44,"tag":100,"props":20593,"children":20594},{"style":113},[20595],{"type":50,"value":2775},{"type":44,"tag":100,"props":20597,"children":20598},{"style":400},[20599],{"type":50,"value":786},{"type":44,"tag":100,"props":20601,"children":20602},{"style":113},[20603],{"type":50,"value":6199},{"type":44,"tag":100,"props":20605,"children":20606},{"style":400},[20607],{"type":50,"value":2431},{"type":44,"tag":100,"props":20609,"children":20610},{"class":102,"line":6206},[20611,20615,20619,20623],{"type":44,"tag":100,"props":20612,"children":20613},{"style":113},[20614],{"type":50,"value":2775},{"type":44,"tag":100,"props":20616,"children":20617},{"style":400},[20618],{"type":50,"value":786},{"type":44,"tag":100,"props":20620,"children":20621},{"style":113},[20622],{"type":50,"value":6220},{"type":44,"tag":100,"props":20624,"children":20625},{"style":400},[20626],{"type":50,"value":2431},{"type":44,"tag":100,"props":20628,"children":20629},{"class":102,"line":6227},[20630,20634,20638,20642],{"type":44,"tag":100,"props":20631,"children":20632},{"style":113},[20633],{"type":50,"value":6233},{"type":44,"tag":100,"props":20635,"children":20636},{"style":400},[20637],{"type":50,"value":786},{"type":44,"tag":100,"props":20639,"children":20640},{"style":113},[20641],{"type":50,"value":6242},{"type":44,"tag":100,"props":20643,"children":20644},{"style":400},[20645],{"type":50,"value":2431},{"type":44,"tag":100,"props":20647,"children":20648},{"class":102,"line":6249},[20649,20653,20657,20661],{"type":44,"tag":100,"props":20650,"children":20651},{"style":113},[20652],{"type":50,"value":6233},{"type":44,"tag":100,"props":20654,"children":20655},{"style":400},[20656],{"type":50,"value":786},{"type":44,"tag":100,"props":20658,"children":20659},{"style":113},[20660],{"type":50,"value":6263},{"type":44,"tag":100,"props":20662,"children":20663},{"style":400},[20664],{"type":50,"value":2431},{"type":44,"tag":100,"props":20666,"children":20667},{"class":102,"line":6270},[20668,20672,20676,20680],{"type":44,"tag":100,"props":20669,"children":20670},{"style":113},[20671],{"type":50,"value":6276},{"type":44,"tag":100,"props":20673,"children":20674},{"style":400},[20675],{"type":50,"value":786},{"type":44,"tag":100,"props":20677,"children":20678},{"style":113},[20679],{"type":50,"value":6285},{"type":44,"tag":100,"props":20681,"children":20682},{"style":400},[20683],{"type":50,"value":2431},{"type":44,"tag":100,"props":20685,"children":20686},{"class":102,"line":6292},[20687,20691,20695,20699,20703,20707,20711,20715,20719,20723,20727,20731,20735,20739,20743,20747,20751,20755],{"type":44,"tag":100,"props":20688,"children":20689},{"style":113},[20690],{"type":50,"value":654},{"type":44,"tag":100,"props":20692,"children":20693},{"style":400},[20694],{"type":50,"value":427},{"type":44,"tag":100,"props":20696,"children":20697},{"style":113},[20698],{"type":50,"value":6306},{"type":44,"tag":100,"props":20700,"children":20701},{"style":400},[20702],{"type":50,"value":786},{"type":44,"tag":100,"props":20704,"children":20705},{"style":113},[20706],{"type":50,"value":6285},{"type":44,"tag":100,"props":20708,"children":20709},{"style":390},[20710],{"type":50,"value":6319},{"type":44,"tag":100,"props":20712,"children":20713},{"style":113},[20714],{"type":50,"value":1262},{"type":44,"tag":100,"props":20716,"children":20717},{"style":400},[20718],{"type":50,"value":427},{"type":44,"tag":100,"props":20720,"children":20721},{"style":113},[20722],{"type":50,"value":2925},{"type":44,"tag":100,"props":20724,"children":20725},{"style":400},[20726],{"type":50,"value":786},{"type":44,"tag":100,"props":20728,"children":20729},{"style":113},[20730],{"type":50,"value":6157},{"type":44,"tag":100,"props":20732,"children":20733},{"style":400},[20734],{"type":50,"value":750},{"type":44,"tag":100,"props":20736,"children":20737},{"style":113},[20738],{"type":50,"value":679},{"type":44,"tag":100,"props":20740,"children":20741},{"style":400},[20742],{"type":50,"value":684},{"type":44,"tag":100,"props":20744,"children":20745},{"style":113},[20746],{"type":50,"value":689},{"type":44,"tag":100,"props":20748,"children":20749},{"style":400},[20750],{"type":50,"value":437},{"type":44,"tag":100,"props":20752,"children":20753},{"style":390},[20754],{"type":50,"value":408},{"type":44,"tag":100,"props":20756,"children":20757},{"style":400},[20758],{"type":50,"value":6368},{"type":44,"tag":100,"props":20760,"children":20761},{"class":102,"line":6371},[20762,20766,20770,20774,20778,20782,20786,20790,20794,20798,20802,20806,20810,20814,20818,20822,20826,20830],{"type":44,"tag":100,"props":20763,"children":20764},{"style":113},[20765],{"type":50,"value":654},{"type":44,"tag":100,"props":20767,"children":20768},{"style":400},[20769],{"type":50,"value":427},{"type":44,"tag":100,"props":20771,"children":20772},{"style":113},[20773],{"type":50,"value":2925},{"type":44,"tag":100,"props":20775,"children":20776},{"style":400},[20777],{"type":50,"value":786},{"type":44,"tag":100,"props":20779,"children":20780},{"style":113},[20781],{"type":50,"value":6157},{"type":44,"tag":100,"props":20783,"children":20784},{"style":390},[20785],{"type":50,"value":6319},{"type":44,"tag":100,"props":20787,"children":20788},{"style":113},[20789],{"type":50,"value":1262},{"type":44,"tag":100,"props":20791,"children":20792},{"style":400},[20793],{"type":50,"value":427},{"type":44,"tag":100,"props":20795,"children":20796},{"style":113},[20797],{"type":50,"value":2925},{"type":44,"tag":100,"props":20799,"children":20800},{"style":400},[20801],{"type":50,"value":786},{"type":44,"tag":100,"props":20803,"children":20804},{"style":113},[20805],{"type":50,"value":6220},{"type":44,"tag":100,"props":20807,"children":20808},{"style":400},[20809],{"type":50,"value":750},{"type":44,"tag":100,"props":20811,"children":20812},{"style":113},[20813],{"type":50,"value":679},{"type":44,"tag":100,"props":20815,"children":20816},{"style":400},[20817],{"type":50,"value":684},{"type":44,"tag":100,"props":20819,"children":20820},{"style":113},[20821],{"type":50,"value":689},{"type":44,"tag":100,"props":20823,"children":20824},{"style":400},[20825],{"type":50,"value":437},{"type":44,"tag":100,"props":20827,"children":20828},{"style":390},[20829],{"type":50,"value":408},{"type":44,"tag":100,"props":20831,"children":20832},{"style":400},[20833],{"type":50,"value":6445},{"type":44,"tag":100,"props":20835,"children":20836},{"class":102,"line":6448},[20837,20841,20845,20849,20853,20857,20861,20865,20869,20873,20877,20881,20885,20889,20893,20897,20901,20905,20909,20913,20917],{"type":44,"tag":100,"props":20838,"children":20839},{"style":113},[20840],{"type":50,"value":654},{"type":44,"tag":100,"props":20842,"children":20843},{"style":400},[20844],{"type":50,"value":427},{"type":44,"tag":100,"props":20846,"children":20847},{"style":113},[20848],{"type":50,"value":2925},{"type":44,"tag":100,"props":20850,"children":20851},{"style":400},[20852],{"type":50,"value":786},{"type":44,"tag":100,"props":20854,"children":20855},{"style":113},[20856],{"type":50,"value":6199},{"type":44,"tag":100,"props":20858,"children":20859},{"style":390},[20860],{"type":50,"value":6319},{"type":44,"tag":100,"props":20862,"children":20863},{"style":113},[20864],{"type":50,"value":1262},{"type":44,"tag":100,"props":20866,"children":20867},{"style":400},[20868],{"type":50,"value":427},{"type":44,"tag":100,"props":20870,"children":20871},{"style":113},[20872],{"type":50,"value":2925},{"type":44,"tag":100,"props":20874,"children":20875},{"style":400},[20876],{"type":50,"value":786},{"type":44,"tag":100,"props":20878,"children":20879},{"style":113},[20880],{"type":50,"value":6178},{"type":44,"tag":100,"props":20882,"children":20883},{"style":400},[20884],{"type":50,"value":750},{"type":44,"tag":100,"props":20886,"children":20887},{"style":113},[20888],{"type":50,"value":679},{"type":44,"tag":100,"props":20890,"children":20891},{"style":400},[20892],{"type":50,"value":437},{"type":44,"tag":100,"props":20894,"children":20895},{"style":390},[20896],{"type":50,"value":432},{"type":44,"tag":100,"props":20898,"children":20899},{"style":113},[20900],{"type":50,"value":745},{"type":44,"tag":100,"props":20902,"children":20903},{"style":400},[20904],{"type":50,"value":750},{"type":44,"tag":100,"props":20906,"children":20907},{"style":113},[20908],{"type":50,"value":689},{"type":44,"tag":100,"props":20910,"children":20911},{"style":400},[20912],{"type":50,"value":437},{"type":44,"tag":100,"props":20914,"children":20915},{"style":390},[20916],{"type":50,"value":408},{"type":44,"tag":100,"props":20918,"children":20919},{"style":400},[20920],{"type":50,"value":6534},{"type":44,"tag":100,"props":20922,"children":20923},{"class":102,"line":6537},[20924,20928],{"type":44,"tag":100,"props":20925,"children":20926},{"style":390},[20927],{"type":50,"value":776},{"type":44,"tag":100,"props":20929,"children":20930},{"style":400},[20931],{"type":50,"value":6547},{"type":44,"tag":100,"props":20933,"children":20934},{"class":102,"line":6550},[20935,20939],{"type":44,"tag":100,"props":20936,"children":20937},{"style":390},[20938],{"type":50,"value":6556},{"type":44,"tag":100,"props":20940,"children":20941},{"style":400},[20942],{"type":50,"value":6561},{"type":44,"tag":100,"props":20944,"children":20945},{"class":102,"line":6564},[20946,20950,20954,20958,20962,20966,20970,20974],{"type":44,"tag":100,"props":20947,"children":20948},{"style":390},[20949],{"type":50,"value":3114},{"type":44,"tag":100,"props":20951,"children":20952},{"style":113},[20953],{"type":50,"value":3135},{"type":44,"tag":100,"props":20955,"children":20956},{"style":400},[20957],{"type":50,"value":786},{"type":44,"tag":100,"props":20959,"children":20960},{"style":113},[20961],{"type":50,"value":6111},{"type":44,"tag":100,"props":20963,"children":20964},{"style":390},[20965],{"type":50,"value":2591},{"type":44,"tag":100,"props":20967,"children":20968},{"style":113},[20969],{"type":50,"value":6590},{"type":44,"tag":100,"props":20971,"children":20972},{"style":400},[20973],{"type":50,"value":786},{"type":44,"tag":100,"props":20975,"children":20976},{"style":113},[20977],{"type":50,"value":6024},{"type":44,"tag":100,"props":20979,"children":20980},{"class":102,"line":6601},[20981,20985,20989,20993,20997,21001,21005,21009],{"type":44,"tag":100,"props":20982,"children":20983},{"style":390},[20984],{"type":50,"value":6607},{"type":44,"tag":100,"props":20986,"children":20987},{"style":113},[20988],{"type":50,"value":3135},{"type":44,"tag":100,"props":20990,"children":20991},{"style":400},[20992],{"type":50,"value":786},{"type":44,"tag":100,"props":20994,"children":20995},{"style":113},[20996],{"type":50,"value":5890},{"type":44,"tag":100,"props":20998,"children":20999},{"style":390},[21000],{"type":50,"value":2591},{"type":44,"tag":100,"props":21002,"children":21003},{"style":113},[21004],{"type":50,"value":6590},{"type":44,"tag":100,"props":21006,"children":21007},{"style":400},[21008],{"type":50,"value":786},{"type":44,"tag":100,"props":21010,"children":21011},{"style":113},[21012],{"type":50,"value":6078},{"type":44,"tag":100,"props":21014,"children":21015},{"class":102,"line":6638},[21016,21020],{"type":44,"tag":100,"props":21017,"children":21018},{"style":390},[21019],{"type":50,"value":6556},{"type":44,"tag":100,"props":21021,"children":21022},{"style":400},[21023],{"type":50,"value":6648},{"type":44,"tag":100,"props":21025,"children":21026},{"class":102,"line":6651},[21027,21031,21035,21039,21043,21047,21051,21055],{"type":44,"tag":100,"props":21028,"children":21029},{"style":390},[21030],{"type":50,"value":3114},{"type":44,"tag":100,"props":21032,"children":21033},{"style":113},[21034],{"type":50,"value":3135},{"type":44,"tag":100,"props":21036,"children":21037},{"style":400},[21038],{"type":50,"value":786},{"type":44,"tag":100,"props":21040,"children":21041},{"style":113},[21042],{"type":50,"value":6111},{"type":44,"tag":100,"props":21044,"children":21045},{"style":390},[21046],{"type":50,"value":2591},{"type":44,"tag":100,"props":21048,"children":21049},{"style":113},[21050],{"type":50,"value":6677},{"type":44,"tag":100,"props":21052,"children":21053},{"style":400},[21054],{"type":50,"value":786},{"type":44,"tag":100,"props":21056,"children":21057},{"style":113},[21058],{"type":50,"value":6686},{"type":44,"tag":100,"props":21060,"children":21061},{"class":102,"line":6689},[21062,21066,21070,21074,21078,21082,21086,21090],{"type":44,"tag":100,"props":21063,"children":21064},{"style":390},[21065],{"type":50,"value":6607},{"type":44,"tag":100,"props":21067,"children":21068},{"style":113},[21069],{"type":50,"value":3135},{"type":44,"tag":100,"props":21071,"children":21072},{"style":400},[21073],{"type":50,"value":786},{"type":44,"tag":100,"props":21075,"children":21076},{"style":113},[21077],{"type":50,"value":5890},{"type":44,"tag":100,"props":21079,"children":21080},{"style":390},[21081],{"type":50,"value":2591},{"type":44,"tag":100,"props":21083,"children":21084},{"style":113},[21085],{"type":50,"value":6677},{"type":44,"tag":100,"props":21087,"children":21088},{"style":400},[21089],{"type":50,"value":786},{"type":44,"tag":100,"props":21091,"children":21092},{"style":113},[21093],{"type":50,"value":6078},{"type":44,"tag":100,"props":21095,"children":21096},{"class":102,"line":6725},[21097,21101,21105,21109,21113,21117,21121,21125,21129,21133],{"type":44,"tag":100,"props":21098,"children":21099},{"style":390},[21100],{"type":50,"value":814},{"type":44,"tag":100,"props":21102,"children":21103},{"style":113},[21104],{"type":50,"value":3135},{"type":44,"tag":100,"props":21106,"children":21107},{"style":400},[21108],{"type":50,"value":786},{"type":44,"tag":100,"props":21110,"children":21111},{"style":113},[21112],{"type":50,"value":6111},{"type":44,"tag":100,"props":21114,"children":21115},{"style":390},[21116],{"type":50,"value":6747},{"type":44,"tag":100,"props":21118,"children":21119},{"style":400},[21120],{"type":50,"value":750},{"type":44,"tag":100,"props":21122,"children":21123},{"style":113},[21124],{"type":50,"value":2925},{"type":44,"tag":100,"props":21126,"children":21127},{"style":400},[21128],{"type":50,"value":786},{"type":44,"tag":100,"props":21130,"children":21131},{"style":113},[21132],{"type":50,"value":6157},{"type":44,"tag":100,"props":21134,"children":21135},{"style":390},[21136],{"type":50,"value":6768},{"type":44,"tag":203,"props":21138,"children":21139},{"v-slot:snowflake":7},[21140],{"type":44,"tag":90,"props":21141,"children":21142},{"className":208,"code":8069,"language":210,"meta":7,"style":7},[21143],{"type":44,"tag":81,"props":21144,"children":21145},{"__ignoreMap":7},[21146,21153,21160,21167,21174,21181,21188,21195,21202,21209,21216,21223,21230,21237,21244,21251,21258,21277,21284,21291,21298,21317,21336,21355,21374,21393,21404,21411,21426,21433,21440,21447,21470,21489,21508,21527,21538,21545,21560,21567,21586,21605,21640,21663,21686,21717,21744,21775,21782,21789,21812,21831,21850,21869,21888,21907,21926,21945,21964,22039,22114,22201,22212,22223,22258,22293,22304,22339,22374],{"type":44,"tag":100,"props":21147,"children":21148},{"class":102,"line":103},[21149],{"type":44,"tag":100,"props":21150,"children":21151},{"style":220},[21152],{"type":50,"value":223},{"type":44,"tag":100,"props":21154,"children":21155},{"class":102,"line":226},[21156],{"type":44,"tag":100,"props":21157,"children":21158},{"style":220},[21159],{"type":50,"value":5422},{"type":44,"tag":100,"props":21161,"children":21162},{"class":102,"line":235},[21163],{"type":44,"tag":100,"props":21164,"children":21165},{"style":220},[21166],{"type":50,"value":241},{"type":44,"tag":100,"props":21168,"children":21169},{"class":102,"line":24},[21170],{"type":44,"tag":100,"props":21171,"children":21172},{"style":220},[21173],{"type":50,"value":249},{"type":44,"tag":100,"props":21175,"children":21176},{"class":102,"line":252},[21177],{"type":44,"tag":100,"props":21178,"children":21179},{"style":220},[21180],{"type":50,"value":258},{"type":44,"tag":100,"props":21182,"children":21183},{"class":102,"line":261},[21184],{"type":44,"tag":100,"props":21185,"children":21186},{"style":220},[21187],{"type":50,"value":267},{"type":44,"tag":100,"props":21189,"children":21190},{"class":102,"line":270},[21191],{"type":44,"tag":100,"props":21192,"children":21193},{"style":220},[21194],{"type":50,"value":5458},{"type":44,"tag":100,"props":21196,"children":21197},{"class":102,"line":279},[21198],{"type":44,"tag":100,"props":21199,"children":21200},{"style":220},[21201],{"type":50,"value":5466},{"type":44,"tag":100,"props":21203,"children":21204},{"class":102,"line":288},[21205],{"type":44,"tag":100,"props":21206,"children":21207},{"style":220},[21208],{"type":50,"value":276},{"type":44,"tag":100,"props":21210,"children":21211},{"class":102,"line":297},[21212],{"type":44,"tag":100,"props":21213,"children":21214},{"style":220},[21215],{"type":50,"value":285},{"type":44,"tag":100,"props":21217,"children":21218},{"class":102,"line":306},[21219],{"type":44,"tag":100,"props":21220,"children":21221},{"style":220},[21222],{"type":50,"value":5488},{"type":44,"tag":100,"props":21224,"children":21225},{"class":102,"line":315},[21226],{"type":44,"tag":100,"props":21227,"children":21228},{"style":220},[21229],{"type":50,"value":5225},{"type":44,"tag":100,"props":21231,"children":21232},{"class":102,"line":324},[21233],{"type":44,"tag":100,"props":21234,"children":21235},{"style":220},[21236],{"type":50,"value":312},{"type":44,"tag":100,"props":21238,"children":21239},{"class":102,"line":333},[21240],{"type":44,"tag":100,"props":21241,"children":21242},{"style":220},[21243],{"type":50,"value":321},{"type":44,"tag":100,"props":21245,"children":21246},{"class":102,"line":11},[21247],{"type":44,"tag":100,"props":21248,"children":21249},{"style":220},[21250],{"type":50,"value":374},{"type":44,"tag":100,"props":21252,"children":21253},{"class":102,"line":350},[21254],{"type":44,"tag":100,"props":21255,"children":21256},{"emptyLinePlaceholder":23},[21257],{"type":50,"value":383},{"type":44,"tag":100,"props":21259,"children":21260},{"class":102,"line":359},[21261,21265,21269,21273],{"type":44,"tag":100,"props":21262,"children":21263},{"style":390},[21264],{"type":50,"value":2387},{"type":44,"tag":100,"props":21266,"children":21267},{"style":400},[21268],{"type":50,"value":5535},{"type":44,"tag":100,"props":21270,"children":21271},{"style":390},[21272],{"type":50,"value":408},{"type":44,"tag":100,"props":21274,"children":21275},{"style":400},[21276],{"type":50,"value":2401},{"type":44,"tag":100,"props":21278,"children":21279},{"class":102,"line":368},[21280],{"type":44,"tag":100,"props":21281,"children":21282},{"style":390},[21283],{"type":50,"value":2409},{"type":44,"tag":100,"props":21285,"children":21286},{"class":102,"line":377},[21287],{"type":44,"tag":100,"props":21288,"children":21289},{"style":400},[21290],{"type":50,"value":5558},{"type":44,"tag":100,"props":21292,"children":21293},{"class":102,"line":386},[21294],{"type":44,"tag":100,"props":21295,"children":21296},{"style":400},[21297],{"type":50,"value":5566},{"type":44,"tag":100,"props":21299,"children":21300},{"class":102,"line":396},[21301,21305,21309,21313],{"type":44,"tag":100,"props":21302,"children":21303},{"style":113},[21304],{"type":50,"value":5574},{"type":44,"tag":100,"props":21306,"children":21307},{"style":400},[21308],{"type":50,"value":5579},{"type":44,"tag":100,"props":21310,"children":21311},{"style":390},[21312],{"type":50,"value":408},{"type":44,"tag":100,"props":21314,"children":21315},{"style":400},[21316],{"type":50,"value":5588},{"type":44,"tag":100,"props":21318,"children":21319},{"class":102,"line":416},[21320,21324,21328,21332],{"type":44,"tag":100,"props":21321,"children":21322},{"style":113},[21323],{"type":50,"value":5574},{"type":44,"tag":100,"props":21325,"children":21326},{"style":400},[21327],{"type":50,"value":5600},{"type":44,"tag":100,"props":21329,"children":21330},{"style":390},[21331],{"type":50,"value":408},{"type":44,"tag":100,"props":21333,"children":21334},{"style":400},[21335],{"type":50,"value":5609},{"type":44,"tag":100,"props":21337,"children":21338},{"class":102,"line":449},[21339,21343,21347,21351],{"type":44,"tag":100,"props":21340,"children":21341},{"style":113},[21342],{"type":50,"value":5574},{"type":44,"tag":100,"props":21344,"children":21345},{"style":400},[21346],{"type":50,"value":5621},{"type":44,"tag":100,"props":21348,"children":21349},{"style":390},[21350],{"type":50,"value":408},{"type":44,"tag":100,"props":21352,"children":21353},{"style":400},[21354],{"type":50,"value":5630},{"type":44,"tag":100,"props":21356,"children":21357},{"class":102,"line":481},[21358,21362,21366,21370],{"type":44,"tag":100,"props":21359,"children":21360},{"style":113},[21361],{"type":50,"value":5574},{"type":44,"tag":100,"props":21363,"children":21364},{"style":400},[21365],{"type":50,"value":5642},{"type":44,"tag":100,"props":21367,"children":21368},{"style":390},[21369],{"type":50,"value":408},{"type":44,"tag":100,"props":21371,"children":21372},{"style":400},[21373],{"type":50,"value":5651},{"type":44,"tag":100,"props":21375,"children":21376},{"class":102,"line":508},[21377,21381,21385,21389],{"type":44,"tag":100,"props":21378,"children":21379},{"style":390},[21380],{"type":50,"value":2524},{"type":44,"tag":100,"props":21382,"children":21383},{"style":113},[21384],{"type":50,"value":781},{"type":44,"tag":100,"props":21386,"children":21387},{"style":400},[21388],{"type":50,"value":786},{"type":44,"tag":100,"props":21390,"children":21391},{"style":113},[21392],{"type":50,"value":5671},{"type":44,"tag":100,"props":21394,"children":21395},{"class":102,"line":531},[21396,21400],{"type":44,"tag":100,"props":21397,"children":21398},{"style":390},[21399],{"type":50,"value":2725},{"type":44,"tag":100,"props":21401,"children":21402},{"style":400},[21403],{"type":50,"value":5683},{"type":44,"tag":100,"props":21405,"children":21406},{"class":102,"line":604},[21407],{"type":44,"tag":100,"props":21408,"children":21409},{"style":400},[21410],{"type":50,"value":2643},{"type":44,"tag":100,"props":21412,"children":21413},{"class":102,"line":626},[21414,21418,21422],{"type":44,"tag":100,"props":21415,"children":21416},{"style":400},[21417],{"type":50,"value":5698},{"type":44,"tag":100,"props":21419,"children":21420},{"style":390},[21421],{"type":50,"value":408},{"type":44,"tag":100,"props":21423,"children":21424},{"style":400},[21425],{"type":50,"value":2401},{"type":44,"tag":100,"props":21427,"children":21428},{"class":102,"line":648},[21429],{"type":44,"tag":100,"props":21430,"children":21431},{"style":390},[21432],{"type":50,"value":2409},{"type":44,"tag":100,"props":21434,"children":21435},{"class":102,"line":705},[21436],{"type":44,"tag":100,"props":21437,"children":21438},{"style":400},[21439],{"type":50,"value":5721},{"type":44,"tag":100,"props":21441,"children":21442},{"class":102,"line":770},[21443],{"type":44,"tag":100,"props":21444,"children":21445},{"style":400},[21446],{"type":50,"value":5566},{"type":44,"tag":100,"props":21448,"children":21449},{"class":102,"line":794},[21450,21454,21458,21462,21466],{"type":44,"tag":100,"props":21451,"children":21452},{"style":113},[21453],{"type":50,"value":5574},{"type":44,"tag":100,"props":21455,"children":21456},{"style":400},[21457],{"type":50,"value":5740},{"type":44,"tag":100,"props":21459,"children":21460},{"style":390},[21461],{"type":50,"value":408},{"type":44,"tag":100,"props":21463,"children":21464},{"style":390},[21465],{"type":50,"value":5749},{"type":44,"tag":100,"props":21467,"children":21468},{"style":400},[21469],{"type":50,"value":2431},{"type":44,"tag":100,"props":21471,"children":21472},{"class":102,"line":808},[21473,21477,21481,21485],{"type":44,"tag":100,"props":21474,"children":21475},{"style":113},[21476],{"type":50,"value":5574},{"type":44,"tag":100,"props":21478,"children":21479},{"style":400},[21480],{"type":50,"value":5765},{"type":44,"tag":100,"props":21482,"children":21483},{"style":390},[21484],{"type":50,"value":408},{"type":44,"tag":100,"props":21486,"children":21487},{"style":400},[21488],{"type":50,"value":5774},{"type":44,"tag":100,"props":21490,"children":21491},{"class":102,"line":1484},[21492,21496,21500,21504],{"type":44,"tag":100,"props":21493,"children":21494},{"style":113},[21495],{"type":50,"value":5574},{"type":44,"tag":100,"props":21497,"children":21498},{"style":400},[21499],{"type":50,"value":5786},{"type":44,"tag":100,"props":21501,"children":21502},{"style":390},[21503],{"type":50,"value":408},{"type":44,"tag":100,"props":21505,"children":21506},{"style":400},[21507],{"type":50,"value":5795},{"type":44,"tag":100,"props":21509,"children":21510},{"class":102,"line":2747},[21511,21515,21519,21523],{"type":44,"tag":100,"props":21512,"children":21513},{"style":390},[21514],{"type":50,"value":2524},{"type":44,"tag":100,"props":21516,"children":21517},{"style":113},[21518],{"type":50,"value":781},{"type":44,"tag":100,"props":21520,"children":21521},{"style":400},[21522],{"type":50,"value":786},{"type":44,"tag":100,"props":21524,"children":21525},{"style":113},[21526],{"type":50,"value":5815},{"type":44,"tag":100,"props":21528,"children":21529},{"class":102,"line":2769},[21530,21534],{"type":44,"tag":100,"props":21531,"children":21532},{"style":390},[21533],{"type":50,"value":2725},{"type":44,"tag":100,"props":21535,"children":21536},{"style":400},[21537],{"type":50,"value":5827},{"type":44,"tag":100,"props":21539,"children":21540},{"class":102,"line":2791},[21541],{"type":44,"tag":100,"props":21542,"children":21543},{"style":400},[21544],{"type":50,"value":2643},{"type":44,"tag":100,"props":21546,"children":21547},{"class":102,"line":2856},[21548,21552,21556],{"type":44,"tag":100,"props":21549,"children":21550},{"style":400},[21551],{"type":50,"value":5842},{"type":44,"tag":100,"props":21553,"children":21554},{"style":390},[21555],{"type":50,"value":408},{"type":44,"tag":100,"props":21557,"children":21558},{"style":400},[21559],{"type":50,"value":2401},{"type":44,"tag":100,"props":21561,"children":21562},{"class":102,"line":2898},[21563],{"type":44,"tag":100,"props":21564,"children":21565},{"style":390},[21566],{"type":50,"value":2409},{"type":44,"tag":100,"props":21568,"children":21569},{"class":102,"line":2977},[21570,21574,21578,21582],{"type":44,"tag":100,"props":21571,"children":21572},{"style":400},[21573],{"type":50,"value":8502},{"type":44,"tag":100,"props":21575,"children":21576},{"style":390},[21577],{"type":50,"value":1656},{"type":44,"tag":100,"props":21579,"children":21580},{"style":390},[21581],{"type":50,"value":1661},{"type":44,"tag":100,"props":21583,"children":21584},{"style":400},[21585],{"type":50,"value":413},{"type":44,"tag":100,"props":21587,"children":21588},{"class":102,"line":3015},[21589,21593,21597,21601],{"type":44,"tag":100,"props":21590,"children":21591},{"style":113},[21592],{"type":50,"value":5881},{"type":44,"tag":100,"props":21594,"children":21595},{"style":400},[21596],{"type":50,"value":786},{"type":44,"tag":100,"props":21598,"children":21599},{"style":113},[21600],{"type":50,"value":5890},{"type":44,"tag":100,"props":21602,"children":21603},{"style":400},[21604],{"type":50,"value":2431},{"type":44,"tag":100,"props":21606,"children":21607},{"class":102,"line":3081},[21608,21612,21616,21620,21624,21628,21632,21636],{"type":44,"tag":100,"props":21609,"children":21610},{"style":113},[21611],{"type":50,"value":5574},{"type":44,"tag":100,"props":21613,"children":21614},{"style":400},[21615],{"type":50,"value":427},{"type":44,"tag":100,"props":21617,"children":21618},{"style":113},[21619],{"type":50,"value":2478},{"type":44,"tag":100,"props":21621,"children":21622},{"style":400},[21623],{"type":50,"value":786},{"type":44,"tag":100,"props":21625,"children":21626},{"style":113},[21627],{"type":50,"value":2999},{"type":44,"tag":100,"props":21629,"children":21630},{"style":400},[21631],{"type":50,"value":437},{"type":44,"tag":100,"props":21633,"children":21634},{"style":390},[21635],{"type":50,"value":408},{"type":44,"tag":100,"props":21637,"children":21638},{"style":400},[21639],{"type":50,"value":5930},{"type":44,"tag":100,"props":21641,"children":21642},{"class":102,"line":3094},[21643,21647,21651,21655,21659],{"type":44,"tag":100,"props":21644,"children":21645},{"style":390},[21646],{"type":50,"value":2524},{"type":44,"tag":100,"props":21648,"children":21649},{"style":113},[21650],{"type":50,"value":781},{"type":44,"tag":100,"props":21652,"children":21653},{"style":400},[21654],{"type":50,"value":786},{"type":44,"tag":100,"props":21656,"children":21657},{"style":113},[21658],{"type":50,"value":1408},{"type":44,"tag":100,"props":21660,"children":21661},{"style":400},[21662],{"type":50,"value":1413},{"type":44,"tag":100,"props":21664,"children":21665},{"class":102,"line":3108},[21666,21670,21674,21678,21682],{"type":44,"tag":100,"props":21667,"children":21668},{"style":390},[21669],{"type":50,"value":2548},{"type":44,"tag":100,"props":21671,"children":21672},{"style":113},[21673],{"type":50,"value":781},{"type":44,"tag":100,"props":21675,"children":21676},{"style":400},[21677],{"type":50,"value":786},{"type":44,"tag":100,"props":21679,"children":21680},{"style":113},[21681],{"type":50,"value":5973},{"type":44,"tag":100,"props":21683,"children":21684},{"style":400},[21685],{"type":50,"value":5978},{"type":44,"tag":100,"props":21687,"children":21688},{"class":102,"line":3147},[21689,21693,21697,21701,21705,21709,21713],{"type":44,"tag":100,"props":21690,"children":21691},{"style":390},[21692],{"type":50,"value":2574},{"type":44,"tag":100,"props":21694,"children":21695},{"style":400},[21696],{"type":50,"value":2211},{"type":44,"tag":100,"props":21698,"children":21699},{"style":390},[21700],{"type":50,"value":1656},{"type":44,"tag":100,"props":21702,"children":21703},{"style":390},[21704],{"type":50,"value":2591},{"type":44,"tag":100,"props":21706,"children":21707},{"style":113},[21708],{"type":50,"value":6015},{"type":44,"tag":100,"props":21710,"children":21711},{"style":400},[21712],{"type":50,"value":786},{"type":44,"tag":100,"props":21714,"children":21715},{"style":113},[21716],{"type":50,"value":6024},{"type":44,"tag":100,"props":21718,"children":21719},{"class":102,"line":3188},[21720,21724,21728,21732,21736,21740],{"type":44,"tag":100,"props":21721,"children":21722},{"style":390},[21723],{"type":50,"value":2613},{"type":44,"tag":100,"props":21725,"children":21726},{"style":113},[21727],{"type":50,"value":1426},{"type":44,"tag":100,"props":21729,"children":21730},{"style":400},[21731],{"type":50,"value":786},{"type":44,"tag":100,"props":21733,"children":21734},{"style":113},[21735],{"type":50,"value":2626},{"type":44,"tag":100,"props":21737,"children":21738},{"style":390},[21739],{"type":50,"value":2591},{"type":44,"tag":100,"props":21741,"children":21742},{"style":119},[21743],{"type":50,"value":2635},{"type":44,"tag":100,"props":21745,"children":21746},{"class":102,"line":6054},[21747,21751,21755,21759,21763,21767,21771],{"type":44,"tag":100,"props":21748,"children":21749},{"style":390},[21750],{"type":50,"value":2725},{"type":44,"tag":100,"props":21752,"children":21753},{"style":400},[21754],{"type":50,"value":2211},{"type":44,"tag":100,"props":21756,"children":21757},{"style":390},[21758],{"type":50,"value":1656},{"type":44,"tag":100,"props":21760,"children":21761},{"style":400},[21762],{"type":50,"value":750},{"type":44,"tag":100,"props":21764,"children":21765},{"style":113},[21766],{"type":50,"value":6069},{"type":44,"tag":100,"props":21768,"children":21769},{"style":400},[21770],{"type":50,"value":786},{"type":44,"tag":100,"props":21772,"children":21773},{"style":113},[21774],{"type":50,"value":6078},{"type":44,"tag":100,"props":21776,"children":21777},{"class":102,"line":6081},[21778],{"type":44,"tag":100,"props":21779,"children":21780},{"style":400},[21781],{"type":50,"value":1464},{"type":44,"tag":100,"props":21783,"children":21784},{"class":102,"line":6089},[21785],{"type":44,"tag":100,"props":21786,"children":21787},{"style":390},[21788],{"type":50,"value":393},{"type":44,"tag":100,"props":21790,"children":21791},{"class":102,"line":6097},[21792,21796,21800,21804,21808],{"type":44,"tag":100,"props":21793,"children":21794},{"style":113},[21795],{"type":50,"value":2775},{"type":44,"tag":100,"props":21797,"children":21798},{"style":400},[21799],{"type":50,"value":786},{"type":44,"tag":100,"props":21801,"children":21802},{"style":113},[21803],{"type":50,"value":6111},{"type":44,"tag":100,"props":21805,"children":21806},{"style":390},[21807],{"type":50,"value":1661},{"type":44,"tag":100,"props":21809,"children":21810},{"style":400},[21811],{"type":50,"value":6120},{"type":44,"tag":100,"props":21813,"children":21814},{"class":102,"line":6123},[21815,21819,21823,21827],{"type":44,"tag":100,"props":21816,"children":21817},{"style":113},[21818],{"type":50,"value":2775},{"type":44,"tag":100,"props":21820,"children":21821},{"style":400},[21822],{"type":50,"value":786},{"type":44,"tag":100,"props":21824,"children":21825},{"style":113},[21826],{"type":50,"value":5890},{"type":44,"tag":100,"props":21828,"children":21829},{"style":400},[21830],{"type":50,"value":2431},{"type":44,"tag":100,"props":21832,"children":21833},{"class":102,"line":6143},[21834,21838,21842,21846],{"type":44,"tag":100,"props":21835,"children":21836},{"style":113},[21837],{"type":50,"value":2775},{"type":44,"tag":100,"props":21839,"children":21840},{"style":400},[21841],{"type":50,"value":786},{"type":44,"tag":100,"props":21843,"children":21844},{"style":113},[21845],{"type":50,"value":6157},{"type":44,"tag":100,"props":21847,"children":21848},{"style":400},[21849],{"type":50,"value":2431},{"type":44,"tag":100,"props":21851,"children":21852},{"class":102,"line":6164},[21853,21857,21861,21865],{"type":44,"tag":100,"props":21854,"children":21855},{"style":113},[21856],{"type":50,"value":2775},{"type":44,"tag":100,"props":21858,"children":21859},{"style":400},[21860],{"type":50,"value":786},{"type":44,"tag":100,"props":21862,"children":21863},{"style":113},[21864],{"type":50,"value":6178},{"type":44,"tag":100,"props":21866,"children":21867},{"style":400},[21868],{"type":50,"value":2431},{"type":44,"tag":100,"props":21870,"children":21871},{"class":102,"line":6185},[21872,21876,21880,21884],{"type":44,"tag":100,"props":21873,"children":21874},{"style":113},[21875],{"type":50,"value":2775},{"type":44,"tag":100,"props":21877,"children":21878},{"style":400},[21879],{"type":50,"value":786},{"type":44,"tag":100,"props":21881,"children":21882},{"style":113},[21883],{"type":50,"value":6199},{"type":44,"tag":100,"props":21885,"children":21886},{"style":400},[21887],{"type":50,"value":2431},{"type":44,"tag":100,"props":21889,"children":21890},{"class":102,"line":6206},[21891,21895,21899,21903],{"type":44,"tag":100,"props":21892,"children":21893},{"style":113},[21894],{"type":50,"value":2775},{"type":44,"tag":100,"props":21896,"children":21897},{"style":400},[21898],{"type":50,"value":786},{"type":44,"tag":100,"props":21900,"children":21901},{"style":113},[21902],{"type":50,"value":6220},{"type":44,"tag":100,"props":21904,"children":21905},{"style":400},[21906],{"type":50,"value":2431},{"type":44,"tag":100,"props":21908,"children":21909},{"class":102,"line":6227},[21910,21914,21918,21922],{"type":44,"tag":100,"props":21911,"children":21912},{"style":113},[21913],{"type":50,"value":6233},{"type":44,"tag":100,"props":21915,"children":21916},{"style":400},[21917],{"type":50,"value":786},{"type":44,"tag":100,"props":21919,"children":21920},{"style":113},[21921],{"type":50,"value":6242},{"type":44,"tag":100,"props":21923,"children":21924},{"style":400},[21925],{"type":50,"value":2431},{"type":44,"tag":100,"props":21927,"children":21928},{"class":102,"line":6249},[21929,21933,21937,21941],{"type":44,"tag":100,"props":21930,"children":21931},{"style":113},[21932],{"type":50,"value":6233},{"type":44,"tag":100,"props":21934,"children":21935},{"style":400},[21936],{"type":50,"value":786},{"type":44,"tag":100,"props":21938,"children":21939},{"style":113},[21940],{"type":50,"value":6263},{"type":44,"tag":100,"props":21942,"children":21943},{"style":400},[21944],{"type":50,"value":2431},{"type":44,"tag":100,"props":21946,"children":21947},{"class":102,"line":6270},[21948,21952,21956,21960],{"type":44,"tag":100,"props":21949,"children":21950},{"style":113},[21951],{"type":50,"value":6276},{"type":44,"tag":100,"props":21953,"children":21954},{"style":400},[21955],{"type":50,"value":786},{"type":44,"tag":100,"props":21957,"children":21958},{"style":113},[21959],{"type":50,"value":6285},{"type":44,"tag":100,"props":21961,"children":21962},{"style":400},[21963],{"type":50,"value":2431},{"type":44,"tag":100,"props":21965,"children":21966},{"class":102,"line":6292},[21967,21971,21975,21979,21983,21987,21991,21995,21999,22003,22007,22011,22015,22019,22023,22027,22031,22035],{"type":44,"tag":100,"props":21968,"children":21969},{"style":113},[21970],{"type":50,"value":654},{"type":44,"tag":100,"props":21972,"children":21973},{"style":400},[21974],{"type":50,"value":427},{"type":44,"tag":100,"props":21976,"children":21977},{"style":113},[21978],{"type":50,"value":6306},{"type":44,"tag":100,"props":21980,"children":21981},{"style":400},[21982],{"type":50,"value":786},{"type":44,"tag":100,"props":21984,"children":21985},{"style":113},[21986],{"type":50,"value":6285},{"type":44,"tag":100,"props":21988,"children":21989},{"style":390},[21990],{"type":50,"value":6319},{"type":44,"tag":100,"props":21992,"children":21993},{"style":113},[21994],{"type":50,"value":1262},{"type":44,"tag":100,"props":21996,"children":21997},{"style":400},[21998],{"type":50,"value":427},{"type":44,"tag":100,"props":22000,"children":22001},{"style":113},[22002],{"type":50,"value":2925},{"type":44,"tag":100,"props":22004,"children":22005},{"style":400},[22006],{"type":50,"value":786},{"type":44,"tag":100,"props":22008,"children":22009},{"style":113},[22010],{"type":50,"value":6157},{"type":44,"tag":100,"props":22012,"children":22013},{"style":400},[22014],{"type":50,"value":750},{"type":44,"tag":100,"props":22016,"children":22017},{"style":113},[22018],{"type":50,"value":679},{"type":44,"tag":100,"props":22020,"children":22021},{"style":400},[22022],{"type":50,"value":684},{"type":44,"tag":100,"props":22024,"children":22025},{"style":113},[22026],{"type":50,"value":689},{"type":44,"tag":100,"props":22028,"children":22029},{"style":400},[22030],{"type":50,"value":437},{"type":44,"tag":100,"props":22032,"children":22033},{"style":390},[22034],{"type":50,"value":408},{"type":44,"tag":100,"props":22036,"children":22037},{"style":400},[22038],{"type":50,"value":6368},{"type":44,"tag":100,"props":22040,"children":22041},{"class":102,"line":6371},[22042,22046,22050,22054,22058,22062,22066,22070,22074,22078,22082,22086,22090,22094,22098,22102,22106,22110],{"type":44,"tag":100,"props":22043,"children":22044},{"style":113},[22045],{"type":50,"value":654},{"type":44,"tag":100,"props":22047,"children":22048},{"style":400},[22049],{"type":50,"value":427},{"type":44,"tag":100,"props":22051,"children":22052},{"style":113},[22053],{"type":50,"value":2925},{"type":44,"tag":100,"props":22055,"children":22056},{"style":400},[22057],{"type":50,"value":786},{"type":44,"tag":100,"props":22059,"children":22060},{"style":113},[22061],{"type":50,"value":6157},{"type":44,"tag":100,"props":22063,"children":22064},{"style":390},[22065],{"type":50,"value":6319},{"type":44,"tag":100,"props":22067,"children":22068},{"style":113},[22069],{"type":50,"value":1262},{"type":44,"tag":100,"props":22071,"children":22072},{"style":400},[22073],{"type":50,"value":427},{"type":44,"tag":100,"props":22075,"children":22076},{"style":113},[22077],{"type":50,"value":2925},{"type":44,"tag":100,"props":22079,"children":22080},{"style":400},[22081],{"type":50,"value":786},{"type":44,"tag":100,"props":22083,"children":22084},{"style":113},[22085],{"type":50,"value":6220},{"type":44,"tag":100,"props":22087,"children":22088},{"style":400},[22089],{"type":50,"value":750},{"type":44,"tag":100,"props":22091,"children":22092},{"style":113},[22093],{"type":50,"value":679},{"type":44,"tag":100,"props":22095,"children":22096},{"style":400},[22097],{"type":50,"value":684},{"type":44,"tag":100,"props":22099,"children":22100},{"style":113},[22101],{"type":50,"value":689},{"type":44,"tag":100,"props":22103,"children":22104},{"style":400},[22105],{"type":50,"value":437},{"type":44,"tag":100,"props":22107,"children":22108},{"style":390},[22109],{"type":50,"value":408},{"type":44,"tag":100,"props":22111,"children":22112},{"style":400},[22113],{"type":50,"value":6445},{"type":44,"tag":100,"props":22115,"children":22116},{"class":102,"line":6448},[22117,22121,22125,22129,22133,22137,22141,22145,22149,22153,22157,22161,22165,22169,22173,22177,22181,22185,22189,22193,22197],{"type":44,"tag":100,"props":22118,"children":22119},{"style":113},[22120],{"type":50,"value":654},{"type":44,"tag":100,"props":22122,"children":22123},{"style":400},[22124],{"type":50,"value":427},{"type":44,"tag":100,"props":22126,"children":22127},{"style":113},[22128],{"type":50,"value":2925},{"type":44,"tag":100,"props":22130,"children":22131},{"style":400},[22132],{"type":50,"value":786},{"type":44,"tag":100,"props":22134,"children":22135},{"style":113},[22136],{"type":50,"value":6199},{"type":44,"tag":100,"props":22138,"children":22139},{"style":390},[22140],{"type":50,"value":6319},{"type":44,"tag":100,"props":22142,"children":22143},{"style":113},[22144],{"type":50,"value":1262},{"type":44,"tag":100,"props":22146,"children":22147},{"style":400},[22148],{"type":50,"value":427},{"type":44,"tag":100,"props":22150,"children":22151},{"style":113},[22152],{"type":50,"value":2925},{"type":44,"tag":100,"props":22154,"children":22155},{"style":400},[22156],{"type":50,"value":786},{"type":44,"tag":100,"props":22158,"children":22159},{"style":113},[22160],{"type":50,"value":6178},{"type":44,"tag":100,"props":22162,"children":22163},{"style":400},[22164],{"type":50,"value":750},{"type":44,"tag":100,"props":22166,"children":22167},{"style":113},[22168],{"type":50,"value":679},{"type":44,"tag":100,"props":22170,"children":22171},{"style":400},[22172],{"type":50,"value":437},{"type":44,"tag":100,"props":22174,"children":22175},{"style":390},[22176],{"type":50,"value":432},{"type":44,"tag":100,"props":22178,"children":22179},{"style":113},[22180],{"type":50,"value":745},{"type":44,"tag":100,"props":22182,"children":22183},{"style":400},[22184],{"type":50,"value":750},{"type":44,"tag":100,"props":22186,"children":22187},{"style":113},[22188],{"type":50,"value":689},{"type":44,"tag":100,"props":22190,"children":22191},{"style":400},[22192],{"type":50,"value":437},{"type":44,"tag":100,"props":22194,"children":22195},{"style":390},[22196],{"type":50,"value":408},{"type":44,"tag":100,"props":22198,"children":22199},{"style":400},[22200],{"type":50,"value":6534},{"type":44,"tag":100,"props":22202,"children":22203},{"class":102,"line":6537},[22204,22208],{"type":44,"tag":100,"props":22205,"children":22206},{"style":390},[22207],{"type":50,"value":776},{"type":44,"tag":100,"props":22209,"children":22210},{"style":400},[22211],{"type":50,"value":6547},{"type":44,"tag":100,"props":22213,"children":22214},{"class":102,"line":6550},[22215,22219],{"type":44,"tag":100,"props":22216,"children":22217},{"style":390},[22218],{"type":50,"value":6556},{"type":44,"tag":100,"props":22220,"children":22221},{"style":400},[22222],{"type":50,"value":6561},{"type":44,"tag":100,"props":22224,"children":22225},{"class":102,"line":6564},[22226,22230,22234,22238,22242,22246,22250,22254],{"type":44,"tag":100,"props":22227,"children":22228},{"style":390},[22229],{"type":50,"value":3114},{"type":44,"tag":100,"props":22231,"children":22232},{"style":113},[22233],{"type":50,"value":3135},{"type":44,"tag":100,"props":22235,"children":22236},{"style":400},[22237],{"type":50,"value":786},{"type":44,"tag":100,"props":22239,"children":22240},{"style":113},[22241],{"type":50,"value":6111},{"type":44,"tag":100,"props":22243,"children":22244},{"style":390},[22245],{"type":50,"value":2591},{"type":44,"tag":100,"props":22247,"children":22248},{"style":113},[22249],{"type":50,"value":6590},{"type":44,"tag":100,"props":22251,"children":22252},{"style":400},[22253],{"type":50,"value":786},{"type":44,"tag":100,"props":22255,"children":22256},{"style":113},[22257],{"type":50,"value":6024},{"type":44,"tag":100,"props":22259,"children":22260},{"class":102,"line":6601},[22261,22265,22269,22273,22277,22281,22285,22289],{"type":44,"tag":100,"props":22262,"children":22263},{"style":390},[22264],{"type":50,"value":6607},{"type":44,"tag":100,"props":22266,"children":22267},{"style":113},[22268],{"type":50,"value":3135},{"type":44,"tag":100,"props":22270,"children":22271},{"style":400},[22272],{"type":50,"value":786},{"type":44,"tag":100,"props":22274,"children":22275},{"style":113},[22276],{"type":50,"value":5890},{"type":44,"tag":100,"props":22278,"children":22279},{"style":390},[22280],{"type":50,"value":2591},{"type":44,"tag":100,"props":22282,"children":22283},{"style":113},[22284],{"type":50,"value":6590},{"type":44,"tag":100,"props":22286,"children":22287},{"style":400},[22288],{"type":50,"value":786},{"type":44,"tag":100,"props":22290,"children":22291},{"style":113},[22292],{"type":50,"value":6078},{"type":44,"tag":100,"props":22294,"children":22295},{"class":102,"line":6638},[22296,22300],{"type":44,"tag":100,"props":22297,"children":22298},{"style":390},[22299],{"type":50,"value":6556},{"type":44,"tag":100,"props":22301,"children":22302},{"style":400},[22303],{"type":50,"value":6648},{"type":44,"tag":100,"props":22305,"children":22306},{"class":102,"line":6651},[22307,22311,22315,22319,22323,22327,22331,22335],{"type":44,"tag":100,"props":22308,"children":22309},{"style":390},[22310],{"type":50,"value":3114},{"type":44,"tag":100,"props":22312,"children":22313},{"style":113},[22314],{"type":50,"value":3135},{"type":44,"tag":100,"props":22316,"children":22317},{"style":400},[22318],{"type":50,"value":786},{"type":44,"tag":100,"props":22320,"children":22321},{"style":113},[22322],{"type":50,"value":6111},{"type":44,"tag":100,"props":22324,"children":22325},{"style":390},[22326],{"type":50,"value":2591},{"type":44,"tag":100,"props":22328,"children":22329},{"style":113},[22330],{"type":50,"value":6677},{"type":44,"tag":100,"props":22332,"children":22333},{"style":400},[22334],{"type":50,"value":786},{"type":44,"tag":100,"props":22336,"children":22337},{"style":113},[22338],{"type":50,"value":6686},{"type":44,"tag":100,"props":22340,"children":22341},{"class":102,"line":6689},[22342,22346,22350,22354,22358,22362,22366,22370],{"type":44,"tag":100,"props":22343,"children":22344},{"style":390},[22345],{"type":50,"value":6607},{"type":44,"tag":100,"props":22347,"children":22348},{"style":113},[22349],{"type":50,"value":3135},{"type":44,"tag":100,"props":22351,"children":22352},{"style":400},[22353],{"type":50,"value":786},{"type":44,"tag":100,"props":22355,"children":22356},{"style":113},[22357],{"type":50,"value":5890},{"type":44,"tag":100,"props":22359,"children":22360},{"style":390},[22361],{"type":50,"value":2591},{"type":44,"tag":100,"props":22363,"children":22364},{"style":113},[22365],{"type":50,"value":6677},{"type":44,"tag":100,"props":22367,"children":22368},{"style":400},[22369],{"type":50,"value":786},{"type":44,"tag":100,"props":22371,"children":22372},{"style":113},[22373],{"type":50,"value":6078},{"type":44,"tag":100,"props":22375,"children":22376},{"class":102,"line":6725},[22377,22381,22385,22389,22393,22397,22401,22405,22409,22413],{"type":44,"tag":100,"props":22378,"children":22379},{"style":390},[22380],{"type":50,"value":814},{"type":44,"tag":100,"props":22382,"children":22383},{"style":113},[22384],{"type":50,"value":3135},{"type":44,"tag":100,"props":22386,"children":22387},{"style":400},[22388],{"type":50,"value":786},{"type":44,"tag":100,"props":22390,"children":22391},{"style":113},[22392],{"type":50,"value":6111},{"type":44,"tag":100,"props":22394,"children":22395},{"style":390},[22396],{"type":50,"value":6747},{"type":44,"tag":100,"props":22398,"children":22399},{"style":400},[22400],{"type":50,"value":750},{"type":44,"tag":100,"props":22402,"children":22403},{"style":113},[22404],{"type":50,"value":2925},{"type":44,"tag":100,"props":22406,"children":22407},{"style":400},[22408],{"type":50,"value":786},{"type":44,"tag":100,"props":22410,"children":22411},{"style":113},[22412],{"type":50,"value":6157},{"type":44,"tag":100,"props":22414,"children":22415},{"style":390},[22416],{"type":50,"value":6768},{"type":44,"tag":124,"props":22418,"children":22419},{"id":9348},[22420,22421],{"type":50,"value":9351},{"type":44,"tag":81,"props":22422,"children":22424},{"className":22423},[],[22425],{"type":50,"value":9357},{"type":44,"tag":53,"props":22427,"children":22428},{},[22429],{"type":50,"value":9362},{"type":44,"tag":53,"props":22431,"children":22432},{},[22433,22434,22442],{"type":50,"value":183},{"type":44,"tag":185,"props":22435,"children":22436},{},[22437],{"type":44,"tag":81,"props":22438,"children":22440},{"className":22439},[],[22441],{"type":50,"value":9375},{"type":50,"value":195},{"type":44,"tag":197,"props":22444,"children":22445},{":variants":199,"group":200},[22446,23658,24902],{"type":44,"tag":203,"props":22447,"children":22448},{"v-slot:clickhouse":7},[22449],{"type":44,"tag":90,"props":22450,"children":22451},{"className":208,"code":9385,"language":210,"meta":7,"style":7},[22452],{"type":44,"tag":81,"props":22453,"children":22454},{"__ignoreMap":7},[22455,22462,22469,22476,22483,22490,22497,22504,22511,22518,22525,22532,22539,22546,22553,22560,22567,22574,22581,22588,22607,22614,22645,22700,22755,22778,22801,22836,22863,22890,22897,22912,22919,22926,22949,22968,22987,23006,23017,23024,23039,23046,23053,23072,23091,23102,23109,23116,23139,23158,23177,23196,23215,23234,23253,23272,23291,23310,23397,23416,23491,23514,23557,23600,23643],{"type":44,"tag":100,"props":22456,"children":22457},{"class":102,"line":103},[22458],{"type":44,"tag":100,"props":22459,"children":22460},{"style":220},[22461],{"type":50,"value":223},{"type":44,"tag":100,"props":22463,"children":22464},{"class":102,"line":226},[22465],{"type":44,"tag":100,"props":22466,"children":22467},{"style":220},[22468],{"type":50,"value":9404},{"type":44,"tag":100,"props":22470,"children":22471},{"class":102,"line":235},[22472],{"type":44,"tag":100,"props":22473,"children":22474},{"style":220},[22475],{"type":50,"value":241},{"type":44,"tag":100,"props":22477,"children":22478},{"class":102,"line":24},[22479],{"type":44,"tag":100,"props":22480,"children":22481},{"style":220},[22482],{"type":50,"value":249},{"type":44,"tag":100,"props":22484,"children":22485},{"class":102,"line":252},[22486],{"type":44,"tag":100,"props":22487,"children":22488},{"style":220},[22489],{"type":50,"value":258},{"type":44,"tag":100,"props":22491,"children":22492},{"class":102,"line":261},[22493],{"type":44,"tag":100,"props":22494,"children":22495},{"style":220},[22496],{"type":50,"value":267},{"type":44,"tag":100,"props":22498,"children":22499},{"class":102,"line":270},[22500],{"type":44,"tag":100,"props":22501,"children":22502},{"style":220},[22503],{"type":50,"value":9440},{"type":44,"tag":100,"props":22505,"children":22506},{"class":102,"line":279},[22507],{"type":44,"tag":100,"props":22508,"children":22509},{"style":220},[22510],{"type":50,"value":2329},{"type":44,"tag":100,"props":22512,"children":22513},{"class":102,"line":288},[22514],{"type":44,"tag":100,"props":22515,"children":22516},{"style":220},[22517],{"type":50,"value":276},{"type":44,"tag":100,"props":22519,"children":22520},{"class":102,"line":297},[22521],{"type":44,"tag":100,"props":22522,"children":22523},{"style":220},[22524],{"type":50,"value":5466},{"type":44,"tag":100,"props":22526,"children":22527},{"class":102,"line":306},[22528],{"type":44,"tag":100,"props":22529,"children":22530},{"style":220},[22531],{"type":50,"value":5458},{"type":44,"tag":100,"props":22533,"children":22534},{"class":102,"line":315},[22535],{"type":44,"tag":100,"props":22536,"children":22537},{"style":220},[22538],{"type":50,"value":285},{"type":44,"tag":100,"props":22540,"children":22541},{"class":102,"line":324},[22542],{"type":44,"tag":100,"props":22543,"children":22544},{"style":220},[22545],{"type":50,"value":9483},{"type":44,"tag":100,"props":22547,"children":22548},{"class":102,"line":333},[22549],{"type":44,"tag":100,"props":22550,"children":22551},{"style":220},[22552],{"type":50,"value":303},{"type":44,"tag":100,"props":22554,"children":22555},{"class":102,"line":11},[22556],{"type":44,"tag":100,"props":22557,"children":22558},{"style":220},[22559],{"type":50,"value":312},{"type":44,"tag":100,"props":22561,"children":22562},{"class":102,"line":350},[22563],{"type":44,"tag":100,"props":22564,"children":22565},{"style":220},[22566],{"type":50,"value":321},{"type":44,"tag":100,"props":22568,"children":22569},{"class":102,"line":359},[22570],{"type":44,"tag":100,"props":22571,"children":22572},{"style":220},[22573],{"type":50,"value":330},{"type":44,"tag":100,"props":22575,"children":22576},{"class":102,"line":368},[22577],{"type":44,"tag":100,"props":22578,"children":22579},{"style":220},[22580],{"type":50,"value":374},{"type":44,"tag":100,"props":22582,"children":22583},{"class":102,"line":377},[22584],{"type":44,"tag":100,"props":22585,"children":22586},{"emptyLinePlaceholder":23},[22587],{"type":50,"value":383},{"type":44,"tag":100,"props":22589,"children":22590},{"class":102,"line":386},[22591,22595,22599,22603],{"type":44,"tag":100,"props":22592,"children":22593},{"style":390},[22594],{"type":50,"value":2387},{"type":44,"tag":100,"props":22596,"children":22597},{"style":400},[22598],{"type":50,"value":9537},{"type":44,"tag":100,"props":22600,"children":22601},{"style":390},[22602],{"type":50,"value":408},{"type":44,"tag":100,"props":22604,"children":22605},{"style":400},[22606],{"type":50,"value":2401},{"type":44,"tag":100,"props":22608,"children":22609},{"class":102,"line":396},[22610],{"type":44,"tag":100,"props":22611,"children":22612},{"style":390},[22613],{"type":50,"value":2409},{"type":44,"tag":100,"props":22615,"children":22616},{"class":102,"line":416},[22617,22621,22625,22629,22633,22637,22641],{"type":44,"tag":100,"props":22618,"children":22619},{"style":400},[22620],{"type":50,"value":9560},{"type":44,"tag":100,"props":22622,"children":22623},{"style":113},[22624],{"type":50,"value":2478},{"type":44,"tag":100,"props":22626,"children":22627},{"style":400},[22628],{"type":50,"value":786},{"type":44,"tag":100,"props":22630,"children":22631},{"style":113},[22632],{"type":50,"value":2487},{"type":44,"tag":100,"props":22634,"children":22635},{"style":400},[22636],{"type":50,"value":437},{"type":44,"tag":100,"props":22638,"children":22639},{"style":390},[22640],{"type":50,"value":408},{"type":44,"tag":100,"props":22642,"children":22643},{"style":400},[22644],{"type":50,"value":413},{"type":44,"tag":100,"props":22646,"children":22647},{"class":102,"line":449},[22648,22652,22656,22660,22664,22668,22672,22676,22680,22684,22688,22692,22696],{"type":44,"tag":100,"props":22649,"children":22650},{"style":400},[22651],{"type":50,"value":9592},{"type":44,"tag":100,"props":22653,"children":22654},{"style":113},[22655],{"type":50,"value":2444},{"type":44,"tag":100,"props":22657,"children":22658},{"style":400},[22659],{"type":50,"value":786},{"type":44,"tag":100,"props":22661,"children":22662},{"style":113},[22663],{"type":50,"value":2453},{"type":44,"tag":100,"props":22665,"children":22666},{"style":400},[22667],{"type":50,"value":437},{"type":44,"tag":100,"props":22669,"children":22670},{"style":390},[22671],{"type":50,"value":460},{"type":44,"tag":100,"props":22673,"children":22674},{"style":400},[22675],{"type":50,"value":5990},{"type":44,"tag":100,"props":22677,"children":22678},{"style":113},[22679],{"type":50,"value":2478},{"type":44,"tag":100,"props":22681,"children":22682},{"style":400},[22683],{"type":50,"value":786},{"type":44,"tag":100,"props":22685,"children":22686},{"style":113},[22687],{"type":50,"value":2487},{"type":44,"tag":100,"props":22689,"children":22690},{"style":400},[22691],{"type":50,"value":9633},{"type":44,"tag":100,"props":22693,"children":22694},{"style":390},[22695],{"type":50,"value":408},{"type":44,"tag":100,"props":22697,"children":22698},{"style":400},[22699],{"type":50,"value":9642},{"type":44,"tag":100,"props":22701,"children":22702},{"class":102,"line":481},[22703,22707,22711,22715,22719,22723,22727,22731,22735,22739,22743,22747,22751],{"type":44,"tag":100,"props":22704,"children":22705},{"style":400},[22706],{"type":50,"value":9592},{"type":44,"tag":100,"props":22708,"children":22709},{"style":113},[22710],{"type":50,"value":2444},{"type":44,"tag":100,"props":22712,"children":22713},{"style":400},[22714],{"type":50,"value":786},{"type":44,"tag":100,"props":22716,"children":22717},{"style":113},[22718],{"type":50,"value":2453},{"type":44,"tag":100,"props":22720,"children":22721},{"style":400},[22722],{"type":50,"value":437},{"type":44,"tag":100,"props":22724,"children":22725},{"style":390},[22726],{"type":50,"value":9670},{"type":44,"tag":100,"props":22728,"children":22729},{"style":400},[22730],{"type":50,"value":5990},{"type":44,"tag":100,"props":22732,"children":22733},{"style":113},[22734],{"type":50,"value":2478},{"type":44,"tag":100,"props":22736,"children":22737},{"style":400},[22738],{"type":50,"value":786},{"type":44,"tag":100,"props":22740,"children":22741},{"style":113},[22742],{"type":50,"value":2487},{"type":44,"tag":100,"props":22744,"children":22745},{"style":400},[22746],{"type":50,"value":9633},{"type":44,"tag":100,"props":22748,"children":22749},{"style":390},[22750],{"type":50,"value":408},{"type":44,"tag":100,"props":22752,"children":22753},{"style":400},[22754],{"type":50,"value":9699},{"type":44,"tag":100,"props":22756,"children":22757},{"class":102,"line":508},[22758,22762,22766,22770,22774],{"type":44,"tag":100,"props":22759,"children":22760},{"style":390},[22761],{"type":50,"value":2524},{"type":44,"tag":100,"props":22763,"children":22764},{"style":113},[22765],{"type":50,"value":781},{"type":44,"tag":100,"props":22767,"children":22768},{"style":400},[22769],{"type":50,"value":786},{"type":44,"tag":100,"props":22771,"children":22772},{"style":113},[22773],{"type":50,"value":1408},{"type":44,"tag":100,"props":22775,"children":22776},{"style":400},[22777],{"type":50,"value":1413},{"type":44,"tag":100,"props":22779,"children":22780},{"class":102,"line":531},[22781,22785,22789,22793,22797],{"type":44,"tag":100,"props":22782,"children":22783},{"style":390},[22784],{"type":50,"value":9730},{"type":44,"tag":100,"props":22786,"children":22787},{"style":113},[22788],{"type":50,"value":781},{"type":44,"tag":100,"props":22790,"children":22791},{"style":400},[22792],{"type":50,"value":786},{"type":44,"tag":100,"props":22794,"children":22795},{"style":113},[22796],{"type":50,"value":2561},{"type":44,"tag":100,"props":22798,"children":22799},{"style":400},[22800],{"type":50,"value":2566},{"type":44,"tag":100,"props":22802,"children":22803},{"class":102,"line":604},[22804,22808,22812,22816,22820,22824,22828,22832],{"type":44,"tag":100,"props":22805,"children":22806},{"style":390},[22807],{"type":50,"value":2574},{"type":44,"tag":100,"props":22809,"children":22810},{"style":113},[22811],{"type":50,"value":1426},{"type":44,"tag":100,"props":22813,"children":22814},{"style":400},[22815],{"type":50,"value":786},{"type":44,"tag":100,"props":22817,"children":22818},{"style":113},[22819],{"type":50,"value":2426},{"type":44,"tag":100,"props":22821,"children":22822},{"style":390},[22823],{"type":50,"value":2591},{"type":44,"tag":100,"props":22825,"children":22826},{"style":113},[22827],{"type":50,"value":2596},{"type":44,"tag":100,"props":22829,"children":22830},{"style":400},[22831],{"type":50,"value":786},{"type":44,"tag":100,"props":22833,"children":22834},{"style":113},[22835],{"type":50,"value":2605},{"type":44,"tag":100,"props":22837,"children":22838},{"class":102,"line":626},[22839,22843,22847,22851,22855,22859],{"type":44,"tag":100,"props":22840,"children":22841},{"style":390},[22842],{"type":50,"value":2613},{"type":44,"tag":100,"props":22844,"children":22845},{"style":113},[22846],{"type":50,"value":1426},{"type":44,"tag":100,"props":22848,"children":22849},{"style":400},[22850],{"type":50,"value":786},{"type":44,"tag":100,"props":22852,"children":22853},{"style":113},[22854],{"type":50,"value":2626},{"type":44,"tag":100,"props":22856,"children":22857},{"style":390},[22858],{"type":50,"value":2591},{"type":44,"tag":100,"props":22860,"children":22861},{"style":119},[22862],{"type":50,"value":2635},{"type":44,"tag":100,"props":22864,"children":22865},{"class":102,"line":648},[22866,22870,22874,22878,22882,22886],{"type":44,"tag":100,"props":22867,"children":22868},{"style":390},[22869],{"type":50,"value":2725},{"type":44,"tag":100,"props":22871,"children":22872},{"style":400},[22873],{"type":50,"value":5990},{"type":44,"tag":100,"props":22875,"children":22876},{"style":113},[22877],{"type":50,"value":2478},{"type":44,"tag":100,"props":22879,"children":22880},{"style":400},[22881],{"type":50,"value":786},{"type":44,"tag":100,"props":22883,"children":22884},{"style":113},[22885],{"type":50,"value":2487},{"type":44,"tag":100,"props":22887,"children":22888},{"style":400},[22889],{"type":50,"value":1464},{"type":44,"tag":100,"props":22891,"children":22892},{"class":102,"line":705},[22893],{"type":44,"tag":100,"props":22894,"children":22895},{"style":400},[22896],{"type":50,"value":2643},{"type":44,"tag":100,"props":22898,"children":22899},{"class":102,"line":770},[22900,22904,22908],{"type":44,"tag":100,"props":22901,"children":22902},{"style":400},[22903],{"type":50,"value":9850},{"type":44,"tag":100,"props":22905,"children":22906},{"style":390},[22907],{"type":50,"value":408},{"type":44,"tag":100,"props":22909,"children":22910},{"style":400},[22911],{"type":50,"value":2401},{"type":44,"tag":100,"props":22913,"children":22914},{"class":102,"line":794},[22915],{"type":44,"tag":100,"props":22916,"children":22917},{"style":390},[22918],{"type":50,"value":2409},{"type":44,"tag":100,"props":22920,"children":22921},{"class":102,"line":808},[22922],{"type":44,"tag":100,"props":22923,"children":22924},{"style":400},[22925],{"type":50,"value":5721},{"type":44,"tag":100,"props":22927,"children":22928},{"class":102,"line":1484},[22929,22933,22937,22941,22945],{"type":44,"tag":100,"props":22930,"children":22931},{"style":113},[22932],{"type":50,"value":5574},{"type":44,"tag":100,"props":22934,"children":22935},{"style":400},[22936],{"type":50,"value":5740},{"type":44,"tag":100,"props":22938,"children":22939},{"style":390},[22940],{"type":50,"value":408},{"type":44,"tag":100,"props":22942,"children":22943},{"style":390},[22944],{"type":50,"value":5749},{"type":44,"tag":100,"props":22946,"children":22947},{"style":400},[22948],{"type":50,"value":2431},{"type":44,"tag":100,"props":22950,"children":22951},{"class":102,"line":2747},[22952,22956,22960,22964],{"type":44,"tag":100,"props":22953,"children":22954},{"style":113},[22955],{"type":50,"value":5574},{"type":44,"tag":100,"props":22957,"children":22958},{"style":400},[22959],{"type":50,"value":5765},{"type":44,"tag":100,"props":22961,"children":22962},{"style":390},[22963],{"type":50,"value":408},{"type":44,"tag":100,"props":22965,"children":22966},{"style":400},[22967],{"type":50,"value":9915},{"type":44,"tag":100,"props":22969,"children":22970},{"class":102,"line":2769},[22971,22975,22979,22983],{"type":44,"tag":100,"props":22972,"children":22973},{"style":113},[22974],{"type":50,"value":5574},{"type":44,"tag":100,"props":22976,"children":22977},{"style":400},[22978],{"type":50,"value":5786},{"type":44,"tag":100,"props":22980,"children":22981},{"style":390},[22982],{"type":50,"value":408},{"type":44,"tag":100,"props":22984,"children":22985},{"style":400},[22986],{"type":50,"value":5795},{"type":44,"tag":100,"props":22988,"children":22989},{"class":102,"line":2791},[22990,22994,22998,23002],{"type":44,"tag":100,"props":22991,"children":22992},{"style":390},[22993],{"type":50,"value":2524},{"type":44,"tag":100,"props":22995,"children":22996},{"style":113},[22997],{"type":50,"value":781},{"type":44,"tag":100,"props":22999,"children":23000},{"style":400},[23001],{"type":50,"value":786},{"type":44,"tag":100,"props":23003,"children":23004},{"style":113},[23005],{"type":50,"value":5815},{"type":44,"tag":100,"props":23007,"children":23008},{"class":102,"line":2856},[23009,23013],{"type":44,"tag":100,"props":23010,"children":23011},{"style":390},[23012],{"type":50,"value":2725},{"type":44,"tag":100,"props":23014,"children":23015},{"style":400},[23016],{"type":50,"value":9965},{"type":44,"tag":100,"props":23018,"children":23019},{"class":102,"line":2898},[23020],{"type":44,"tag":100,"props":23021,"children":23022},{"style":400},[23023],{"type":50,"value":2643},{"type":44,"tag":100,"props":23025,"children":23026},{"class":102,"line":2977},[23027,23031,23035],{"type":44,"tag":100,"props":23028,"children":23029},{"style":400},[23030],{"type":50,"value":9980},{"type":44,"tag":100,"props":23032,"children":23033},{"style":390},[23034],{"type":50,"value":408},{"type":44,"tag":100,"props":23036,"children":23037},{"style":400},[23038],{"type":50,"value":2401},{"type":44,"tag":100,"props":23040,"children":23041},{"class":102,"line":3015},[23042],{"type":44,"tag":100,"props":23043,"children":23044},{"style":390},[23045],{"type":50,"value":2409},{"type":44,"tag":100,"props":23047,"children":23048},{"class":102,"line":3081},[23049],{"type":44,"tag":100,"props":23050,"children":23051},{"style":400},[23052],{"type":50,"value":5558},{"type":44,"tag":100,"props":23054,"children":23055},{"class":102,"line":3094},[23056,23060,23064,23068],{"type":44,"tag":100,"props":23057,"children":23058},{"style":113},[23059],{"type":50,"value":5574},{"type":44,"tag":100,"props":23061,"children":23062},{"style":400},[23063],{"type":50,"value":5579},{"type":44,"tag":100,"props":23065,"children":23066},{"style":390},[23067],{"type":50,"value":408},{"type":44,"tag":100,"props":23069,"children":23070},{"style":400},[23071],{"type":50,"value":10022},{"type":44,"tag":100,"props":23073,"children":23074},{"class":102,"line":3108},[23075,23079,23083,23087],{"type":44,"tag":100,"props":23076,"children":23077},{"style":390},[23078],{"type":50,"value":2524},{"type":44,"tag":100,"props":23080,"children":23081},{"style":113},[23082],{"type":50,"value":781},{"type":44,"tag":100,"props":23084,"children":23085},{"style":400},[23086],{"type":50,"value":786},{"type":44,"tag":100,"props":23088,"children":23089},{"style":113},[23090],{"type":50,"value":5671},{"type":44,"tag":100,"props":23092,"children":23093},{"class":102,"line":3147},[23094,23098],{"type":44,"tag":100,"props":23095,"children":23096},{"style":390},[23097],{"type":50,"value":2725},{"type":44,"tag":100,"props":23099,"children":23100},{"style":400},[23101],{"type":50,"value":10053},{"type":44,"tag":100,"props":23103,"children":23104},{"class":102,"line":3188},[23105],{"type":44,"tag":100,"props":23106,"children":23107},{"style":400},[23108],{"type":50,"value":1464},{"type":44,"tag":100,"props":23110,"children":23111},{"class":102,"line":6054},[23112],{"type":44,"tag":100,"props":23113,"children":23114},{"style":390},[23115],{"type":50,"value":393},{"type":44,"tag":100,"props":23117,"children":23118},{"class":102,"line":6081},[23119,23123,23127,23131,23135],{"type":44,"tag":100,"props":23120,"children":23121},{"style":113},[23122],{"type":50,"value":10075},{"type":44,"tag":100,"props":23124,"children":23125},{"style":400},[23126],{"type":50,"value":786},{"type":44,"tag":100,"props":23128,"children":23129},{"style":113},[23130],{"type":50,"value":2487},{"type":44,"tag":100,"props":23132,"children":23133},{"style":390},[23134],{"type":50,"value":1661},{"type":44,"tag":100,"props":23136,"children":23137},{"style":400},[23138],{"type":50,"value":10092},{"type":44,"tag":100,"props":23140,"children":23141},{"class":102,"line":6089},[23142,23146,23150,23154],{"type":44,"tag":100,"props":23143,"children":23144},{"style":113},[23145],{"type":50,"value":10075},{"type":44,"tag":100,"props":23147,"children":23148},{"style":400},[23149],{"type":50,"value":786},{"type":44,"tag":100,"props":23151,"children":23152},{"style":113},[23153],{"type":50,"value":10108},{"type":44,"tag":100,"props":23155,"children":23156},{"style":400},[23157],{"type":50,"value":2431},{"type":44,"tag":100,"props":23159,"children":23160},{"class":102,"line":6097},[23161,23165,23169,23173],{"type":44,"tag":100,"props":23162,"children":23163},{"style":113},[23164],{"type":50,"value":10075},{"type":44,"tag":100,"props":23166,"children":23167},{"style":400},[23168],{"type":50,"value":786},{"type":44,"tag":100,"props":23170,"children":23171},{"style":113},[23172],{"type":50,"value":10128},{"type":44,"tag":100,"props":23174,"children":23175},{"style":400},[23176],{"type":50,"value":2431},{"type":44,"tag":100,"props":23178,"children":23179},{"class":102,"line":6123},[23180,23184,23188,23192],{"type":44,"tag":100,"props":23181,"children":23182},{"style":113},[23183],{"type":50,"value":10075},{"type":44,"tag":100,"props":23185,"children":23186},{"style":400},[23187],{"type":50,"value":786},{"type":44,"tag":100,"props":23189,"children":23190},{"style":113},[23191],{"type":50,"value":10148},{"type":44,"tag":100,"props":23193,"children":23194},{"style":400},[23195],{"type":50,"value":2431},{"type":44,"tag":100,"props":23197,"children":23198},{"class":102,"line":6143},[23199,23203,23207,23211],{"type":44,"tag":100,"props":23200,"children":23201},{"style":113},[23202],{"type":50,"value":10075},{"type":44,"tag":100,"props":23204,"children":23205},{"style":400},[23206],{"type":50,"value":786},{"type":44,"tag":100,"props":23208,"children":23209},{"style":113},[23210],{"type":50,"value":10168},{"type":44,"tag":100,"props":23212,"children":23213},{"style":400},[23214],{"type":50,"value":2431},{"type":44,"tag":100,"props":23216,"children":23217},{"class":102,"line":6164},[23218,23222,23226,23230],{"type":44,"tag":100,"props":23219,"children":23220},{"style":113},[23221],{"type":50,"value":10075},{"type":44,"tag":100,"props":23223,"children":23224},{"style":400},[23225],{"type":50,"value":786},{"type":44,"tag":100,"props":23227,"children":23228},{"style":113},[23229],{"type":50,"value":10188},{"type":44,"tag":100,"props":23231,"children":23232},{"style":400},[23233],{"type":50,"value":2431},{"type":44,"tag":100,"props":23235,"children":23236},{"class":102,"line":6185},[23237,23241,23245,23249],{"type":44,"tag":100,"props":23238,"children":23239},{"style":113},[23240],{"type":50,"value":10200},{"type":44,"tag":100,"props":23242,"children":23243},{"style":400},[23244],{"type":50,"value":786},{"type":44,"tag":100,"props":23246,"children":23247},{"style":113},[23248],{"type":50,"value":10209},{"type":44,"tag":100,"props":23250,"children":23251},{"style":400},[23252],{"type":50,"value":2431},{"type":44,"tag":100,"props":23254,"children":23255},{"class":102,"line":6206},[23256,23260,23264,23268],{"type":44,"tag":100,"props":23257,"children":23258},{"style":113},[23259],{"type":50,"value":10200},{"type":44,"tag":100,"props":23261,"children":23262},{"style":400},[23263],{"type":50,"value":786},{"type":44,"tag":100,"props":23265,"children":23266},{"style":113},[23267],{"type":50,"value":10229},{"type":44,"tag":100,"props":23269,"children":23270},{"style":400},[23271],{"type":50,"value":2431},{"type":44,"tag":100,"props":23273,"children":23274},{"class":102,"line":6227},[23275,23279,23283,23287],{"type":44,"tag":100,"props":23276,"children":23277},{"style":113},[23278],{"type":50,"value":10241},{"type":44,"tag":100,"props":23280,"children":23281},{"style":400},[23282],{"type":50,"value":786},{"type":44,"tag":100,"props":23284,"children":23285},{"style":113},[23286],{"type":50,"value":6242},{"type":44,"tag":100,"props":23288,"children":23289},{"style":400},[23290],{"type":50,"value":2431},{"type":44,"tag":100,"props":23292,"children":23293},{"class":102,"line":6249},[23294,23298,23302,23306],{"type":44,"tag":100,"props":23295,"children":23296},{"style":113},[23297],{"type":50,"value":10241},{"type":44,"tag":100,"props":23299,"children":23300},{"style":400},[23301],{"type":50,"value":786},{"type":44,"tag":100,"props":23303,"children":23304},{"style":113},[23305],{"type":50,"value":10269},{"type":44,"tag":100,"props":23307,"children":23308},{"style":400},[23309],{"type":50,"value":2431},{"type":44,"tag":100,"props":23311,"children":23312},{"class":102,"line":6270},[23313,23317,23321,23325,23329,23333,23337,23341,23345,23349,23353,23357,23361,23365,23369,23373,23377,23381,23385,23389,23393],{"type":44,"tag":100,"props":23314,"children":23315},{"style":113},[23316],{"type":50,"value":654},{"type":44,"tag":100,"props":23318,"children":23319},{"style":400},[23320],{"type":50,"value":427},{"type":44,"tag":100,"props":23322,"children":23323},{"style":113},[23324],{"type":50,"value":10289},{"type":44,"tag":100,"props":23326,"children":23327},{"style":400},[23328],{"type":50,"value":786},{"type":44,"tag":100,"props":23330,"children":23331},{"style":113},[23332],{"type":50,"value":10298},{"type":44,"tag":100,"props":23334,"children":23335},{"style":390},[23336],{"type":50,"value":6319},{"type":44,"tag":100,"props":23338,"children":23339},{"style":113},[23340],{"type":50,"value":669},{"type":44,"tag":100,"props":23342,"children":23343},{"style":400},[23344],{"type":50,"value":427},{"type":44,"tag":100,"props":23346,"children":23347},{"style":113},[23348],{"type":50,"value":10289},{"type":44,"tag":100,"props":23350,"children":23351},{"style":400},[23352],{"type":50,"value":786},{"type":44,"tag":100,"props":23354,"children":23355},{"style":113},[23356],{"type":50,"value":6242},{"type":44,"tag":100,"props":23358,"children":23359},{"style":400},[23360],{"type":50,"value":750},{"type":44,"tag":100,"props":23362,"children":23363},{"style":113},[23364],{"type":50,"value":679},{"type":44,"tag":100,"props":23366,"children":23367},{"style":400},[23368],{"type":50,"value":437},{"type":44,"tag":100,"props":23370,"children":23371},{"style":390},[23372],{"type":50,"value":432},{"type":44,"tag":100,"props":23374,"children":23375},{"style":113},[23376],{"type":50,"value":745},{"type":44,"tag":100,"props":23378,"children":23379},{"style":400},[23380],{"type":50,"value":750},{"type":44,"tag":100,"props":23382,"children":23383},{"style":113},[23384],{"type":50,"value":689},{"type":44,"tag":100,"props":23386,"children":23387},{"style":400},[23388],{"type":50,"value":437},{"type":44,"tag":100,"props":23390,"children":23391},{"style":390},[23392],{"type":50,"value":408},{"type":44,"tag":100,"props":23394,"children":23395},{"style":400},[23396],{"type":50,"value":10363},{"type":44,"tag":100,"props":23398,"children":23399},{"class":102,"line":6292},[23400,23404,23408,23412],{"type":44,"tag":100,"props":23401,"children":23402},{"style":113},[23403],{"type":50,"value":10371},{"type":44,"tag":100,"props":23405,"children":23406},{"style":400},[23407],{"type":50,"value":786},{"type":44,"tag":100,"props":23409,"children":23410},{"style":113},[23411],{"type":50,"value":10380},{"type":44,"tag":100,"props":23413,"children":23414},{"style":400},[23415],{"type":50,"value":2431},{"type":44,"tag":100,"props":23417,"children":23418},{"class":102,"line":6371},[23419,23423,23427,23431,23435,23439,23443,23447,23451,23455,23459,23463,23467,23471,23475,23479,23483,23487],{"type":44,"tag":100,"props":23420,"children":23421},{"style":113},[23422],{"type":50,"value":654},{"type":44,"tag":100,"props":23424,"children":23425},{"style":400},[23426],{"type":50,"value":427},{"type":44,"tag":100,"props":23428,"children":23429},{"style":113},[23430],{"type":50,"value":10400},{"type":44,"tag":100,"props":23432,"children":23433},{"style":400},[23434],{"type":50,"value":786},{"type":44,"tag":100,"props":23436,"children":23437},{"style":113},[23438],{"type":50,"value":10108},{"type":44,"tag":100,"props":23440,"children":23441},{"style":390},[23442],{"type":50,"value":6319},{"type":44,"tag":100,"props":23444,"children":23445},{"style":113},[23446],{"type":50,"value":669},{"type":44,"tag":100,"props":23448,"children":23449},{"style":400},[23450],{"type":50,"value":427},{"type":44,"tag":100,"props":23452,"children":23453},{"style":113},[23454],{"type":50,"value":10425},{"type":44,"tag":100,"props":23456,"children":23457},{"style":400},[23458],{"type":50,"value":786},{"type":44,"tag":100,"props":23460,"children":23461},{"style":113},[23462],{"type":50,"value":10380},{"type":44,"tag":100,"props":23464,"children":23465},{"style":400},[23466],{"type":50,"value":750},{"type":44,"tag":100,"props":23468,"children":23469},{"style":113},[23470],{"type":50,"value":679},{"type":44,"tag":100,"props":23472,"children":23473},{"style":400},[23474],{"type":50,"value":684},{"type":44,"tag":100,"props":23476,"children":23477},{"style":113},[23478],{"type":50,"value":689},{"type":44,"tag":100,"props":23480,"children":23481},{"style":400},[23482],{"type":50,"value":437},{"type":44,"tag":100,"props":23484,"children":23485},{"style":390},[23486],{"type":50,"value":408},{"type":44,"tag":100,"props":23488,"children":23489},{"style":400},[23490],{"type":50,"value":10462},{"type":44,"tag":100,"props":23492,"children":23493},{"class":102,"line":6448},[23494,23498,23502,23506,23510],{"type":44,"tag":100,"props":23495,"children":23496},{"style":390},[23497],{"type":50,"value":776},{"type":44,"tag":100,"props":23499,"children":23500},{"style":113},[23501],{"type":50,"value":10474},{"type":44,"tag":100,"props":23503,"children":23504},{"style":400},[23505],{"type":50,"value":786},{"type":44,"tag":100,"props":23507,"children":23508},{"style":113},[23509],{"type":50,"value":10483},{"type":44,"tag":100,"props":23511,"children":23512},{"style":400},[23513],{"type":50,"value":10488},{"type":44,"tag":100,"props":23515,"children":23516},{"class":102,"line":6537},[23517,23521,23525,23529,23533,23537,23541,23545,23549,23553],{"type":44,"tag":100,"props":23518,"children":23519},{"style":390},[23520],{"type":50,"value":6556},{"type":44,"tag":100,"props":23522,"children":23523},{"style":400},[23524],{"type":50,"value":10500},{"type":44,"tag":100,"props":23526,"children":23527},{"style":390},[23528],{"type":50,"value":10505},{"type":44,"tag":100,"props":23530,"children":23531},{"style":113},[23532],{"type":50,"value":10510},{"type":44,"tag":100,"props":23534,"children":23535},{"style":400},[23536],{"type":50,"value":786},{"type":44,"tag":100,"props":23538,"children":23539},{"style":113},[23540],{"type":50,"value":2487},{"type":44,"tag":100,"props":23542,"children":23543},{"style":390},[23544],{"type":50,"value":2591},{"type":44,"tag":100,"props":23546,"children":23547},{"style":113},[23548],{"type":50,"value":10527},{"type":44,"tag":100,"props":23550,"children":23551},{"style":400},[23552],{"type":50,"value":786},{"type":44,"tag":100,"props":23554,"children":23555},{"style":113},[23556],{"type":50,"value":6686},{"type":44,"tag":100,"props":23558,"children":23559},{"class":102,"line":6550},[23560,23564,23568,23572,23576,23580,23584,23588,23592,23596],{"type":44,"tag":100,"props":23561,"children":23562},{"style":390},[23563],{"type":50,"value":6556},{"type":44,"tag":100,"props":23565,"children":23566},{"style":400},[23567],{"type":50,"value":10547},{"type":44,"tag":100,"props":23569,"children":23570},{"style":390},[23571],{"type":50,"value":10505},{"type":44,"tag":100,"props":23573,"children":23574},{"style":113},[23575],{"type":50,"value":10510},{"type":44,"tag":100,"props":23577,"children":23578},{"style":400},[23579],{"type":50,"value":786},{"type":44,"tag":100,"props":23581,"children":23582},{"style":113},[23583],{"type":50,"value":2487},{"type":44,"tag":100,"props":23585,"children":23586},{"style":390},[23587],{"type":50,"value":2591},{"type":44,"tag":100,"props":23589,"children":23590},{"style":113},[23591],{"type":50,"value":10572},{"type":44,"tag":100,"props":23593,"children":23594},{"style":400},[23595],{"type":50,"value":786},{"type":44,"tag":100,"props":23597,"children":23598},{"style":113},[23599],{"type":50,"value":6024},{"type":44,"tag":100,"props":23601,"children":23602},{"class":102,"line":6564},[23603,23607,23611,23615,23619,23623,23627,23631,23635,23639],{"type":44,"tag":100,"props":23604,"children":23605},{"style":390},[23606],{"type":50,"value":6556},{"type":44,"tag":100,"props":23608,"children":23609},{"style":400},[23610],{"type":50,"value":10592},{"type":44,"tag":100,"props":23612,"children":23613},{"style":390},[23614],{"type":50,"value":10505},{"type":44,"tag":100,"props":23616,"children":23617},{"style":113},[23618],{"type":50,"value":10510},{"type":44,"tag":100,"props":23620,"children":23621},{"style":400},[23622],{"type":50,"value":786},{"type":44,"tag":100,"props":23624,"children":23625},{"style":113},[23626],{"type":50,"value":2487},{"type":44,"tag":100,"props":23628,"children":23629},{"style":390},[23630],{"type":50,"value":2591},{"type":44,"tag":100,"props":23632,"children":23633},{"style":113},[23634],{"type":50,"value":10617},{"type":44,"tag":100,"props":23636,"children":23637},{"style":400},[23638],{"type":50,"value":786},{"type":44,"tag":100,"props":23640,"children":23641},{"style":113},[23642],{"type":50,"value":10626},{"type":44,"tag":100,"props":23644,"children":23645},{"class":102,"line":6601},[23646,23650,23654],{"type":44,"tag":100,"props":23647,"children":23648},{"style":390},[23649],{"type":50,"value":814},{"type":44,"tag":100,"props":23651,"children":23652},{"style":400},[23653],{"type":50,"value":10638},{"type":44,"tag":100,"props":23655,"children":23656},{"style":390},[23657],{"type":50,"value":10643},{"type":44,"tag":203,"props":23659,"children":23660},{"v-slot:bigquery":7},[23661],{"type":44,"tag":90,"props":23662,"children":23663},{"className":208,"code":10649,"language":210,"meta":7,"style":7},[23664],{"type":44,"tag":81,"props":23665,"children":23666},{"__ignoreMap":7},[23667,23674,23681,23688,23695,23702,23709,23716,23723,23730,23737,23744,23751,23758,23765,23772,23779,23786,23793,23800,23819,23826,23861,23928,23995,24018,24041,24076,24103,24134,24141,24156,24163,24170,24193,24212,24231,24250,24261,24268,24283,24290,24297,24316,24335,24346,24353,24360,24383,24402,24421,24440,24459,24478,24497,24516,24535,24554,24641,24660,24735,24758,24801,24844,24887],{"type":44,"tag":100,"props":23668,"children":23669},{"class":102,"line":103},[23670],{"type":44,"tag":100,"props":23671,"children":23672},{"style":220},[23673],{"type":50,"value":223},{"type":44,"tag":100,"props":23675,"children":23676},{"class":102,"line":226},[23677],{"type":44,"tag":100,"props":23678,"children":23679},{"style":220},[23680],{"type":50,"value":9404},{"type":44,"tag":100,"props":23682,"children":23683},{"class":102,"line":235},[23684],{"type":44,"tag":100,"props":23685,"children":23686},{"style":220},[23687],{"type":50,"value":241},{"type":44,"tag":100,"props":23689,"children":23690},{"class":102,"line":24},[23691],{"type":44,"tag":100,"props":23692,"children":23693},{"style":220},[23694],{"type":50,"value":249},{"type":44,"tag":100,"props":23696,"children":23697},{"class":102,"line":252},[23698],{"type":44,"tag":100,"props":23699,"children":23700},{"style":220},[23701],{"type":50,"value":258},{"type":44,"tag":100,"props":23703,"children":23704},{"class":102,"line":261},[23705],{"type":44,"tag":100,"props":23706,"children":23707},{"style":220},[23708],{"type":50,"value":267},{"type":44,"tag":100,"props":23710,"children":23711},{"class":102,"line":270},[23712],{"type":44,"tag":100,"props":23713,"children":23714},{"style":220},[23715],{"type":50,"value":9440},{"type":44,"tag":100,"props":23717,"children":23718},{"class":102,"line":279},[23719],{"type":44,"tag":100,"props":23720,"children":23721},{"style":220},[23722],{"type":50,"value":2329},{"type":44,"tag":100,"props":23724,"children":23725},{"class":102,"line":288},[23726],{"type":44,"tag":100,"props":23727,"children":23728},{"style":220},[23729],{"type":50,"value":276},{"type":44,"tag":100,"props":23731,"children":23732},{"class":102,"line":297},[23733],{"type":44,"tag":100,"props":23734,"children":23735},{"style":220},[23736],{"type":50,"value":5466},{"type":44,"tag":100,"props":23738,"children":23739},{"class":102,"line":306},[23740],{"type":44,"tag":100,"props":23741,"children":23742},{"style":220},[23743],{"type":50,"value":5458},{"type":44,"tag":100,"props":23745,"children":23746},{"class":102,"line":315},[23747],{"type":44,"tag":100,"props":23748,"children":23749},{"style":220},[23750],{"type":50,"value":285},{"type":44,"tag":100,"props":23752,"children":23753},{"class":102,"line":324},[23754],{"type":44,"tag":100,"props":23755,"children":23756},{"style":220},[23757],{"type":50,"value":9483},{"type":44,"tag":100,"props":23759,"children":23760},{"class":102,"line":333},[23761],{"type":44,"tag":100,"props":23762,"children":23763},{"style":220},[23764],{"type":50,"value":303},{"type":44,"tag":100,"props":23766,"children":23767},{"class":102,"line":11},[23768],{"type":44,"tag":100,"props":23769,"children":23770},{"style":220},[23771],{"type":50,"value":312},{"type":44,"tag":100,"props":23773,"children":23774},{"class":102,"line":350},[23775],{"type":44,"tag":100,"props":23776,"children":23777},{"style":220},[23778],{"type":50,"value":321},{"type":44,"tag":100,"props":23780,"children":23781},{"class":102,"line":359},[23782],{"type":44,"tag":100,"props":23783,"children":23784},{"style":220},[23785],{"type":50,"value":330},{"type":44,"tag":100,"props":23787,"children":23788},{"class":102,"line":368},[23789],{"type":44,"tag":100,"props":23790,"children":23791},{"style":220},[23792],{"type":50,"value":374},{"type":44,"tag":100,"props":23794,"children":23795},{"class":102,"line":377},[23796],{"type":44,"tag":100,"props":23797,"children":23798},{"emptyLinePlaceholder":23},[23799],{"type":50,"value":383},{"type":44,"tag":100,"props":23801,"children":23802},{"class":102,"line":386},[23803,23807,23811,23815],{"type":44,"tag":100,"props":23804,"children":23805},{"style":390},[23806],{"type":50,"value":2387},{"type":44,"tag":100,"props":23808,"children":23809},{"style":400},[23810],{"type":50,"value":9537},{"type":44,"tag":100,"props":23812,"children":23813},{"style":390},[23814],{"type":50,"value":408},{"type":44,"tag":100,"props":23816,"children":23817},{"style":400},[23818],{"type":50,"value":2401},{"type":44,"tag":100,"props":23820,"children":23821},{"class":102,"line":396},[23822],{"type":44,"tag":100,"props":23823,"children":23824},{"style":390},[23825],{"type":50,"value":2409},{"type":44,"tag":100,"props":23827,"children":23828},{"class":102,"line":416},[23829,23833,23837,23841,23845,23849,23853,23857],{"type":44,"tag":100,"props":23830,"children":23831},{"style":390},[23832],{"type":50,"value":7207},{"type":44,"tag":100,"props":23834,"children":23835},{"style":400},[23836],{"type":50,"value":427},{"type":44,"tag":100,"props":23838,"children":23839},{"style":113},[23840],{"type":50,"value":2478},{"type":44,"tag":100,"props":23842,"children":23843},{"style":400},[23844],{"type":50,"value":786},{"type":44,"tag":100,"props":23846,"children":23847},{"style":113},[23848],{"type":50,"value":2487},{"type":44,"tag":100,"props":23850,"children":23851},{"style":400},[23852],{"type":50,"value":437},{"type":44,"tag":100,"props":23854,"children":23855},{"style":390},[23856],{"type":50,"value":408},{"type":44,"tag":100,"props":23858,"children":23859},{"style":400},[23860],{"type":50,"value":413},{"type":44,"tag":100,"props":23862,"children":23863},{"class":102,"line":449},[23864,23868,23872,23876,23880,23884,23888,23892,23896,23900,23904,23908,23912,23916,23920,23924],{"type":44,"tag":100,"props":23865,"children":23866},{"style":400},[23867],{"type":50,"value":10855},{"type":44,"tag":100,"props":23869,"children":23870},{"style":390},[23871],{"type":50,"value":1656},{"type":44,"tag":100,"props":23873,"children":23874},{"style":400},[23875],{"type":50,"value":427},{"type":44,"tag":100,"props":23877,"children":23878},{"style":113},[23879],{"type":50,"value":2444},{"type":44,"tag":100,"props":23881,"children":23882},{"style":400},[23883],{"type":50,"value":786},{"type":44,"tag":100,"props":23885,"children":23886},{"style":113},[23887],{"type":50,"value":2453},{"type":44,"tag":100,"props":23889,"children":23890},{"style":400},[23891],{"type":50,"value":437},{"type":44,"tag":100,"props":23893,"children":23894},{"style":390},[23895],{"type":50,"value":460},{"type":44,"tag":100,"props":23897,"children":23898},{"style":390},[23899],{"type":50,"value":1476},{"type":44,"tag":100,"props":23901,"children":23902},{"style":400},[23903],{"type":50,"value":427},{"type":44,"tag":100,"props":23905,"children":23906},{"style":113},[23907],{"type":50,"value":2478},{"type":44,"tag":100,"props":23909,"children":23910},{"style":400},[23911],{"type":50,"value":786},{"type":44,"tag":100,"props":23913,"children":23914},{"style":113},[23915],{"type":50,"value":2487},{"type":44,"tag":100,"props":23917,"children":23918},{"style":400},[23919],{"type":50,"value":9633},{"type":44,"tag":100,"props":23921,"children":23922},{"style":390},[23923],{"type":50,"value":408},{"type":44,"tag":100,"props":23925,"children":23926},{"style":400},[23927],{"type":50,"value":9642},{"type":44,"tag":100,"props":23929,"children":23930},{"class":102,"line":481},[23931,23935,23939,23943,23947,23951,23955,23959,23963,23967,23971,23975,23979,23983,23987,23991],{"type":44,"tag":100,"props":23932,"children":23933},{"style":400},[23934],{"type":50,"value":10855},{"type":44,"tag":100,"props":23936,"children":23937},{"style":390},[23938],{"type":50,"value":1656},{"type":44,"tag":100,"props":23940,"children":23941},{"style":400},[23942],{"type":50,"value":427},{"type":44,"tag":100,"props":23944,"children":23945},{"style":113},[23946],{"type":50,"value":2444},{"type":44,"tag":100,"props":23948,"children":23949},{"style":400},[23950],{"type":50,"value":786},{"type":44,"tag":100,"props":23952,"children":23953},{"style":113},[23954],{"type":50,"value":2453},{"type":44,"tag":100,"props":23956,"children":23957},{"style":400},[23958],{"type":50,"value":437},{"type":44,"tag":100,"props":23960,"children":23961},{"style":390},[23962],{"type":50,"value":9670},{"type":44,"tag":100,"props":23964,"children":23965},{"style":390},[23966],{"type":50,"value":1476},{"type":44,"tag":100,"props":23968,"children":23969},{"style":400},[23970],{"type":50,"value":427},{"type":44,"tag":100,"props":23972,"children":23973},{"style":113},[23974],{"type":50,"value":2478},{"type":44,"tag":100,"props":23976,"children":23977},{"style":400},[23978],{"type":50,"value":786},{"type":44,"tag":100,"props":23980,"children":23981},{"style":113},[23982],{"type":50,"value":2487},{"type":44,"tag":100,"props":23984,"children":23985},{"style":400},[23986],{"type":50,"value":9633},{"type":44,"tag":100,"props":23988,"children":23989},{"style":390},[23990],{"type":50,"value":408},{"type":44,"tag":100,"props":23992,"children":23993},{"style":400},[23994],{"type":50,"value":9699},{"type":44,"tag":100,"props":23996,"children":23997},{"class":102,"line":508},[23998,24002,24006,24010,24014],{"type":44,"tag":100,"props":23999,"children":24000},{"style":390},[24001],{"type":50,"value":2524},{"type":44,"tag":100,"props":24003,"children":24004},{"style":113},[24005],{"type":50,"value":781},{"type":44,"tag":100,"props":24007,"children":24008},{"style":400},[24009],{"type":50,"value":786},{"type":44,"tag":100,"props":24011,"children":24012},{"style":113},[24013],{"type":50,"value":1408},{"type":44,"tag":100,"props":24015,"children":24016},{"style":400},[24017],{"type":50,"value":1413},{"type":44,"tag":100,"props":24019,"children":24020},{"class":102,"line":531},[24021,24025,24029,24033,24037],{"type":44,"tag":100,"props":24022,"children":24023},{"style":390},[24024],{"type":50,"value":9730},{"type":44,"tag":100,"props":24026,"children":24027},{"style":113},[24028],{"type":50,"value":781},{"type":44,"tag":100,"props":24030,"children":24031},{"style":400},[24032],{"type":50,"value":786},{"type":44,"tag":100,"props":24034,"children":24035},{"style":113},[24036],{"type":50,"value":2561},{"type":44,"tag":100,"props":24038,"children":24039},{"style":400},[24040],{"type":50,"value":2566},{"type":44,"tag":100,"props":24042,"children":24043},{"class":102,"line":604},[24044,24048,24052,24056,24060,24064,24068,24072],{"type":44,"tag":100,"props":24045,"children":24046},{"style":390},[24047],{"type":50,"value":2574},{"type":44,"tag":100,"props":24049,"children":24050},{"style":113},[24051],{"type":50,"value":1426},{"type":44,"tag":100,"props":24053,"children":24054},{"style":400},[24055],{"type":50,"value":786},{"type":44,"tag":100,"props":24057,"children":24058},{"style":113},[24059],{"type":50,"value":2426},{"type":44,"tag":100,"props":24061,"children":24062},{"style":390},[24063],{"type":50,"value":2591},{"type":44,"tag":100,"props":24065,"children":24066},{"style":113},[24067],{"type":50,"value":2596},{"type":44,"tag":100,"props":24069,"children":24070},{"style":400},[24071],{"type":50,"value":786},{"type":44,"tag":100,"props":24073,"children":24074},{"style":113},[24075],{"type":50,"value":2605},{"type":44,"tag":100,"props":24077,"children":24078},{"class":102,"line":626},[24079,24083,24087,24091,24095,24099],{"type":44,"tag":100,"props":24080,"children":24081},{"style":390},[24082],{"type":50,"value":2613},{"type":44,"tag":100,"props":24084,"children":24085},{"style":113},[24086],{"type":50,"value":1426},{"type":44,"tag":100,"props":24088,"children":24089},{"style":400},[24090],{"type":50,"value":786},{"type":44,"tag":100,"props":24092,"children":24093},{"style":113},[24094],{"type":50,"value":2626},{"type":44,"tag":100,"props":24096,"children":24097},{"style":390},[24098],{"type":50,"value":2591},{"type":44,"tag":100,"props":24100,"children":24101},{"style":119},[24102],{"type":50,"value":2635},{"type":44,"tag":100,"props":24104,"children":24105},{"class":102,"line":648},[24106,24110,24114,24118,24122,24126,24130],{"type":44,"tag":100,"props":24107,"children":24108},{"style":390},[24109],{"type":50,"value":2725},{"type":44,"tag":100,"props":24111,"children":24112},{"style":390},[24113],{"type":50,"value":1476},{"type":44,"tag":100,"props":24115,"children":24116},{"style":400},[24117],{"type":50,"value":427},{"type":44,"tag":100,"props":24119,"children":24120},{"style":113},[24121],{"type":50,"value":2478},{"type":44,"tag":100,"props":24123,"children":24124},{"style":400},[24125],{"type":50,"value":786},{"type":44,"tag":100,"props":24127,"children":24128},{"style":113},[24129],{"type":50,"value":2487},{"type":44,"tag":100,"props":24131,"children":24132},{"style":400},[24133],{"type":50,"value":1464},{"type":44,"tag":100,"props":24135,"children":24136},{"class":102,"line":705},[24137],{"type":44,"tag":100,"props":24138,"children":24139},{"style":400},[24140],{"type":50,"value":2643},{"type":44,"tag":100,"props":24142,"children":24143},{"class":102,"line":770},[24144,24148,24152],{"type":44,"tag":100,"props":24145,"children":24146},{"style":400},[24147],{"type":50,"value":9850},{"type":44,"tag":100,"props":24149,"children":24150},{"style":390},[24151],{"type":50,"value":408},{"type":44,"tag":100,"props":24153,"children":24154},{"style":400},[24155],{"type":50,"value":2401},{"type":44,"tag":100,"props":24157,"children":24158},{"class":102,"line":794},[24159],{"type":44,"tag":100,"props":24160,"children":24161},{"style":390},[24162],{"type":50,"value":2409},{"type":44,"tag":100,"props":24164,"children":24165},{"class":102,"line":808},[24166],{"type":44,"tag":100,"props":24167,"children":24168},{"style":400},[24169],{"type":50,"value":5721},{"type":44,"tag":100,"props":24171,"children":24172},{"class":102,"line":1484},[24173,24177,24181,24185,24189],{"type":44,"tag":100,"props":24174,"children":24175},{"style":113},[24176],{"type":50,"value":5574},{"type":44,"tag":100,"props":24178,"children":24179},{"style":400},[24180],{"type":50,"value":5740},{"type":44,"tag":100,"props":24182,"children":24183},{"style":390},[24184],{"type":50,"value":408},{"type":44,"tag":100,"props":24186,"children":24187},{"style":390},[24188],{"type":50,"value":5749},{"type":44,"tag":100,"props":24190,"children":24191},{"style":400},[24192],{"type":50,"value":2431},{"type":44,"tag":100,"props":24194,"children":24195},{"class":102,"line":2747},[24196,24200,24204,24208],{"type":44,"tag":100,"props":24197,"children":24198},{"style":113},[24199],{"type":50,"value":5574},{"type":44,"tag":100,"props":24201,"children":24202},{"style":400},[24203],{"type":50,"value":5765},{"type":44,"tag":100,"props":24205,"children":24206},{"style":390},[24207],{"type":50,"value":408},{"type":44,"tag":100,"props":24209,"children":24210},{"style":400},[24211],{"type":50,"value":9915},{"type":44,"tag":100,"props":24213,"children":24214},{"class":102,"line":2769},[24215,24219,24223,24227],{"type":44,"tag":100,"props":24216,"children":24217},{"style":113},[24218],{"type":50,"value":5574},{"type":44,"tag":100,"props":24220,"children":24221},{"style":400},[24222],{"type":50,"value":5786},{"type":44,"tag":100,"props":24224,"children":24225},{"style":390},[24226],{"type":50,"value":408},{"type":44,"tag":100,"props":24228,"children":24229},{"style":400},[24230],{"type":50,"value":5795},{"type":44,"tag":100,"props":24232,"children":24233},{"class":102,"line":2791},[24234,24238,24242,24246],{"type":44,"tag":100,"props":24235,"children":24236},{"style":390},[24237],{"type":50,"value":2524},{"type":44,"tag":100,"props":24239,"children":24240},{"style":113},[24241],{"type":50,"value":781},{"type":44,"tag":100,"props":24243,"children":24244},{"style":400},[24245],{"type":50,"value":786},{"type":44,"tag":100,"props":24247,"children":24248},{"style":113},[24249],{"type":50,"value":5815},{"type":44,"tag":100,"props":24251,"children":24252},{"class":102,"line":2856},[24253,24257],{"type":44,"tag":100,"props":24254,"children":24255},{"style":390},[24256],{"type":50,"value":2725},{"type":44,"tag":100,"props":24258,"children":24259},{"style":400},[24260],{"type":50,"value":9965},{"type":44,"tag":100,"props":24262,"children":24263},{"class":102,"line":2898},[24264],{"type":44,"tag":100,"props":24265,"children":24266},{"style":400},[24267],{"type":50,"value":2643},{"type":44,"tag":100,"props":24269,"children":24270},{"class":102,"line":2977},[24271,24275,24279],{"type":44,"tag":100,"props":24272,"children":24273},{"style":400},[24274],{"type":50,"value":9980},{"type":44,"tag":100,"props":24276,"children":24277},{"style":390},[24278],{"type":50,"value":408},{"type":44,"tag":100,"props":24280,"children":24281},{"style":400},[24282],{"type":50,"value":2401},{"type":44,"tag":100,"props":24284,"children":24285},{"class":102,"line":3015},[24286],{"type":44,"tag":100,"props":24287,"children":24288},{"style":390},[24289],{"type":50,"value":2409},{"type":44,"tag":100,"props":24291,"children":24292},{"class":102,"line":3081},[24293],{"type":44,"tag":100,"props":24294,"children":24295},{"style":400},[24296],{"type":50,"value":5558},{"type":44,"tag":100,"props":24298,"children":24299},{"class":102,"line":3094},[24300,24304,24308,24312],{"type":44,"tag":100,"props":24301,"children":24302},{"style":113},[24303],{"type":50,"value":5574},{"type":44,"tag":100,"props":24305,"children":24306},{"style":400},[24307],{"type":50,"value":5579},{"type":44,"tag":100,"props":24309,"children":24310},{"style":390},[24311],{"type":50,"value":408},{"type":44,"tag":100,"props":24313,"children":24314},{"style":400},[24315],{"type":50,"value":10022},{"type":44,"tag":100,"props":24317,"children":24318},{"class":102,"line":3108},[24319,24323,24327,24331],{"type":44,"tag":100,"props":24320,"children":24321},{"style":390},[24322],{"type":50,"value":2524},{"type":44,"tag":100,"props":24324,"children":24325},{"style":113},[24326],{"type":50,"value":781},{"type":44,"tag":100,"props":24328,"children":24329},{"style":400},[24330],{"type":50,"value":786},{"type":44,"tag":100,"props":24332,"children":24333},{"style":113},[24334],{"type":50,"value":5671},{"type":44,"tag":100,"props":24336,"children":24337},{"class":102,"line":3147},[24338,24342],{"type":44,"tag":100,"props":24339,"children":24340},{"style":390},[24341],{"type":50,"value":2725},{"type":44,"tag":100,"props":24343,"children":24344},{"style":400},[24345],{"type":50,"value":10053},{"type":44,"tag":100,"props":24347,"children":24348},{"class":102,"line":3188},[24349],{"type":44,"tag":100,"props":24350,"children":24351},{"style":400},[24352],{"type":50,"value":1464},{"type":44,"tag":100,"props":24354,"children":24355},{"class":102,"line":6054},[24356],{"type":44,"tag":100,"props":24357,"children":24358},{"style":390},[24359],{"type":50,"value":393},{"type":44,"tag":100,"props":24361,"children":24362},{"class":102,"line":6081},[24363,24367,24371,24375,24379],{"type":44,"tag":100,"props":24364,"children":24365},{"style":113},[24366],{"type":50,"value":10075},{"type":44,"tag":100,"props":24368,"children":24369},{"style":400},[24370],{"type":50,"value":786},{"type":44,"tag":100,"props":24372,"children":24373},{"style":113},[24374],{"type":50,"value":2487},{"type":44,"tag":100,"props":24376,"children":24377},{"style":390},[24378],{"type":50,"value":1661},{"type":44,"tag":100,"props":24380,"children":24381},{"style":400},[24382],{"type":50,"value":10092},{"type":44,"tag":100,"props":24384,"children":24385},{"class":102,"line":6089},[24386,24390,24394,24398],{"type":44,"tag":100,"props":24387,"children":24388},{"style":113},[24389],{"type":50,"value":10075},{"type":44,"tag":100,"props":24391,"children":24392},{"style":400},[24393],{"type":50,"value":786},{"type":44,"tag":100,"props":24395,"children":24396},{"style":113},[24397],{"type":50,"value":10108},{"type":44,"tag":100,"props":24399,"children":24400},{"style":400},[24401],{"type":50,"value":2431},{"type":44,"tag":100,"props":24403,"children":24404},{"class":102,"line":6097},[24405,24409,24413,24417],{"type":44,"tag":100,"props":24406,"children":24407},{"style":113},[24408],{"type":50,"value":10075},{"type":44,"tag":100,"props":24410,"children":24411},{"style":400},[24412],{"type":50,"value":786},{"type":44,"tag":100,"props":24414,"children":24415},{"style":113},[24416],{"type":50,"value":10128},{"type":44,"tag":100,"props":24418,"children":24419},{"style":400},[24420],{"type":50,"value":2431},{"type":44,"tag":100,"props":24422,"children":24423},{"class":102,"line":6123},[24424,24428,24432,24436],{"type":44,"tag":100,"props":24425,"children":24426},{"style":113},[24427],{"type":50,"value":10075},{"type":44,"tag":100,"props":24429,"children":24430},{"style":400},[24431],{"type":50,"value":786},{"type":44,"tag":100,"props":24433,"children":24434},{"style":113},[24435],{"type":50,"value":10148},{"type":44,"tag":100,"props":24437,"children":24438},{"style":400},[24439],{"type":50,"value":2431},{"type":44,"tag":100,"props":24441,"children":24442},{"class":102,"line":6143},[24443,24447,24451,24455],{"type":44,"tag":100,"props":24444,"children":24445},{"style":113},[24446],{"type":50,"value":10075},{"type":44,"tag":100,"props":24448,"children":24449},{"style":400},[24450],{"type":50,"value":786},{"type":44,"tag":100,"props":24452,"children":24453},{"style":113},[24454],{"type":50,"value":10168},{"type":44,"tag":100,"props":24456,"children":24457},{"style":400},[24458],{"type":50,"value":2431},{"type":44,"tag":100,"props":24460,"children":24461},{"class":102,"line":6164},[24462,24466,24470,24474],{"type":44,"tag":100,"props":24463,"children":24464},{"style":113},[24465],{"type":50,"value":10075},{"type":44,"tag":100,"props":24467,"children":24468},{"style":400},[24469],{"type":50,"value":786},{"type":44,"tag":100,"props":24471,"children":24472},{"style":113},[24473],{"type":50,"value":10188},{"type":44,"tag":100,"props":24475,"children":24476},{"style":400},[24477],{"type":50,"value":2431},{"type":44,"tag":100,"props":24479,"children":24480},{"class":102,"line":6185},[24481,24485,24489,24493],{"type":44,"tag":100,"props":24482,"children":24483},{"style":113},[24484],{"type":50,"value":10200},{"type":44,"tag":100,"props":24486,"children":24487},{"style":400},[24488],{"type":50,"value":786},{"type":44,"tag":100,"props":24490,"children":24491},{"style":113},[24492],{"type":50,"value":10209},{"type":44,"tag":100,"props":24494,"children":24495},{"style":400},[24496],{"type":50,"value":2431},{"type":44,"tag":100,"props":24498,"children":24499},{"class":102,"line":6206},[24500,24504,24508,24512],{"type":44,"tag":100,"props":24501,"children":24502},{"style":113},[24503],{"type":50,"value":10200},{"type":44,"tag":100,"props":24505,"children":24506},{"style":400},[24507],{"type":50,"value":786},{"type":44,"tag":100,"props":24509,"children":24510},{"style":113},[24511],{"type":50,"value":10229},{"type":44,"tag":100,"props":24513,"children":24514},{"style":400},[24515],{"type":50,"value":2431},{"type":44,"tag":100,"props":24517,"children":24518},{"class":102,"line":6227},[24519,24523,24527,24531],{"type":44,"tag":100,"props":24520,"children":24521},{"style":113},[24522],{"type":50,"value":10241},{"type":44,"tag":100,"props":24524,"children":24525},{"style":400},[24526],{"type":50,"value":786},{"type":44,"tag":100,"props":24528,"children":24529},{"style":113},[24530],{"type":50,"value":6242},{"type":44,"tag":100,"props":24532,"children":24533},{"style":400},[24534],{"type":50,"value":2431},{"type":44,"tag":100,"props":24536,"children":24537},{"class":102,"line":6249},[24538,24542,24546,24550],{"type":44,"tag":100,"props":24539,"children":24540},{"style":113},[24541],{"type":50,"value":10241},{"type":44,"tag":100,"props":24543,"children":24544},{"style":400},[24545],{"type":50,"value":786},{"type":44,"tag":100,"props":24547,"children":24548},{"style":113},[24549],{"type":50,"value":10269},{"type":44,"tag":100,"props":24551,"children":24552},{"style":400},[24553],{"type":50,"value":2431},{"type":44,"tag":100,"props":24555,"children":24556},{"class":102,"line":6270},[24557,24561,24565,24569,24573,24577,24581,24585,24589,24593,24597,24601,24605,24609,24613,24617,24621,24625,24629,24633,24637],{"type":44,"tag":100,"props":24558,"children":24559},{"style":113},[24560],{"type":50,"value":654},{"type":44,"tag":100,"props":24562,"children":24563},{"style":400},[24564],{"type":50,"value":427},{"type":44,"tag":100,"props":24566,"children":24567},{"style":113},[24568],{"type":50,"value":10289},{"type":44,"tag":100,"props":24570,"children":24571},{"style":400},[24572],{"type":50,"value":786},{"type":44,"tag":100,"props":24574,"children":24575},{"style":113},[24576],{"type":50,"value":10298},{"type":44,"tag":100,"props":24578,"children":24579},{"style":390},[24580],{"type":50,"value":6319},{"type":44,"tag":100,"props":24582,"children":24583},{"style":113},[24584],{"type":50,"value":1262},{"type":44,"tag":100,"props":24586,"children":24587},{"style":400},[24588],{"type":50,"value":427},{"type":44,"tag":100,"props":24590,"children":24591},{"style":113},[24592],{"type":50,"value":10289},{"type":44,"tag":100,"props":24594,"children":24595},{"style":400},[24596],{"type":50,"value":786},{"type":44,"tag":100,"props":24598,"children":24599},{"style":113},[24600],{"type":50,"value":6242},{"type":44,"tag":100,"props":24602,"children":24603},{"style":400},[24604],{"type":50,"value":750},{"type":44,"tag":100,"props":24606,"children":24607},{"style":113},[24608],{"type":50,"value":679},{"type":44,"tag":100,"props":24610,"children":24611},{"style":400},[24612],{"type":50,"value":437},{"type":44,"tag":100,"props":24614,"children":24615},{"style":390},[24616],{"type":50,"value":432},{"type":44,"tag":100,"props":24618,"children":24619},{"style":113},[24620],{"type":50,"value":745},{"type":44,"tag":100,"props":24622,"children":24623},{"style":400},[24624],{"type":50,"value":750},{"type":44,"tag":100,"props":24626,"children":24627},{"style":113},[24628],{"type":50,"value":689},{"type":44,"tag":100,"props":24630,"children":24631},{"style":400},[24632],{"type":50,"value":437},{"type":44,"tag":100,"props":24634,"children":24635},{"style":390},[24636],{"type":50,"value":408},{"type":44,"tag":100,"props":24638,"children":24639},{"style":400},[24640],{"type":50,"value":10363},{"type":44,"tag":100,"props":24642,"children":24643},{"class":102,"line":6292},[24644,24648,24652,24656],{"type":44,"tag":100,"props":24645,"children":24646},{"style":113},[24647],{"type":50,"value":10371},{"type":44,"tag":100,"props":24649,"children":24650},{"style":400},[24651],{"type":50,"value":786},{"type":44,"tag":100,"props":24653,"children":24654},{"style":113},[24655],{"type":50,"value":10380},{"type":44,"tag":100,"props":24657,"children":24658},{"style":400},[24659],{"type":50,"value":2431},{"type":44,"tag":100,"props":24661,"children":24662},{"class":102,"line":6371},[24663,24667,24671,24675,24679,24683,24687,24691,24695,24699,24703,24707,24711,24715,24719,24723,24727,24731],{"type":44,"tag":100,"props":24664,"children":24665},{"style":113},[24666],{"type":50,"value":654},{"type":44,"tag":100,"props":24668,"children":24669},{"style":400},[24670],{"type":50,"value":427},{"type":44,"tag":100,"props":24672,"children":24673},{"style":113},[24674],{"type":50,"value":10400},{"type":44,"tag":100,"props":24676,"children":24677},{"style":400},[24678],{"type":50,"value":786},{"type":44,"tag":100,"props":24680,"children":24681},{"style":113},[24682],{"type":50,"value":10108},{"type":44,"tag":100,"props":24684,"children":24685},{"style":390},[24686],{"type":50,"value":6319},{"type":44,"tag":100,"props":24688,"children":24689},{"style":113},[24690],{"type":50,"value":1262},{"type":44,"tag":100,"props":24692,"children":24693},{"style":400},[24694],{"type":50,"value":427},{"type":44,"tag":100,"props":24696,"children":24697},{"style":113},[24698],{"type":50,"value":10425},{"type":44,"tag":100,"props":24700,"children":24701},{"style":400},[24702],{"type":50,"value":786},{"type":44,"tag":100,"props":24704,"children":24705},{"style":113},[24706],{"type":50,"value":10380},{"type":44,"tag":100,"props":24708,"children":24709},{"style":400},[24710],{"type":50,"value":750},{"type":44,"tag":100,"props":24712,"children":24713},{"style":113},[24714],{"type":50,"value":679},{"type":44,"tag":100,"props":24716,"children":24717},{"style":400},[24718],{"type":50,"value":684},{"type":44,"tag":100,"props":24720,"children":24721},{"style":113},[24722],{"type":50,"value":689},{"type":44,"tag":100,"props":24724,"children":24725},{"style":400},[24726],{"type":50,"value":437},{"type":44,"tag":100,"props":24728,"children":24729},{"style":390},[24730],{"type":50,"value":408},{"type":44,"tag":100,"props":24732,"children":24733},{"style":400},[24734],{"type":50,"value":10462},{"type":44,"tag":100,"props":24736,"children":24737},{"class":102,"line":6448},[24738,24742,24746,24750,24754],{"type":44,"tag":100,"props":24739,"children":24740},{"style":390},[24741],{"type":50,"value":776},{"type":44,"tag":100,"props":24743,"children":24744},{"style":113},[24745],{"type":50,"value":10474},{"type":44,"tag":100,"props":24747,"children":24748},{"style":400},[24749],{"type":50,"value":786},{"type":44,"tag":100,"props":24751,"children":24752},{"style":113},[24753],{"type":50,"value":10483},{"type":44,"tag":100,"props":24755,"children":24756},{"style":400},[24757],{"type":50,"value":10488},{"type":44,"tag":100,"props":24759,"children":24760},{"class":102,"line":6537},[24761,24765,24769,24773,24777,24781,24785,24789,24793,24797],{"type":44,"tag":100,"props":24762,"children":24763},{"style":390},[24764],{"type":50,"value":6556},{"type":44,"tag":100,"props":24766,"children":24767},{"style":400},[24768],{"type":50,"value":10500},{"type":44,"tag":100,"props":24770,"children":24771},{"style":390},[24772],{"type":50,"value":10505},{"type":44,"tag":100,"props":24774,"children":24775},{"style":113},[24776],{"type":50,"value":10510},{"type":44,"tag":100,"props":24778,"children":24779},{"style":400},[24780],{"type":50,"value":786},{"type":44,"tag":100,"props":24782,"children":24783},{"style":113},[24784],{"type":50,"value":2487},{"type":44,"tag":100,"props":24786,"children":24787},{"style":390},[24788],{"type":50,"value":2591},{"type":44,"tag":100,"props":24790,"children":24791},{"style":113},[24792],{"type":50,"value":10527},{"type":44,"tag":100,"props":24794,"children":24795},{"style":400},[24796],{"type":50,"value":786},{"type":44,"tag":100,"props":24798,"children":24799},{"style":113},[24800],{"type":50,"value":6686},{"type":44,"tag":100,"props":24802,"children":24803},{"class":102,"line":6550},[24804,24808,24812,24816,24820,24824,24828,24832,24836,24840],{"type":44,"tag":100,"props":24805,"children":24806},{"style":390},[24807],{"type":50,"value":6556},{"type":44,"tag":100,"props":24809,"children":24810},{"style":400},[24811],{"type":50,"value":10547},{"type":44,"tag":100,"props":24813,"children":24814},{"style":390},[24815],{"type":50,"value":10505},{"type":44,"tag":100,"props":24817,"children":24818},{"style":113},[24819],{"type":50,"value":10510},{"type":44,"tag":100,"props":24821,"children":24822},{"style":400},[24823],{"type":50,"value":786},{"type":44,"tag":100,"props":24825,"children":24826},{"style":113},[24827],{"type":50,"value":2487},{"type":44,"tag":100,"props":24829,"children":24830},{"style":390},[24831],{"type":50,"value":2591},{"type":44,"tag":100,"props":24833,"children":24834},{"style":113},[24835],{"type":50,"value":10572},{"type":44,"tag":100,"props":24837,"children":24838},{"style":400},[24839],{"type":50,"value":786},{"type":44,"tag":100,"props":24841,"children":24842},{"style":113},[24843],{"type":50,"value":6024},{"type":44,"tag":100,"props":24845,"children":24846},{"class":102,"line":6564},[24847,24851,24855,24859,24863,24867,24871,24875,24879,24883],{"type":44,"tag":100,"props":24848,"children":24849},{"style":390},[24850],{"type":50,"value":6556},{"type":44,"tag":100,"props":24852,"children":24853},{"style":400},[24854],{"type":50,"value":10592},{"type":44,"tag":100,"props":24856,"children":24857},{"style":390},[24858],{"type":50,"value":10505},{"type":44,"tag":100,"props":24860,"children":24861},{"style":113},[24862],{"type":50,"value":10510},{"type":44,"tag":100,"props":24864,"children":24865},{"style":400},[24866],{"type":50,"value":786},{"type":44,"tag":100,"props":24868,"children":24869},{"style":113},[24870],{"type":50,"value":2487},{"type":44,"tag":100,"props":24872,"children":24873},{"style":390},[24874],{"type":50,"value":2591},{"type":44,"tag":100,"props":24876,"children":24877},{"style":113},[24878],{"type":50,"value":10617},{"type":44,"tag":100,"props":24880,"children":24881},{"style":400},[24882],{"type":50,"value":786},{"type":44,"tag":100,"props":24884,"children":24885},{"style":113},[24886],{"type":50,"value":10626},{"type":44,"tag":100,"props":24888,"children":24889},{"class":102,"line":6601},[24890,24894,24898],{"type":44,"tag":100,"props":24891,"children":24892},{"style":390},[24893],{"type":50,"value":814},{"type":44,"tag":100,"props":24895,"children":24896},{"style":400},[24897],{"type":50,"value":10638},{"type":44,"tag":100,"props":24899,"children":24900},{"style":390},[24901],{"type":50,"value":10643},{"type":44,"tag":203,"props":24903,"children":24904},{"v-slot:snowflake":7},[24905],{"type":44,"tag":90,"props":24906,"children":24907},{"className":208,"code":11895,"language":210,"meta":7,"style":7},[24908],{"type":44,"tag":81,"props":24909,"children":24910},{"__ignoreMap":7},[24911,24918,24925,24932,24939,24946,24953,24960,24967,24974,24981,24988,24995,25002,25009,25016,25023,25030,25037,25044,25063,25070,25101,25188,25275,25298,25321,25356,25383,25410,25417,25432,25439,25446,25469,25488,25507,25526,25537,25544,25559,25566,25573,25592,25611,25622,25629,25636,25659,25678,25697,25716,25735,25754,25773,25792,25811,25830,25917,25936,26011,26034,26077,26120,26163],{"type":44,"tag":100,"props":24912,"children":24913},{"class":102,"line":103},[24914],{"type":44,"tag":100,"props":24915,"children":24916},{"style":220},[24917],{"type":50,"value":223},{"type":44,"tag":100,"props":24919,"children":24920},{"class":102,"line":226},[24921],{"type":44,"tag":100,"props":24922,"children":24923},{"style":220},[24924],{"type":50,"value":9404},{"type":44,"tag":100,"props":24926,"children":24927},{"class":102,"line":235},[24928],{"type":44,"tag":100,"props":24929,"children":24930},{"style":220},[24931],{"type":50,"value":241},{"type":44,"tag":100,"props":24933,"children":24934},{"class":102,"line":24},[24935],{"type":44,"tag":100,"props":24936,"children":24937},{"style":220},[24938],{"type":50,"value":249},{"type":44,"tag":100,"props":24940,"children":24941},{"class":102,"line":252},[24942],{"type":44,"tag":100,"props":24943,"children":24944},{"style":220},[24945],{"type":50,"value":258},{"type":44,"tag":100,"props":24947,"children":24948},{"class":102,"line":261},[24949],{"type":44,"tag":100,"props":24950,"children":24951},{"style":220},[24952],{"type":50,"value":267},{"type":44,"tag":100,"props":24954,"children":24955},{"class":102,"line":270},[24956],{"type":44,"tag":100,"props":24957,"children":24958},{"style":220},[24959],{"type":50,"value":9440},{"type":44,"tag":100,"props":24961,"children":24962},{"class":102,"line":279},[24963],{"type":44,"tag":100,"props":24964,"children":24965},{"style":220},[24966],{"type":50,"value":2329},{"type":44,"tag":100,"props":24968,"children":24969},{"class":102,"line":288},[24970],{"type":44,"tag":100,"props":24971,"children":24972},{"style":220},[24973],{"type":50,"value":276},{"type":44,"tag":100,"props":24975,"children":24976},{"class":102,"line":297},[24977],{"type":44,"tag":100,"props":24978,"children":24979},{"style":220},[24980],{"type":50,"value":5466},{"type":44,"tag":100,"props":24982,"children":24983},{"class":102,"line":306},[24984],{"type":44,"tag":100,"props":24985,"children":24986},{"style":220},[24987],{"type":50,"value":5458},{"type":44,"tag":100,"props":24989,"children":24990},{"class":102,"line":315},[24991],{"type":44,"tag":100,"props":24992,"children":24993},{"style":220},[24994],{"type":50,"value":285},{"type":44,"tag":100,"props":24996,"children":24997},{"class":102,"line":324},[24998],{"type":44,"tag":100,"props":24999,"children":25000},{"style":220},[25001],{"type":50,"value":9483},{"type":44,"tag":100,"props":25003,"children":25004},{"class":102,"line":333},[25005],{"type":44,"tag":100,"props":25006,"children":25007},{"style":220},[25008],{"type":50,"value":303},{"type":44,"tag":100,"props":25010,"children":25011},{"class":102,"line":11},[25012],{"type":44,"tag":100,"props":25013,"children":25014},{"style":220},[25015],{"type":50,"value":312},{"type":44,"tag":100,"props":25017,"children":25018},{"class":102,"line":350},[25019],{"type":44,"tag":100,"props":25020,"children":25021},{"style":220},[25022],{"type":50,"value":321},{"type":44,"tag":100,"props":25024,"children":25025},{"class":102,"line":359},[25026],{"type":44,"tag":100,"props":25027,"children":25028},{"style":220},[25029],{"type":50,"value":330},{"type":44,"tag":100,"props":25031,"children":25032},{"class":102,"line":368},[25033],{"type":44,"tag":100,"props":25034,"children":25035},{"style":220},[25036],{"type":50,"value":374},{"type":44,"tag":100,"props":25038,"children":25039},{"class":102,"line":377},[25040],{"type":44,"tag":100,"props":25041,"children":25042},{"emptyLinePlaceholder":23},[25043],{"type":50,"value":383},{"type":44,"tag":100,"props":25045,"children":25046},{"class":102,"line":386},[25047,25051,25055,25059],{"type":44,"tag":100,"props":25048,"children":25049},{"style":390},[25050],{"type":50,"value":2387},{"type":44,"tag":100,"props":25052,"children":25053},{"style":400},[25054],{"type":50,"value":9537},{"type":44,"tag":100,"props":25056,"children":25057},{"style":390},[25058],{"type":50,"value":408},{"type":44,"tag":100,"props":25060,"children":25061},{"style":400},[25062],{"type":50,"value":2401},{"type":44,"tag":100,"props":25064,"children":25065},{"class":102,"line":396},[25066],{"type":44,"tag":100,"props":25067,"children":25068},{"style":390},[25069],{"type":50,"value":2409},{"type":44,"tag":100,"props":25071,"children":25072},{"class":102,"line":416},[25073,25077,25081,25085,25089,25093,25097],{"type":44,"tag":100,"props":25074,"children":25075},{"style":113},[25076],{"type":50,"value":2417},{"type":44,"tag":100,"props":25078,"children":25079},{"style":400},[25080],{"type":50,"value":786},{"type":44,"tag":100,"props":25082,"children":25083},{"style":113},[25084],{"type":50,"value":2487},{"type":44,"tag":100,"props":25086,"children":25087},{"style":400},[25088],{"type":50,"value":12078},{"type":44,"tag":100,"props":25090,"children":25091},{"style":390},[25092],{"type":50,"value":1656},{"type":44,"tag":100,"props":25094,"children":25095},{"style":390},[25096],{"type":50,"value":1661},{"type":44,"tag":100,"props":25098,"children":25099},{"style":400},[25100],{"type":50,"value":413},{"type":44,"tag":100,"props":25102,"children":25103},{"class":102,"line":449},[25104,25108,25112,25116,25120,25124,25128,25132,25136,25140,25144,25148,25152,25156,25160,25164,25168,25172,25176,25180,25184],{"type":44,"tag":100,"props":25105,"children":25106},{"style":113},[25107],{"type":50,"value":12098},{"type":44,"tag":100,"props":25109,"children":25110},{"style":400},[25111],{"type":50,"value":427},{"type":44,"tag":100,"props":25113,"children":25114},{"style":390},[25115],{"type":50,"value":545},{"type":44,"tag":100,"props":25117,"children":25118},{"style":390},[25119],{"type":50,"value":550},{"type":44,"tag":100,"props":25121,"children":25122},{"style":113},[25123],{"type":50,"value":2596},{"type":44,"tag":100,"props":25125,"children":25126},{"style":400},[25127],{"type":50,"value":786},{"type":44,"tag":100,"props":25129,"children":25130},{"style":113},[25131],{"type":50,"value":2453},{"type":44,"tag":100,"props":25133,"children":25134},{"style":400},[25135],{"type":50,"value":12078},{"type":44,"tag":100,"props":25137,"children":25138},{"style":390},[25139],{"type":50,"value":1656},{"type":44,"tag":100,"props":25141,"children":25142},{"style":390},[25143],{"type":50,"value":2591},{"type":44,"tag":100,"props":25145,"children":25146},{"style":113},[25147],{"type":50,"value":1426},{"type":44,"tag":100,"props":25149,"children":25150},{"style":400},[25151],{"type":50,"value":786},{"type":44,"tag":100,"props":25153,"children":25154},{"style":113},[25155],{"type":50,"value":2487},{"type":44,"tag":100,"props":25157,"children":25158},{"style":400},[25159],{"type":50,"value":12078},{"type":44,"tag":100,"props":25161,"children":25162},{"style":390},[25163],{"type":50,"value":1656},{"type":44,"tag":100,"props":25165,"children":25166},{"style":390},[25167],{"type":50,"value":568},{"type":44,"tag":100,"props":25169,"children":25170},{"style":113},[25171],{"type":50,"value":1733},{"type":44,"tag":100,"props":25173,"children":25174},{"style":390},[25175],{"type":50,"value":588},{"type":44,"tag":100,"props":25177,"children":25178},{"style":400},[25179],{"type":50,"value":437},{"type":44,"tag":100,"props":25181,"children":25182},{"style":390},[25183],{"type":50,"value":408},{"type":44,"tag":100,"props":25185,"children":25186},{"style":400},[25187],{"type":50,"value":9642},{"type":44,"tag":100,"props":25189,"children":25190},{"class":102,"line":481},[25191,25195,25199,25203,25207,25211,25215,25219,25223,25227,25231,25235,25239,25243,25247,25251,25255,25259,25263,25267,25271],{"type":44,"tag":100,"props":25192,"children":25193},{"style":113},[25194],{"type":50,"value":12098},{"type":44,"tag":100,"props":25196,"children":25197},{"style":400},[25198],{"type":50,"value":427},{"type":44,"tag":100,"props":25200,"children":25201},{"style":390},[25202],{"type":50,"value":545},{"type":44,"tag":100,"props":25204,"children":25205},{"style":390},[25206],{"type":50,"value":550},{"type":44,"tag":100,"props":25208,"children":25209},{"style":113},[25210],{"type":50,"value":2596},{"type":44,"tag":100,"props":25212,"children":25213},{"style":400},[25214],{"type":50,"value":786},{"type":44,"tag":100,"props":25216,"children":25217},{"style":113},[25218],{"type":50,"value":2453},{"type":44,"tag":100,"props":25220,"children":25221},{"style":400},[25222],{"type":50,"value":12078},{"type":44,"tag":100,"props":25224,"children":25225},{"style":390},[25226],{"type":50,"value":1656},{"type":44,"tag":100,"props":25228,"children":25229},{"style":390},[25230],{"type":50,"value":12222},{"type":44,"tag":100,"props":25232,"children":25233},{"style":113},[25234],{"type":50,"value":1426},{"type":44,"tag":100,"props":25236,"children":25237},{"style":400},[25238],{"type":50,"value":786},{"type":44,"tag":100,"props":25240,"children":25241},{"style":113},[25242],{"type":50,"value":2487},{"type":44,"tag":100,"props":25244,"children":25245},{"style":400},[25246],{"type":50,"value":12078},{"type":44,"tag":100,"props":25248,"children":25249},{"style":390},[25250],{"type":50,"value":1656},{"type":44,"tag":100,"props":25252,"children":25253},{"style":390},[25254],{"type":50,"value":568},{"type":44,"tag":100,"props":25256,"children":25257},{"style":113},[25258],{"type":50,"value":1733},{"type":44,"tag":100,"props":25260,"children":25261},{"style":390},[25262],{"type":50,"value":588},{"type":44,"tag":100,"props":25264,"children":25265},{"style":400},[25266],{"type":50,"value":437},{"type":44,"tag":100,"props":25268,"children":25269},{"style":390},[25270],{"type":50,"value":408},{"type":44,"tag":100,"props":25272,"children":25273},{"style":400},[25274],{"type":50,"value":9699},{"type":44,"tag":100,"props":25276,"children":25277},{"class":102,"line":508},[25278,25282,25286,25290,25294],{"type":44,"tag":100,"props":25279,"children":25280},{"style":390},[25281],{"type":50,"value":2524},{"type":44,"tag":100,"props":25283,"children":25284},{"style":113},[25285],{"type":50,"value":781},{"type":44,"tag":100,"props":25287,"children":25288},{"style":400},[25289],{"type":50,"value":786},{"type":44,"tag":100,"props":25291,"children":25292},{"style":113},[25293],{"type":50,"value":1408},{"type":44,"tag":100,"props":25295,"children":25296},{"style":400},[25297],{"type":50,"value":1413},{"type":44,"tag":100,"props":25299,"children":25300},{"class":102,"line":531},[25301,25305,25309,25313,25317],{"type":44,"tag":100,"props":25302,"children":25303},{"style":390},[25304],{"type":50,"value":9730},{"type":44,"tag":100,"props":25306,"children":25307},{"style":113},[25308],{"type":50,"value":781},{"type":44,"tag":100,"props":25310,"children":25311},{"style":400},[25312],{"type":50,"value":786},{"type":44,"tag":100,"props":25314,"children":25315},{"style":113},[25316],{"type":50,"value":2561},{"type":44,"tag":100,"props":25318,"children":25319},{"style":400},[25320],{"type":50,"value":2566},{"type":44,"tag":100,"props":25322,"children":25323},{"class":102,"line":604},[25324,25328,25332,25336,25340,25344,25348,25352],{"type":44,"tag":100,"props":25325,"children":25326},{"style":390},[25327],{"type":50,"value":2574},{"type":44,"tag":100,"props":25329,"children":25330},{"style":113},[25331],{"type":50,"value":1426},{"type":44,"tag":100,"props":25333,"children":25334},{"style":400},[25335],{"type":50,"value":786},{"type":44,"tag":100,"props":25337,"children":25338},{"style":113},[25339],{"type":50,"value":2426},{"type":44,"tag":100,"props":25341,"children":25342},{"style":390},[25343],{"type":50,"value":2591},{"type":44,"tag":100,"props":25345,"children":25346},{"style":113},[25347],{"type":50,"value":2596},{"type":44,"tag":100,"props":25349,"children":25350},{"style":400},[25351],{"type":50,"value":786},{"type":44,"tag":100,"props":25353,"children":25354},{"style":113},[25355],{"type":50,"value":2605},{"type":44,"tag":100,"props":25357,"children":25358},{"class":102,"line":626},[25359,25363,25367,25371,25375,25379],{"type":44,"tag":100,"props":25360,"children":25361},{"style":390},[25362],{"type":50,"value":2613},{"type":44,"tag":100,"props":25364,"children":25365},{"style":113},[25366],{"type":50,"value":1426},{"type":44,"tag":100,"props":25368,"children":25369},{"style":400},[25370],{"type":50,"value":786},{"type":44,"tag":100,"props":25372,"children":25373},{"style":113},[25374],{"type":50,"value":2626},{"type":44,"tag":100,"props":25376,"children":25377},{"style":390},[25378],{"type":50,"value":2591},{"type":44,"tag":100,"props":25380,"children":25381},{"style":119},[25382],{"type":50,"value":2635},{"type":44,"tag":100,"props":25384,"children":25385},{"class":102,"line":648},[25386,25390,25394,25398,25402,25406],{"type":44,"tag":100,"props":25387,"children":25388},{"style":390},[25389],{"type":50,"value":2725},{"type":44,"tag":100,"props":25391,"children":25392},{"style":113},[25393],{"type":50,"value":1426},{"type":44,"tag":100,"props":25395,"children":25396},{"style":400},[25397],{"type":50,"value":786},{"type":44,"tag":100,"props":25399,"children":25400},{"style":113},[25401],{"type":50,"value":2487},{"type":44,"tag":100,"props":25403,"children":25404},{"style":400},[25405],{"type":50,"value":12078},{"type":44,"tag":100,"props":25407,"children":25408},{"style":390},[25409],{"type":50,"value":2216},{"type":44,"tag":100,"props":25411,"children":25412},{"class":102,"line":705},[25413],{"type":44,"tag":100,"props":25414,"children":25415},{"style":400},[25416],{"type":50,"value":2643},{"type":44,"tag":100,"props":25418,"children":25419},{"class":102,"line":770},[25420,25424,25428],{"type":44,"tag":100,"props":25421,"children":25422},{"style":400},[25423],{"type":50,"value":9850},{"type":44,"tag":100,"props":25425,"children":25426},{"style":390},[25427],{"type":50,"value":408},{"type":44,"tag":100,"props":25429,"children":25430},{"style":400},[25431],{"type":50,"value":2401},{"type":44,"tag":100,"props":25433,"children":25434},{"class":102,"line":794},[25435],{"type":44,"tag":100,"props":25436,"children":25437},{"style":390},[25438],{"type":50,"value":2409},{"type":44,"tag":100,"props":25440,"children":25441},{"class":102,"line":808},[25442],{"type":44,"tag":100,"props":25443,"children":25444},{"style":400},[25445],{"type":50,"value":5721},{"type":44,"tag":100,"props":25447,"children":25448},{"class":102,"line":1484},[25449,25453,25457,25461,25465],{"type":44,"tag":100,"props":25450,"children":25451},{"style":113},[25452],{"type":50,"value":5574},{"type":44,"tag":100,"props":25454,"children":25455},{"style":400},[25456],{"type":50,"value":5740},{"type":44,"tag":100,"props":25458,"children":25459},{"style":390},[25460],{"type":50,"value":408},{"type":44,"tag":100,"props":25462,"children":25463},{"style":390},[25464],{"type":50,"value":5749},{"type":44,"tag":100,"props":25466,"children":25467},{"style":400},[25468],{"type":50,"value":2431},{"type":44,"tag":100,"props":25470,"children":25471},{"class":102,"line":2747},[25472,25476,25480,25484],{"type":44,"tag":100,"props":25473,"children":25474},{"style":113},[25475],{"type":50,"value":5574},{"type":44,"tag":100,"props":25477,"children":25478},{"style":400},[25479],{"type":50,"value":5765},{"type":44,"tag":100,"props":25481,"children":25482},{"style":390},[25483],{"type":50,"value":408},{"type":44,"tag":100,"props":25485,"children":25486},{"style":400},[25487],{"type":50,"value":9915},{"type":44,"tag":100,"props":25489,"children":25490},{"class":102,"line":2769},[25491,25495,25499,25503],{"type":44,"tag":100,"props":25492,"children":25493},{"style":113},[25494],{"type":50,"value":5574},{"type":44,"tag":100,"props":25496,"children":25497},{"style":400},[25498],{"type":50,"value":5786},{"type":44,"tag":100,"props":25500,"children":25501},{"style":390},[25502],{"type":50,"value":408},{"type":44,"tag":100,"props":25504,"children":25505},{"style":400},[25506],{"type":50,"value":5795},{"type":44,"tag":100,"props":25508,"children":25509},{"class":102,"line":2791},[25510,25514,25518,25522],{"type":44,"tag":100,"props":25511,"children":25512},{"style":390},[25513],{"type":50,"value":2524},{"type":44,"tag":100,"props":25515,"children":25516},{"style":113},[25517],{"type":50,"value":781},{"type":44,"tag":100,"props":25519,"children":25520},{"style":400},[25521],{"type":50,"value":786},{"type":44,"tag":100,"props":25523,"children":25524},{"style":113},[25525],{"type":50,"value":5815},{"type":44,"tag":100,"props":25527,"children":25528},{"class":102,"line":2856},[25529,25533],{"type":44,"tag":100,"props":25530,"children":25531},{"style":390},[25532],{"type":50,"value":2725},{"type":44,"tag":100,"props":25534,"children":25535},{"style":400},[25536],{"type":50,"value":9965},{"type":44,"tag":100,"props":25538,"children":25539},{"class":102,"line":2898},[25540],{"type":44,"tag":100,"props":25541,"children":25542},{"style":400},[25543],{"type":50,"value":2643},{"type":44,"tag":100,"props":25545,"children":25546},{"class":102,"line":2977},[25547,25551,25555],{"type":44,"tag":100,"props":25548,"children":25549},{"style":400},[25550],{"type":50,"value":9980},{"type":44,"tag":100,"props":25552,"children":25553},{"style":390},[25554],{"type":50,"value":408},{"type":44,"tag":100,"props":25556,"children":25557},{"style":400},[25558],{"type":50,"value":2401},{"type":44,"tag":100,"props":25560,"children":25561},{"class":102,"line":3015},[25562],{"type":44,"tag":100,"props":25563,"children":25564},{"style":390},[25565],{"type":50,"value":2409},{"type":44,"tag":100,"props":25567,"children":25568},{"class":102,"line":3081},[25569],{"type":44,"tag":100,"props":25570,"children":25571},{"style":400},[25572],{"type":50,"value":5558},{"type":44,"tag":100,"props":25574,"children":25575},{"class":102,"line":3094},[25576,25580,25584,25588],{"type":44,"tag":100,"props":25577,"children":25578},{"style":113},[25579],{"type":50,"value":5574},{"type":44,"tag":100,"props":25581,"children":25582},{"style":400},[25583],{"type":50,"value":5579},{"type":44,"tag":100,"props":25585,"children":25586},{"style":390},[25587],{"type":50,"value":408},{"type":44,"tag":100,"props":25589,"children":25590},{"style":400},[25591],{"type":50,"value":10022},{"type":44,"tag":100,"props":25593,"children":25594},{"class":102,"line":3108},[25595,25599,25603,25607],{"type":44,"tag":100,"props":25596,"children":25597},{"style":390},[25598],{"type":50,"value":2524},{"type":44,"tag":100,"props":25600,"children":25601},{"style":113},[25602],{"type":50,"value":781},{"type":44,"tag":100,"props":25604,"children":25605},{"style":400},[25606],{"type":50,"value":786},{"type":44,"tag":100,"props":25608,"children":25609},{"style":113},[25610],{"type":50,"value":5671},{"type":44,"tag":100,"props":25612,"children":25613},{"class":102,"line":3147},[25614,25618],{"type":44,"tag":100,"props":25615,"children":25616},{"style":390},[25617],{"type":50,"value":2725},{"type":44,"tag":100,"props":25619,"children":25620},{"style":400},[25621],{"type":50,"value":10053},{"type":44,"tag":100,"props":25623,"children":25624},{"class":102,"line":3188},[25625],{"type":44,"tag":100,"props":25626,"children":25627},{"style":400},[25628],{"type":50,"value":1464},{"type":44,"tag":100,"props":25630,"children":25631},{"class":102,"line":6054},[25632],{"type":44,"tag":100,"props":25633,"children":25634},{"style":390},[25635],{"type":50,"value":393},{"type":44,"tag":100,"props":25637,"children":25638},{"class":102,"line":6081},[25639,25643,25647,25651,25655],{"type":44,"tag":100,"props":25640,"children":25641},{"style":113},[25642],{"type":50,"value":10075},{"type":44,"tag":100,"props":25644,"children":25645},{"style":400},[25646],{"type":50,"value":786},{"type":44,"tag":100,"props":25648,"children":25649},{"style":113},[25650],{"type":50,"value":2487},{"type":44,"tag":100,"props":25652,"children":25653},{"style":390},[25654],{"type":50,"value":1661},{"type":44,"tag":100,"props":25656,"children":25657},{"style":400},[25658],{"type":50,"value":10092},{"type":44,"tag":100,"props":25660,"children":25661},{"class":102,"line":6089},[25662,25666,25670,25674],{"type":44,"tag":100,"props":25663,"children":25664},{"style":113},[25665],{"type":50,"value":10075},{"type":44,"tag":100,"props":25667,"children":25668},{"style":400},[25669],{"type":50,"value":786},{"type":44,"tag":100,"props":25671,"children":25672},{"style":113},[25673],{"type":50,"value":10108},{"type":44,"tag":100,"props":25675,"children":25676},{"style":400},[25677],{"type":50,"value":2431},{"type":44,"tag":100,"props":25679,"children":25680},{"class":102,"line":6097},[25681,25685,25689,25693],{"type":44,"tag":100,"props":25682,"children":25683},{"style":113},[25684],{"type":50,"value":10075},{"type":44,"tag":100,"props":25686,"children":25687},{"style":400},[25688],{"type":50,"value":786},{"type":44,"tag":100,"props":25690,"children":25691},{"style":113},[25692],{"type":50,"value":10128},{"type":44,"tag":100,"props":25694,"children":25695},{"style":400},[25696],{"type":50,"value":2431},{"type":44,"tag":100,"props":25698,"children":25699},{"class":102,"line":6123},[25700,25704,25708,25712],{"type":44,"tag":100,"props":25701,"children":25702},{"style":113},[25703],{"type":50,"value":10075},{"type":44,"tag":100,"props":25705,"children":25706},{"style":400},[25707],{"type":50,"value":786},{"type":44,"tag":100,"props":25709,"children":25710},{"style":113},[25711],{"type":50,"value":10148},{"type":44,"tag":100,"props":25713,"children":25714},{"style":400},[25715],{"type":50,"value":2431},{"type":44,"tag":100,"props":25717,"children":25718},{"class":102,"line":6143},[25719,25723,25727,25731],{"type":44,"tag":100,"props":25720,"children":25721},{"style":113},[25722],{"type":50,"value":10075},{"type":44,"tag":100,"props":25724,"children":25725},{"style":400},[25726],{"type":50,"value":786},{"type":44,"tag":100,"props":25728,"children":25729},{"style":113},[25730],{"type":50,"value":10168},{"type":44,"tag":100,"props":25732,"children":25733},{"style":400},[25734],{"type":50,"value":2431},{"type":44,"tag":100,"props":25736,"children":25737},{"class":102,"line":6164},[25738,25742,25746,25750],{"type":44,"tag":100,"props":25739,"children":25740},{"style":113},[25741],{"type":50,"value":10075},{"type":44,"tag":100,"props":25743,"children":25744},{"style":400},[25745],{"type":50,"value":786},{"type":44,"tag":100,"props":25747,"children":25748},{"style":113},[25749],{"type":50,"value":10188},{"type":44,"tag":100,"props":25751,"children":25752},{"style":400},[25753],{"type":50,"value":2431},{"type":44,"tag":100,"props":25755,"children":25756},{"class":102,"line":6185},[25757,25761,25765,25769],{"type":44,"tag":100,"props":25758,"children":25759},{"style":113},[25760],{"type":50,"value":10200},{"type":44,"tag":100,"props":25762,"children":25763},{"style":400},[25764],{"type":50,"value":786},{"type":44,"tag":100,"props":25766,"children":25767},{"style":113},[25768],{"type":50,"value":10209},{"type":44,"tag":100,"props":25770,"children":25771},{"style":400},[25772],{"type":50,"value":2431},{"type":44,"tag":100,"props":25774,"children":25775},{"class":102,"line":6206},[25776,25780,25784,25788],{"type":44,"tag":100,"props":25777,"children":25778},{"style":113},[25779],{"type":50,"value":10200},{"type":44,"tag":100,"props":25781,"children":25782},{"style":400},[25783],{"type":50,"value":786},{"type":44,"tag":100,"props":25785,"children":25786},{"style":113},[25787],{"type":50,"value":10229},{"type":44,"tag":100,"props":25789,"children":25790},{"style":400},[25791],{"type":50,"value":2431},{"type":44,"tag":100,"props":25793,"children":25794},{"class":102,"line":6227},[25795,25799,25803,25807],{"type":44,"tag":100,"props":25796,"children":25797},{"style":113},[25798],{"type":50,"value":10241},{"type":44,"tag":100,"props":25800,"children":25801},{"style":400},[25802],{"type":50,"value":786},{"type":44,"tag":100,"props":25804,"children":25805},{"style":113},[25806],{"type":50,"value":6242},{"type":44,"tag":100,"props":25808,"children":25809},{"style":400},[25810],{"type":50,"value":2431},{"type":44,"tag":100,"props":25812,"children":25813},{"class":102,"line":6249},[25814,25818,25822,25826],{"type":44,"tag":100,"props":25815,"children":25816},{"style":113},[25817],{"type":50,"value":10241},{"type":44,"tag":100,"props":25819,"children":25820},{"style":400},[25821],{"type":50,"value":786},{"type":44,"tag":100,"props":25823,"children":25824},{"style":113},[25825],{"type":50,"value":10269},{"type":44,"tag":100,"props":25827,"children":25828},{"style":400},[25829],{"type":50,"value":2431},{"type":44,"tag":100,"props":25831,"children":25832},{"class":102,"line":6270},[25833,25837,25841,25845,25849,25853,25857,25861,25865,25869,25873,25877,25881,25885,25889,25893,25897,25901,25905,25909,25913],{"type":44,"tag":100,"props":25834,"children":25835},{"style":113},[25836],{"type":50,"value":654},{"type":44,"tag":100,"props":25838,"children":25839},{"style":400},[25840],{"type":50,"value":427},{"type":44,"tag":100,"props":25842,"children":25843},{"style":113},[25844],{"type":50,"value":10289},{"type":44,"tag":100,"props":25846,"children":25847},{"style":400},[25848],{"type":50,"value":786},{"type":44,"tag":100,"props":25850,"children":25851},{"style":113},[25852],{"type":50,"value":10298},{"type":44,"tag":100,"props":25854,"children":25855},{"style":390},[25856],{"type":50,"value":6319},{"type":44,"tag":100,"props":25858,"children":25859},{"style":113},[25860],{"type":50,"value":1262},{"type":44,"tag":100,"props":25862,"children":25863},{"style":400},[25864],{"type":50,"value":427},{"type":44,"tag":100,"props":25866,"children":25867},{"style":113},[25868],{"type":50,"value":10289},{"type":44,"tag":100,"props":25870,"children":25871},{"style":400},[25872],{"type":50,"value":786},{"type":44,"tag":100,"props":25874,"children":25875},{"style":113},[25876],{"type":50,"value":6242},{"type":44,"tag":100,"props":25878,"children":25879},{"style":400},[25880],{"type":50,"value":750},{"type":44,"tag":100,"props":25882,"children":25883},{"style":113},[25884],{"type":50,"value":679},{"type":44,"tag":100,"props":25886,"children":25887},{"style":400},[25888],{"type":50,"value":437},{"type":44,"tag":100,"props":25890,"children":25891},{"style":390},[25892],{"type":50,"value":432},{"type":44,"tag":100,"props":25894,"children":25895},{"style":113},[25896],{"type":50,"value":745},{"type":44,"tag":100,"props":25898,"children":25899},{"style":400},[25900],{"type":50,"value":750},{"type":44,"tag":100,"props":25902,"children":25903},{"style":113},[25904],{"type":50,"value":689},{"type":44,"tag":100,"props":25906,"children":25907},{"style":400},[25908],{"type":50,"value":437},{"type":44,"tag":100,"props":25910,"children":25911},{"style":390},[25912],{"type":50,"value":408},{"type":44,"tag":100,"props":25914,"children":25915},{"style":400},[25916],{"type":50,"value":10363},{"type":44,"tag":100,"props":25918,"children":25919},{"class":102,"line":6292},[25920,25924,25928,25932],{"type":44,"tag":100,"props":25921,"children":25922},{"style":113},[25923],{"type":50,"value":10371},{"type":44,"tag":100,"props":25925,"children":25926},{"style":400},[25927],{"type":50,"value":786},{"type":44,"tag":100,"props":25929,"children":25930},{"style":113},[25931],{"type":50,"value":10380},{"type":44,"tag":100,"props":25933,"children":25934},{"style":400},[25935],{"type":50,"value":2431},{"type":44,"tag":100,"props":25937,"children":25938},{"class":102,"line":6371},[25939,25943,25947,25951,25955,25959,25963,25967,25971,25975,25979,25983,25987,25991,25995,25999,26003,26007],{"type":44,"tag":100,"props":25940,"children":25941},{"style":113},[25942],{"type":50,"value":654},{"type":44,"tag":100,"props":25944,"children":25945},{"style":400},[25946],{"type":50,"value":427},{"type":44,"tag":100,"props":25948,"children":25949},{"style":113},[25950],{"type":50,"value":10400},{"type":44,"tag":100,"props":25952,"children":25953},{"style":400},[25954],{"type":50,"value":786},{"type":44,"tag":100,"props":25956,"children":25957},{"style":113},[25958],{"type":50,"value":10108},{"type":44,"tag":100,"props":25960,"children":25961},{"style":390},[25962],{"type":50,"value":6319},{"type":44,"tag":100,"props":25964,"children":25965},{"style":113},[25966],{"type":50,"value":1262},{"type":44,"tag":100,"props":25968,"children":25969},{"style":400},[25970],{"type":50,"value":427},{"type":44,"tag":100,"props":25972,"children":25973},{"style":113},[25974],{"type":50,"value":10425},{"type":44,"tag":100,"props":25976,"children":25977},{"style":400},[25978],{"type":50,"value":786},{"type":44,"tag":100,"props":25980,"children":25981},{"style":113},[25982],{"type":50,"value":10380},{"type":44,"tag":100,"props":25984,"children":25985},{"style":400},[25986],{"type":50,"value":750},{"type":44,"tag":100,"props":25988,"children":25989},{"style":113},[25990],{"type":50,"value":679},{"type":44,"tag":100,"props":25992,"children":25993},{"style":400},[25994],{"type":50,"value":684},{"type":44,"tag":100,"props":25996,"children":25997},{"style":113},[25998],{"type":50,"value":689},{"type":44,"tag":100,"props":26000,"children":26001},{"style":400},[26002],{"type":50,"value":437},{"type":44,"tag":100,"props":26004,"children":26005},{"style":390},[26006],{"type":50,"value":408},{"type":44,"tag":100,"props":26008,"children":26009},{"style":400},[26010],{"type":50,"value":10462},{"type":44,"tag":100,"props":26012,"children":26013},{"class":102,"line":6448},[26014,26018,26022,26026,26030],{"type":44,"tag":100,"props":26015,"children":26016},{"style":390},[26017],{"type":50,"value":776},{"type":44,"tag":100,"props":26019,"children":26020},{"style":113},[26021],{"type":50,"value":10474},{"type":44,"tag":100,"props":26023,"children":26024},{"style":400},[26025],{"type":50,"value":786},{"type":44,"tag":100,"props":26027,"children":26028},{"style":113},[26029],{"type":50,"value":10483},{"type":44,"tag":100,"props":26031,"children":26032},{"style":400},[26033],{"type":50,"value":10488},{"type":44,"tag":100,"props":26035,"children":26036},{"class":102,"line":6537},[26037,26041,26045,26049,26053,26057,26061,26065,26069,26073],{"type":44,"tag":100,"props":26038,"children":26039},{"style":390},[26040],{"type":50,"value":6556},{"type":44,"tag":100,"props":26042,"children":26043},{"style":400},[26044],{"type":50,"value":10500},{"type":44,"tag":100,"props":26046,"children":26047},{"style":390},[26048],{"type":50,"value":10505},{"type":44,"tag":100,"props":26050,"children":26051},{"style":113},[26052],{"type":50,"value":10510},{"type":44,"tag":100,"props":26054,"children":26055},{"style":400},[26056],{"type":50,"value":786},{"type":44,"tag":100,"props":26058,"children":26059},{"style":113},[26060],{"type":50,"value":2487},{"type":44,"tag":100,"props":26062,"children":26063},{"style":390},[26064],{"type":50,"value":2591},{"type":44,"tag":100,"props":26066,"children":26067},{"style":113},[26068],{"type":50,"value":10527},{"type":44,"tag":100,"props":26070,"children":26071},{"style":400},[26072],{"type":50,"value":786},{"type":44,"tag":100,"props":26074,"children":26075},{"style":113},[26076],{"type":50,"value":6686},{"type":44,"tag":100,"props":26078,"children":26079},{"class":102,"line":6550},[26080,26084,26088,26092,26096,26100,26104,26108,26112,26116],{"type":44,"tag":100,"props":26081,"children":26082},{"style":390},[26083],{"type":50,"value":6556},{"type":44,"tag":100,"props":26085,"children":26086},{"style":400},[26087],{"type":50,"value":10547},{"type":44,"tag":100,"props":26089,"children":26090},{"style":390},[26091],{"type":50,"value":10505},{"type":44,"tag":100,"props":26093,"children":26094},{"style":113},[26095],{"type":50,"value":10510},{"type":44,"tag":100,"props":26097,"children":26098},{"style":400},[26099],{"type":50,"value":786},{"type":44,"tag":100,"props":26101,"children":26102},{"style":113},[26103],{"type":50,"value":2487},{"type":44,"tag":100,"props":26105,"children":26106},{"style":390},[26107],{"type":50,"value":2591},{"type":44,"tag":100,"props":26109,"children":26110},{"style":113},[26111],{"type":50,"value":10572},{"type":44,"tag":100,"props":26113,"children":26114},{"style":400},[26115],{"type":50,"value":786},{"type":44,"tag":100,"props":26117,"children":26118},{"style":113},[26119],{"type":50,"value":6024},{"type":44,"tag":100,"props":26121,"children":26122},{"class":102,"line":6564},[26123,26127,26131,26135,26139,26143,26147,26151,26155,26159],{"type":44,"tag":100,"props":26124,"children":26125},{"style":390},[26126],{"type":50,"value":6556},{"type":44,"tag":100,"props":26128,"children":26129},{"style":400},[26130],{"type":50,"value":10592},{"type":44,"tag":100,"props":26132,"children":26133},{"style":390},[26134],{"type":50,"value":10505},{"type":44,"tag":100,"props":26136,"children":26137},{"style":113},[26138],{"type":50,"value":10510},{"type":44,"tag":100,"props":26140,"children":26141},{"style":400},[26142],{"type":50,"value":786},{"type":44,"tag":100,"props":26144,"children":26145},{"style":113},[26146],{"type":50,"value":2487},{"type":44,"tag":100,"props":26148,"children":26149},{"style":390},[26150],{"type":50,"value":2591},{"type":44,"tag":100,"props":26152,"children":26153},{"style":113},[26154],{"type":50,"value":10617},{"type":44,"tag":100,"props":26156,"children":26157},{"style":400},[26158],{"type":50,"value":786},{"type":44,"tag":100,"props":26160,"children":26161},{"style":113},[26162],{"type":50,"value":10626},{"type":44,"tag":100,"props":26164,"children":26165},{"class":102,"line":6601},[26166,26170,26174],{"type":44,"tag":100,"props":26167,"children":26168},{"style":390},[26169],{"type":50,"value":814},{"type":44,"tag":100,"props":26171,"children":26172},{"style":400},[26173],{"type":50,"value":10638},{"type":44,"tag":100,"props":26175,"children":26176},{"style":390},[26177],{"type":50,"value":10643},{"type":44,"tag":124,"props":26179,"children":26180},{"id":13172},[26181],{"type":50,"value":13175},{"type":44,"tag":53,"props":26183,"children":26184},{},[26185],{"type":50,"value":13180},{"type":44,"tag":90,"props":26187,"children":26188},{"className":92,"code":13183,"language":94,"meta":7,"style":7},[26189],{"type":44,"tag":81,"props":26190,"children":26191},{"__ignoreMap":7},[26192],{"type":44,"tag":100,"props":26193,"children":26194},{"class":102,"line":103},[26195,26199,26203,26207,26211,26215,26219],{"type":44,"tag":100,"props":26196,"children":26197},{"style":107},[26198],{"type":50,"value":13195},{"type":44,"tag":100,"props":26200,"children":26201},{"style":119},[26202],{"type":50,"value":13200},{"type":44,"tag":100,"props":26204,"children":26205},{"style":113},[26206],{"type":50,"value":13205},{"type":44,"tag":100,"props":26208,"children":26209},{"style":119},[26210],{"type":50,"value":13210},{"type":44,"tag":100,"props":26212,"children":26213},{"style":113},[26214],{"type":50,"value":13215},{"type":44,"tag":100,"props":26216,"children":26217},{"style":119},[26218],{"type":50,"value":13220},{"type":44,"tag":100,"props":26220,"children":26221},{"style":119},[26222],{"type":50,"value":13225},{"type":44,"tag":53,"props":26224,"children":26225},{},[26226,26227,26231,26232,26236],{"type":50,"value":13230},{"type":44,"tag":13232,"props":26228,"children":26229},{"href":13234},[26230],{"type":50,"value":13237},{"type":50,"value":13239},{"type":44,"tag":13232,"props":26233,"children":26234},{"href":13234},[26235],{"type":50,"value":34},{"type":50,"value":13245},{"type":44,"tag":53,"props":26238,"children":26239},{},[26240],{"type":50,"value":13250},{"type":44,"tag":90,"props":26242,"children":26243},{"className":92,"code":13253,"language":94,"meta":7,"style":7},[26244],{"type":44,"tag":81,"props":26245,"children":26246},{"__ignoreMap":7},[26247],{"type":44,"tag":100,"props":26248,"children":26249},{"class":102,"line":103},[26250,26254,26258,26262,26266,26270,26274],{"type":44,"tag":100,"props":26251,"children":26252},{"style":107},[26253],{"type":50,"value":13195},{"type":44,"tag":100,"props":26255,"children":26256},{"style":119},[26257],{"type":50,"value":13200},{"type":44,"tag":100,"props":26259,"children":26260},{"style":113},[26261],{"type":50,"value":13205},{"type":44,"tag":100,"props":26263,"children":26264},{"style":119},[26265],{"type":50,"value":13277},{"type":44,"tag":100,"props":26267,"children":26268},{"style":113},[26269],{"type":50,"value":13215},{"type":44,"tag":100,"props":26271,"children":26272},{"style":119},[26273],{"type":50,"value":13286},{"type":44,"tag":100,"props":26275,"children":26276},{"style":119},[26277],{"type":50,"value":13225},{"type":44,"tag":53,"props":26279,"children":26280},{},[26281,26282,26287],{"type":50,"value":13295},{"type":44,"tag":81,"props":26283,"children":26285},{"className":26284},[],[26286],{"type":50,"value":13301},{"type":50,"value":13303},{"type":44,"tag":90,"props":26289,"children":26290},{"className":92,"code":13306,"language":94,"meta":7,"style":7},[26291],{"type":44,"tag":81,"props":26292,"children":26293},{"__ignoreMap":7},[26294],{"type":44,"tag":100,"props":26295,"children":26296},{"class":102,"line":103},[26297,26301,26305,26309,26313,26317,26321,26325],{"type":44,"tag":100,"props":26298,"children":26299},{"style":107},[26300],{"type":50,"value":13195},{"type":44,"tag":100,"props":26302,"children":26303},{"style":119},[26304],{"type":50,"value":13200},{"type":44,"tag":100,"props":26306,"children":26307},{"style":113},[26308],{"type":50,"value":13326},{"type":44,"tag":100,"props":26310,"children":26311},{"style":113},[26312],{"type":50,"value":13205},{"type":44,"tag":100,"props":26314,"children":26315},{"style":119},[26316],{"type":50,"value":13277},{"type":44,"tag":100,"props":26318,"children":26319},{"style":113},[26320],{"type":50,"value":13215},{"type":44,"tag":100,"props":26322,"children":26323},{"style":119},[26324],{"type":50,"value":13286},{"type":44,"tag":100,"props":26326,"children":26327},{"style":119},[26328],{"type":50,"value":13225},{"type":44,"tag":53,"props":26330,"children":26331},{},[26332],{"type":50,"value":13351},{"type":44,"tag":90,"props":26334,"children":26335},{"className":92,"code":13354,"language":94,"meta":7,"style":7},[26336],{"type":44,"tag":81,"props":26337,"children":26338},{"__ignoreMap":7},[26339],{"type":44,"tag":100,"props":26340,"children":26341},{"class":102,"line":103},[26342,26346,26350],{"type":44,"tag":100,"props":26343,"children":26344},{"style":107},[26345],{"type":50,"value":13195},{"type":44,"tag":100,"props":26347,"children":26348},{"style":119},[26349],{"type":50,"value":13370},{"type":44,"tag":100,"props":26351,"children":26352},{"style":119},[26353],{"type":50,"value":13225},{"type":44,"tag":124,"props":26355,"children":26356},{"id":13377},[26357],{"type":50,"value":13380},{"type":44,"tag":53,"props":26359,"children":26360},{},[26361],{"type":50,"value":13385},{"type":44,"tag":136,"props":26363,"children":26364},{},[26365],{"type":44,"tag":53,"props":26366,"children":26367},{},[26368],{"type":50,"value":13393},{"type":44,"tag":136,"props":26370,"children":26371},{},[26372],{"type":44,"tag":53,"props":26373,"children":26374},{},[26375],{"type":50,"value":13401},{"type":44,"tag":136,"props":26377,"children":26378},{},[26379],{"type":44,"tag":53,"props":26380,"children":26381},{},[26382],{"type":50,"value":13409},{"type":44,"tag":53,"props":26384,"children":26385},{},[26386],{"type":50,"value":13414},{"type":44,"tag":136,"props":26388,"children":26389},{},[26390],{"type":44,"tag":53,"props":26391,"children":26392},{},[26393],{"type":50,"value":13422},{"type":44,"tag":45,"props":26395,"children":26396},{"id":13425},[26397],{"type":50,"value":13428},{"type":44,"tag":13430,"props":26399,"children":26400},{},[26401,26409,26417,26425],{"type":44,"tag":13434,"props":26402,"children":26403},{},[26404,26408],{"type":44,"tag":185,"props":26405,"children":26406},{},[26407],{"type":50,"value":13441},{"type":50,"value":13443},{"type":44,"tag":13434,"props":26410,"children":26411},{},[26412,26416],{"type":44,"tag":185,"props":26413,"children":26414},{},[26415],{"type":50,"value":13451},{"type":50,"value":13453},{"type":44,"tag":13434,"props":26418,"children":26419},{},[26420,26424],{"type":44,"tag":185,"props":26421,"children":26422},{},[26423],{"type":50,"value":13461},{"type":50,"value":13463},{"type":44,"tag":13434,"props":26426,"children":26427},{},[26428,26432],{"type":44,"tag":185,"props":26429,"children":26430},{},[26431],{"type":50,"value":34},{"type":50,"value":13472},{"type":44,"tag":53,"props":26434,"children":26435},{},[26436],{"type":50,"value":13477},{"type":44,"tag":13479,"props":26438,"children":26439},{},[26440],{"type":50,"value":13483},{"title":7,"searchDepth":226,"depth":226,"links":26442},[26443,26444,26445,26455],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":26446},[26447,26448,26449,26450,26451,26452,26453,26454],{"id":126,"depth":235,"text":129},{"id":164,"depth":235,"text":13492},{"id":2230,"depth":235,"text":13494},{"id":5092,"depth":235,"text":13496},{"id":5366,"depth":235,"text":13498},{"id":9348,"depth":235,"text":13500},{"id":13172,"depth":235,"text":13175},{"id":13377,"depth":235,"text":13380},{"id":13425,"depth":226,"text":13428},[26457,27947,32602,40480,53426,55379],{"_path":26458,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":26459,"description":26460,"date":10,"readingTime":279,"category":12,"tags":26461,"difficulty":26463,"module":5,"subSteps":23,"step":103,"variants":26464,"journeys":26465,"learnMore":26466,"author":26476,"body":26477,"_type":13504,"_id":27944,"_source":13506,"_file":27945,"_stem":27946,"_extension":13509},"\u002Ftutorials\u002Fecommerce-pipeline\u002Fproject-setup","Set Up Your Project & Warehouse","Install Bruin CLI, initialize an ecommerce project, connect your data warehouse, and set up AI-assisted development with Claude Code and the Bruin MCP.",[14,15,26462,17,18,19,21],"MCP","Beginner",[17,18,19],[26,27],[26467,26470,26473],{"label":26468,"url":26469},"Bruin project structure (docs)","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fcore-concepts\u002Fproject.html",{"label":26471,"url":26472},"Connections reference","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fconnections\u002Foverview.html",{"label":26474,"url":26475},"Bruin MCP setup guide","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fgetting-started\u002Fbruin-mcp.html",{"name":37,"role":38,"image":39},{"type":41,"children":26478,"toc":27930},[26479,26483,26488,26494,26499,26553,26601,26605,26610,26615,26630,26634,26640,26653,26722,26727,26737,26743,26754,26784,26811,26817,26822,27482,27488,27500,27758,27764,27776,27820,27825,27833,27838,27867,27873,27878,27899,27904,27912,27917,27921,27926],{"type":44,"tag":45,"props":26480,"children":26481},{"id":47},[26482],{"type":50,"value":51},{"type":44,"tag":53,"props":26484,"children":26485},{},[26486],{"type":50,"value":26487},"Create a project, connect your data warehouse, and set up Claude Code with the Bruin MCP so it can help you build the rest of the pipeline.",{"type":44,"tag":45,"props":26489,"children":26491},{"id":26490},"prerequisites",[26492],{"type":50,"value":26493},"Prerequisites",{"type":44,"tag":53,"props":26495,"children":26496},{},[26497],{"type":50,"value":26498},"Before starting, make sure you have these installed:",{"type":44,"tag":13430,"props":26500,"children":26501},{},[26502,26529],{"type":44,"tag":13434,"props":26503,"children":26504},{},[26505,26510,26512,26520,26522,26528],{"type":44,"tag":185,"props":26506,"children":26507},{},[26508],{"type":50,"value":26509},"Git",{"type":50,"value":26511}," - ",{"type":44,"tag":13232,"props":26513,"children":26517},{"href":26514,"rel":26515},"https:\u002F\u002Fgit-scm.com\u002Fdownloads",[26516],"nofollow",[26518],{"type":50,"value":26519},"git-scm.com\u002Fdownloads",{"type":50,"value":26521},". Verify with ",{"type":44,"tag":81,"props":26523,"children":26525},{"className":26524},[],[26526],{"type":50,"value":26527},"git --version",{"type":50,"value":786},{"type":44,"tag":13434,"props":26530,"children":26531},{},[26532,26536,26538,26545,26546,26552],{"type":44,"tag":185,"props":26533,"children":26534},{},[26535],{"type":50,"value":14},{"type":50,"value":26537}," - install from the ",{"type":44,"tag":13232,"props":26539,"children":26542},{"href":26540,"rel":26541},"https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fgetting-started\u002Fintroduction\u002Finstallation.html",[26516],[26543],{"type":50,"value":26544},"installation docs",{"type":50,"value":26521},{"type":44,"tag":81,"props":26547,"children":26549},{"className":26548},[],[26550],{"type":50,"value":26551},"bruin version",{"type":50,"value":786},{"type":44,"tag":53,"props":26554,"children":26555},{},[26556,26558,26564,26566,26572,26573,26579,26580,26585,26586,26592,26594,26600],{"type":50,"value":26557},"If you're new to Bruin, the ",{"type":44,"tag":13232,"props":26559,"children":26561},{"href":26560},"\u002Flearn\u002Fcore-concepts",[26562],{"type":50,"value":26563},"Core Concepts",{"type":50,"value":26565}," module covers ",{"type":44,"tag":13232,"props":26567,"children":26569},{"href":26568},"\u002Flearn\u002Fcore-concepts\u002Fprojects",[26570],{"type":50,"value":26571},"projects",{"type":50,"value":750},{"type":44,"tag":13232,"props":26574,"children":26576},{"href":26575},"\u002Flearn\u002Fcore-concepts\u002Fpipelines",[26577],{"type":50,"value":26578},"pipelines",{"type":50,"value":750},{"type":44,"tag":13232,"props":26581,"children":26582},{"href":13234},[26583],{"type":50,"value":26584},"assets",{"type":50,"value":750},{"type":44,"tag":13232,"props":26587,"children":26589},{"href":26588},"\u002Flearn\u002Fcore-concepts\u002Fvariables",[26590],{"type":50,"value":26591},"variables",{"type":50,"value":26593},", and ",{"type":44,"tag":13232,"props":26595,"children":26597},{"href":26596},"\u002Flearn\u002Fcore-concepts\u002Fcommands",[26598],{"type":50,"value":26599},"commands",{"type":50,"value":786},{"type":44,"tag":45,"props":26602,"children":26603},{"id":60},[26604],{"type":50,"value":63},{"type":44,"tag":53,"props":26606,"children":26607},{},[26608],{"type":50,"value":26609},"Every data pipeline needs two things: an orchestration tool and a destination. Bruin is the orchestrator - it defines what data moves where and when. Your data warehouse is the destination where all your Shopify and ecommerce data will land and get transformed.",{"type":44,"tag":53,"props":26611,"children":26612},{},[26613],{"type":50,"value":26614},"We'll use Claude Code throughout this tutorial to help create files, write SQL, run validations, and troubleshoot issues. Setting up the Bruin MCP early gives Claude Code direct access to your pipeline and warehouse from Step 2 onward.",{"type":44,"tag":5108,"props":26616,"children":26617},{},[26618],{"type":44,"tag":53,"props":26619,"children":26620},{},[26621,26623,26629],{"type":50,"value":26622},"If you already have a Bruin project, skip ahead to ",{"type":44,"tag":13232,"props":26624,"children":26626},{"href":26625},"\u002Flearn\u002Fecommerce-pipeline\u002Fingest-data",[26627],{"type":50,"value":26628},"Step 2: Ingest Your Data",{"type":50,"value":786},{"type":44,"tag":45,"props":26631,"children":26632},{"id":71},[26633],{"type":50,"value":74},{"type":44,"tag":124,"props":26635,"children":26637},{"id":26636},"_1-initialize-a-project",[26638],{"type":50,"value":26639},"1) Initialize a project",{"type":44,"tag":53,"props":26641,"children":26642},{},[26643,26645,26651],{"type":50,"value":26644},"Create a folder for your project, initialize git, then run ",{"type":44,"tag":81,"props":26646,"children":26648},{"className":26647},[],[26649],{"type":50,"value":26650},"bruin init",{"type":50,"value":26652}," inside it:",{"type":44,"tag":90,"props":26654,"children":26656},{"className":92,"code":26655,"language":94,"meta":7,"style":7},"mkdir ecommerce-analytics && cd ecommerce-analytics\ngit init\nbruin init empty ecommerce\n",[26657],{"type":44,"tag":81,"props":26658,"children":26659},{"__ignoreMap":7},[26660,26687,26700],{"type":44,"tag":100,"props":26661,"children":26662},{"class":102,"line":103},[26663,26667,26672,26677,26682],{"type":44,"tag":100,"props":26664,"children":26665},{"style":107},[26666],{"type":50,"value":110},{"type":44,"tag":100,"props":26668,"children":26669},{"style":119},[26670],{"type":50,"value":26671}," ecommerce-analytics",{"type":44,"tag":100,"props":26673,"children":26674},{"style":400},[26675],{"type":50,"value":26676}," && ",{"type":44,"tag":100,"props":26678,"children":26679},{"style":113},[26680],{"type":50,"value":26681},"cd",{"type":44,"tag":100,"props":26683,"children":26684},{"style":119},[26685],{"type":50,"value":26686}," ecommerce-analytics\n",{"type":44,"tag":100,"props":26688,"children":26689},{"class":102,"line":226},[26690,26695],{"type":44,"tag":100,"props":26691,"children":26692},{"style":107},[26693],{"type":50,"value":26694},"git",{"type":44,"tag":100,"props":26696,"children":26697},{"style":119},[26698],{"type":50,"value":26699}," init\n",{"type":44,"tag":100,"props":26701,"children":26702},{"class":102,"line":235},[26703,26707,26712,26717],{"type":44,"tag":100,"props":26704,"children":26705},{"style":107},[26706],{"type":50,"value":13195},{"type":44,"tag":100,"props":26708,"children":26709},{"style":119},[26710],{"type":50,"value":26711}," init",{"type":44,"tag":100,"props":26713,"children":26714},{"style":119},[26715],{"type":50,"value":26716}," empty",{"type":44,"tag":100,"props":26718,"children":26719},{"style":119},[26720],{"type":50,"value":26721}," ecommerce\n",{"type":44,"tag":53,"props":26723,"children":26724},{},[26725],{"type":50,"value":26726},"This creates the following structure:",{"type":44,"tag":90,"props":26728,"children":26732},{"className":26729,"code":26731,"language":50},[26730],"language-text","ecommerce-analytics\u002F\n├── .bruin.yml            # project config - connections, environments\n└── ecommerce\u002F            # pipeline folder\n    ├── pipeline.yml      # pipeline config - name, schedule, defaults\n    └── assets\u002F           # where your data assets will live\n",[26733],{"type":44,"tag":81,"props":26734,"children":26735},{"__ignoreMap":7},[26736],{"type":50,"value":26731},{"type":44,"tag":124,"props":26738,"children":26740},{"id":26739},"_2-add-bruinyml-to-gitignore",[26741],{"type":50,"value":26742},"2) Add .bruin.yml to .gitignore",{"type":44,"tag":53,"props":26744,"children":26745},{},[26746,26752],{"type":44,"tag":81,"props":26747,"children":26749},{"className":26748},[],[26750],{"type":50,"value":26751},".bruin.yml",{"type":50,"value":26753}," stores your connection credentials (database passwords, API keys). You don't want these in git.",{"type":44,"tag":90,"props":26755,"children":26757},{"className":92,"code":26756,"language":94,"meta":7,"style":7},"echo \".bruin.yml\" >> .gitignore\n",[26758],{"type":44,"tag":81,"props":26759,"children":26760},{"__ignoreMap":7},[26761],{"type":44,"tag":100,"props":26762,"children":26763},{"class":102,"line":103},[26764,26769,26774,26779],{"type":44,"tag":100,"props":26765,"children":26766},{"style":113},[26767],{"type":50,"value":26768},"echo",{"type":44,"tag":100,"props":26770,"children":26771},{"style":119},[26772],{"type":50,"value":26773}," \".bruin.yml\"",{"type":44,"tag":100,"props":26775,"children":26776},{"style":390},[26777],{"type":50,"value":26778}," >>",{"type":44,"tag":100,"props":26780,"children":26781},{"style":119},[26782],{"type":50,"value":26783}," .gitignore\n",{"type":44,"tag":53,"props":26785,"children":26786},{},[26787,26792,26794,26800,26802,26809],{"type":44,"tag":81,"props":26788,"children":26790},{"className":26789},[],[26791],{"type":50,"value":26650},{"type":50,"value":26793}," may already add this for you - check your ",{"type":44,"tag":81,"props":26795,"children":26797},{"className":26796},[],[26798],{"type":50,"value":26799},".gitignore",{"type":50,"value":26801}," to confirm. When you deploy to production, connections are configured securely in ",{"type":44,"tag":13232,"props":26803,"children":26806},{"href":26804,"rel":26805},"https:\u002F\u002Fcloud.getbruin.com",[26516],[26807],{"type":50,"value":26808},"Bruin Cloud",{"type":50,"value":26810}," instead of the local file - we'll set that up in Step 5.",{"type":44,"tag":124,"props":26812,"children":26814},{"id":26813},"_3-connect-your-data-warehouse",[26815],{"type":50,"value":26816},"3) Connect your data warehouse",{"type":44,"tag":53,"props":26818,"children":26819},{},[26820],{"type":50,"value":26821},"Pick the tab that matches the warehouse you selected on the overview page.",{"type":44,"tag":197,"props":26823,"children":26824},{":variants":199,"group":200},[26825,26994,27317],{"type":44,"tag":203,"props":26826,"children":26827},{"v-slot:clickhouse":7},[26828,26833,26871,26895,26900,26943,26948,26981],{"type":44,"tag":124,"props":26829,"children":26831},{"id":26830},"clickhouse",[26832],{"type":50,"value":17},{"type":44,"tag":53,"props":26834,"children":26835},{},[26836,26838,26845,26847,26852,26853,26858,26859,26864,26865,26870],{"type":50,"value":26837},"If you don't have a ClickHouse instance yet, go to ",{"type":44,"tag":13232,"props":26839,"children":26842},{"href":26840,"rel":26841},"https:\u002F\u002Fclickhouse.com\u002Fcloud",[26516],[26843],{"type":50,"value":26844},"clickhouse.com\u002Fcloud",{"type":50,"value":26846}," and sign up for the free tier. Create a new service and copy the ",{"type":44,"tag":185,"props":26848,"children":26849},{},[26850],{"type":50,"value":26851},"host",{"type":50,"value":750},{"type":44,"tag":185,"props":26854,"children":26855},{},[26856],{"type":50,"value":26857},"port",{"type":50,"value":750},{"type":44,"tag":185,"props":26860,"children":26861},{},[26862],{"type":50,"value":26863},"username",{"type":50,"value":26593},{"type":44,"tag":185,"props":26866,"children":26867},{},[26868],{"type":50,"value":26869},"password",{"type":50,"value":786},{"type":44,"tag":90,"props":26872,"children":26874},{"className":92,"code":26873,"language":94,"meta":7,"style":7},"bruin connections add\n",[26875],{"type":44,"tag":81,"props":26876,"children":26877},{"__ignoreMap":7},[26878],{"type":44,"tag":100,"props":26879,"children":26880},{"class":102,"line":103},[26881,26885,26890],{"type":44,"tag":100,"props":26882,"children":26883},{"style":107},[26884],{"type":50,"value":13195},{"type":44,"tag":100,"props":26886,"children":26887},{"style":119},[26888],{"type":50,"value":26889}," connections",{"type":44,"tag":100,"props":26891,"children":26892},{"style":119},[26893],{"type":50,"value":26894}," add\n",{"type":44,"tag":53,"props":26896,"children":26897},{},[26898],{"type":50,"value":26899},"When prompted:",{"type":44,"tag":13430,"props":26901,"children":26902},{},[26903,26918,26933],{"type":44,"tag":13434,"props":26904,"children":26905},{},[26906,26911,26913],{"type":44,"tag":185,"props":26907,"children":26908},{},[26909],{"type":50,"value":26910},"Type:",{"type":50,"value":26912}," ",{"type":44,"tag":81,"props":26914,"children":26916},{"className":26915},[],[26917],{"type":50,"value":26830},{"type":44,"tag":13434,"props":26919,"children":26920},{},[26921,26926,26927],{"type":44,"tag":185,"props":26922,"children":26923},{},[26924],{"type":50,"value":26925},"Name:",{"type":50,"value":26912},{"type":44,"tag":81,"props":26928,"children":26930},{"className":26929},[],[26931],{"type":50,"value":26932},"clickhouse-default",{"type":44,"tag":13434,"props":26934,"children":26935},{},[26936,26941],{"type":44,"tag":185,"props":26937,"children":26938},{},[26939],{"type":50,"value":26940},"Host, port, username, password:",{"type":50,"value":26942}," paste the values from your ClickHouse Cloud service",{"type":44,"tag":53,"props":26944,"children":26945},{},[26946],{"type":50,"value":26947},"Test the connection:",{"type":44,"tag":90,"props":26949,"children":26951},{"className":92,"code":26950,"language":94,"meta":7,"style":7},"bruin connections test --name clickhouse-default\n",[26952],{"type":44,"tag":81,"props":26953,"children":26954},{"__ignoreMap":7},[26955],{"type":44,"tag":100,"props":26956,"children":26957},{"class":102,"line":103},[26958,26962,26966,26971,26976],{"type":44,"tag":100,"props":26959,"children":26960},{"style":107},[26961],{"type":50,"value":13195},{"type":44,"tag":100,"props":26963,"children":26964},{"style":119},[26965],{"type":50,"value":26889},{"type":44,"tag":100,"props":26967,"children":26968},{"style":119},[26969],{"type":50,"value":26970}," test",{"type":44,"tag":100,"props":26972,"children":26973},{"style":113},[26974],{"type":50,"value":26975}," --name",{"type":44,"tag":100,"props":26977,"children":26978},{"style":119},[26979],{"type":50,"value":26980}," clickhouse-default\n",{"type":44,"tag":53,"props":26982,"children":26983},{},[26984,26986,26993],{"type":50,"value":26985},"For full connection options, see the ",{"type":44,"tag":13232,"props":26987,"children":26990},{"href":26988,"rel":26989},"https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fplatforms\u002Fclickhouse.html",[26516],[26991],{"type":50,"value":26992},"ClickHouse platform docs",{"type":50,"value":786},{"type":44,"tag":203,"props":26995,"children":26996},{"v-slot:bigquery":7},[26997,27002,27010,27040,27045,27066,27070,27134,27142,27154,27270,27274,27305],{"type":44,"tag":124,"props":26998,"children":27000},{"id":26999},"bigquery",[27001],{"type":50,"value":18},{"type":44,"tag":53,"props":27003,"children":27004},{},[27005],{"type":44,"tag":185,"props":27006,"children":27007},{},[27008],{"type":50,"value":27009},"Option A: Application Default Credentials (personal account)",{"type":44,"tag":90,"props":27011,"children":27013},{"className":92,"code":27012,"language":94,"meta":7,"style":7},"gcloud auth application-default login\n",[27014],{"type":44,"tag":81,"props":27015,"children":27016},{"__ignoreMap":7},[27017],{"type":44,"tag":100,"props":27018,"children":27019},{"class":102,"line":103},[27020,27025,27030,27035],{"type":44,"tag":100,"props":27021,"children":27022},{"style":107},[27023],{"type":50,"value":27024},"gcloud",{"type":44,"tag":100,"props":27026,"children":27027},{"style":119},[27028],{"type":50,"value":27029}," auth",{"type":44,"tag":100,"props":27031,"children":27032},{"style":119},[27033],{"type":50,"value":27034}," application-default",{"type":44,"tag":100,"props":27036,"children":27037},{"style":119},[27038],{"type":50,"value":27039}," login\n",{"type":44,"tag":53,"props":27041,"children":27042},{},[27043],{"type":50,"value":27044},"This opens a browser for Google sign-in. Once done, run:",{"type":44,"tag":90,"props":27046,"children":27047},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[27048],{"type":44,"tag":81,"props":27049,"children":27050},{"__ignoreMap":7},[27051],{"type":44,"tag":100,"props":27052,"children":27053},{"class":102,"line":103},[27054,27058,27062],{"type":44,"tag":100,"props":27055,"children":27056},{"style":107},[27057],{"type":50,"value":13195},{"type":44,"tag":100,"props":27059,"children":27060},{"style":119},[27061],{"type":50,"value":26889},{"type":44,"tag":100,"props":27063,"children":27064},{"style":119},[27065],{"type":50,"value":26894},{"type":44,"tag":53,"props":27067,"children":27068},{},[27069],{"type":50,"value":26899},{"type":44,"tag":13430,"props":27071,"children":27072},{},[27073,27087,27101,27111],{"type":44,"tag":13434,"props":27074,"children":27075},{},[27076,27080,27081],{"type":44,"tag":185,"props":27077,"children":27078},{},[27079],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":27082,"children":27084},{"className":27083},[],[27085],{"type":50,"value":27086},"google_cloud_platform",{"type":44,"tag":13434,"props":27088,"children":27089},{},[27090,27094,27095],{"type":44,"tag":185,"props":27091,"children":27092},{},[27093],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":27096,"children":27098},{"className":27097},[],[27099],{"type":50,"value":27100},"bigquery-default",{"type":44,"tag":13434,"props":27102,"children":27103},{},[27104,27109],{"type":44,"tag":185,"props":27105,"children":27106},{},[27107],{"type":50,"value":27108},"Project ID:",{"type":50,"value":27110}," your GCP project ID",{"type":44,"tag":13434,"props":27112,"children":27113},{},[27114,27119,27120,27126,27128],{"type":44,"tag":185,"props":27115,"children":27116},{},[27117],{"type":50,"value":27118},"Credential method:",{"type":50,"value":26912},{"type":44,"tag":81,"props":27121,"children":27123},{"className":27122},[],[27124],{"type":50,"value":27125},"use_application_default_credentials",{"type":50,"value":27127}," set to ",{"type":44,"tag":81,"props":27129,"children":27131},{"className":27130},[],[27132],{"type":50,"value":27133},"true",{"type":44,"tag":53,"props":27135,"children":27136},{},[27137],{"type":44,"tag":185,"props":27138,"children":27139},{},[27140],{"type":50,"value":27141},"Option B: Service Account Key File",{"type":44,"tag":53,"props":27143,"children":27144},{},[27145,27147,27152],{"type":50,"value":27146},"Edit ",{"type":44,"tag":81,"props":27148,"children":27150},{"className":27149},[],[27151],{"type":50,"value":26751},{"type":50,"value":27153}," directly:",{"type":44,"tag":90,"props":27155,"children":27159},{"className":27156,"code":27157,"language":27158,"meta":7,"style":7},"language-yaml shiki shiki-themes github-dark","environments:\n  default:\n    connections:\n      google_cloud_platform:\n        - name: \"bigquery-default\"\n          project_id: \"your-gcp-project-id\"\n          service_account_file: \"\u002Fpath\u002Fto\u002Fyour-service-account.json\"\n","yaml",[27160],{"type":44,"tag":81,"props":27161,"children":27162},{"__ignoreMap":7},[27163,27177,27189,27201,27213,27236,27253],{"type":44,"tag":100,"props":27164,"children":27165},{"class":102,"line":103},[27166,27172],{"type":44,"tag":100,"props":27167,"children":27169},{"style":27168},"--shiki-default:#85E89D",[27170],{"type":50,"value":27171},"environments",{"type":44,"tag":100,"props":27173,"children":27174},{"style":400},[27175],{"type":50,"value":27176},":\n",{"type":44,"tag":100,"props":27178,"children":27179},{"class":102,"line":226},[27180,27185],{"type":44,"tag":100,"props":27181,"children":27182},{"style":27168},[27183],{"type":50,"value":27184},"  default",{"type":44,"tag":100,"props":27186,"children":27187},{"style":400},[27188],{"type":50,"value":27176},{"type":44,"tag":100,"props":27190,"children":27191},{"class":102,"line":235},[27192,27197],{"type":44,"tag":100,"props":27193,"children":27194},{"style":27168},[27195],{"type":50,"value":27196},"    connections",{"type":44,"tag":100,"props":27198,"children":27199},{"style":400},[27200],{"type":50,"value":27176},{"type":44,"tag":100,"props":27202,"children":27203},{"class":102,"line":24},[27204,27209],{"type":44,"tag":100,"props":27205,"children":27206},{"style":27168},[27207],{"type":50,"value":27208},"      google_cloud_platform",{"type":44,"tag":100,"props":27210,"children":27211},{"style":400},[27212],{"type":50,"value":27176},{"type":44,"tag":100,"props":27214,"children":27215},{"class":102,"line":252},[27216,27221,27226,27231],{"type":44,"tag":100,"props":27217,"children":27218},{"style":400},[27219],{"type":50,"value":27220},"        - ",{"type":44,"tag":100,"props":27222,"children":27223},{"style":27168},[27224],{"type":50,"value":27225},"name",{"type":44,"tag":100,"props":27227,"children":27228},{"style":400},[27229],{"type":50,"value":27230},": ",{"type":44,"tag":100,"props":27232,"children":27233},{"style":119},[27234],{"type":50,"value":27235},"\"bigquery-default\"\n",{"type":44,"tag":100,"props":27237,"children":27238},{"class":102,"line":261},[27239,27244,27248],{"type":44,"tag":100,"props":27240,"children":27241},{"style":27168},[27242],{"type":50,"value":27243},"          project_id",{"type":44,"tag":100,"props":27245,"children":27246},{"style":400},[27247],{"type":50,"value":27230},{"type":44,"tag":100,"props":27249,"children":27250},{"style":119},[27251],{"type":50,"value":27252},"\"your-gcp-project-id\"\n",{"type":44,"tag":100,"props":27254,"children":27255},{"class":102,"line":270},[27256,27261,27265],{"type":44,"tag":100,"props":27257,"children":27258},{"style":27168},[27259],{"type":50,"value":27260},"          service_account_file",{"type":44,"tag":100,"props":27262,"children":27263},{"style":400},[27264],{"type":50,"value":27230},{"type":44,"tag":100,"props":27266,"children":27267},{"style":119},[27268],{"type":50,"value":27269},"\"\u002Fpath\u002Fto\u002Fyour-service-account.json\"\n",{"type":44,"tag":53,"props":27271,"children":27272},{},[27273],{"type":50,"value":26947},{"type":44,"tag":90,"props":27275,"children":27277},{"className":92,"code":27276,"language":94,"meta":7,"style":7},"bruin connections test --name bigquery-default\n",[27278],{"type":44,"tag":81,"props":27279,"children":27280},{"__ignoreMap":7},[27281],{"type":44,"tag":100,"props":27282,"children":27283},{"class":102,"line":103},[27284,27288,27292,27296,27300],{"type":44,"tag":100,"props":27285,"children":27286},{"style":107},[27287],{"type":50,"value":13195},{"type":44,"tag":100,"props":27289,"children":27290},{"style":119},[27291],{"type":50,"value":26889},{"type":44,"tag":100,"props":27293,"children":27294},{"style":119},[27295],{"type":50,"value":26970},{"type":44,"tag":100,"props":27297,"children":27298},{"style":113},[27299],{"type":50,"value":26975},{"type":44,"tag":100,"props":27301,"children":27302},{"style":119},[27303],{"type":50,"value":27304}," bigquery-default\n",{"type":44,"tag":53,"props":27306,"children":27307},{},[27308,27309,27316],{"type":50,"value":26985},{"type":44,"tag":13232,"props":27310,"children":27313},{"href":27311,"rel":27312},"https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fplatforms\u002Fbigquery.html",[26516],[27314],{"type":50,"value":27315},"BigQuery platform docs",{"type":50,"value":786},{"type":44,"tag":203,"props":27318,"children":27319},{"v-slot:snowflake":7},[27320,27325,27346,27350,27435,27439,27470],{"type":44,"tag":124,"props":27321,"children":27323},{"id":27322},"snowflake",[27324],{"type":50,"value":19},{"type":44,"tag":90,"props":27326,"children":27327},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[27328],{"type":44,"tag":81,"props":27329,"children":27330},{"__ignoreMap":7},[27331],{"type":44,"tag":100,"props":27332,"children":27333},{"class":102,"line":103},[27334,27338,27342],{"type":44,"tag":100,"props":27335,"children":27336},{"style":107},[27337],{"type":50,"value":13195},{"type":44,"tag":100,"props":27339,"children":27340},{"style":119},[27341],{"type":50,"value":26889},{"type":44,"tag":100,"props":27343,"children":27344},{"style":119},[27345],{"type":50,"value":26894},{"type":44,"tag":53,"props":27347,"children":27348},{},[27349],{"type":50,"value":26899},{"type":44,"tag":13430,"props":27351,"children":27352},{},[27353,27366,27380,27398,27408,27418],{"type":44,"tag":13434,"props":27354,"children":27355},{},[27356,27360,27361],{"type":44,"tag":185,"props":27357,"children":27358},{},[27359],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":27362,"children":27364},{"className":27363},[],[27365],{"type":50,"value":27322},{"type":44,"tag":13434,"props":27367,"children":27368},{},[27369,27373,27374],{"type":44,"tag":185,"props":27370,"children":27371},{},[27372],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":27375,"children":27377},{"className":27376},[],[27378],{"type":50,"value":27379},"snowflake-default",{"type":44,"tag":13434,"props":27381,"children":27382},{},[27383,27388,27390,27396],{"type":44,"tag":185,"props":27384,"children":27385},{},[27386],{"type":50,"value":27387},"Account:",{"type":50,"value":27389}," your Snowflake account identifier (e.g. ",{"type":44,"tag":81,"props":27391,"children":27393},{"className":27392},[],[27394],{"type":50,"value":27395},"abc12345.us-east-1",{"type":50,"value":27397},")",{"type":44,"tag":13434,"props":27399,"children":27400},{},[27401,27406],{"type":44,"tag":185,"props":27402,"children":27403},{},[27404],{"type":50,"value":27405},"Username and password:",{"type":50,"value":27407}," your Snowflake credentials",{"type":44,"tag":13434,"props":27409,"children":27410},{},[27411,27416],{"type":44,"tag":185,"props":27412,"children":27413},{},[27414],{"type":50,"value":27415},"Database and warehouse:",{"type":50,"value":27417}," your target database and compute warehouse",{"type":44,"tag":13434,"props":27419,"children":27420},{},[27421,27426,27427,27433],{"type":44,"tag":185,"props":27422,"children":27423},{},[27424],{"type":50,"value":27425},"Schema",{"type":50,"value":26912},{"type":44,"tag":27428,"props":27429,"children":27430},"em",{},[27431],{"type":50,"value":27432},"(optional):",{"type":50,"value":27434}," default schema to use",{"type":44,"tag":53,"props":27436,"children":27437},{},[27438],{"type":50,"value":26947},{"type":44,"tag":90,"props":27440,"children":27442},{"className":92,"code":27441,"language":94,"meta":7,"style":7},"bruin connections test --name snowflake-default\n",[27443],{"type":44,"tag":81,"props":27444,"children":27445},{"__ignoreMap":7},[27446],{"type":44,"tag":100,"props":27447,"children":27448},{"class":102,"line":103},[27449,27453,27457,27461,27465],{"type":44,"tag":100,"props":27450,"children":27451},{"style":107},[27452],{"type":50,"value":13195},{"type":44,"tag":100,"props":27454,"children":27455},{"style":119},[27456],{"type":50,"value":26889},{"type":44,"tag":100,"props":27458,"children":27459},{"style":119},[27460],{"type":50,"value":26970},{"type":44,"tag":100,"props":27462,"children":27463},{"style":113},[27464],{"type":50,"value":26975},{"type":44,"tag":100,"props":27466,"children":27467},{"style":119},[27468],{"type":50,"value":27469}," snowflake-default\n",{"type":44,"tag":53,"props":27471,"children":27472},{},[27473,27474,27481],{"type":50,"value":26985},{"type":44,"tag":13232,"props":27475,"children":27478},{"href":27476,"rel":27477},"https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fplatforms\u002Fsnowflake.html",[26516],[27479],{"type":50,"value":27480},"Snowflake platform docs",{"type":50,"value":786},{"type":44,"tag":124,"props":27483,"children":27485},{"id":27484},"_4-configure-the-pipeline",[27486],{"type":50,"value":27487},"4) Configure the pipeline",{"type":44,"tag":53,"props":27489,"children":27490},{},[27491,27492,27498],{"type":50,"value":27146},{"type":44,"tag":81,"props":27493,"children":27495},{"className":27494},[],[27496],{"type":50,"value":27497},"ecommerce\u002Fpipeline.yml",{"type":50,"value":27499}," to set the default connection and schedule:",{"type":44,"tag":197,"props":27501,"children":27502},{":variants":199,"group":200},[27503,27592,27675],{"type":44,"tag":203,"props":27504,"children":27505},{"v-slot:clickhouse":7},[27506],{"type":44,"tag":90,"props":27507,"children":27509},{"className":27156,"code":27508,"language":27158,"meta":7,"style":7},"name: ecommerce\nschedule: daily\nstart_date: \"2024-01-01\"\ndefault_connections:\n  clickhouse: clickhouse-default\n",[27510],{"type":44,"tag":81,"props":27511,"children":27512},{"__ignoreMap":7},[27513,27529,27546,27563,27575],{"type":44,"tag":100,"props":27514,"children":27515},{"class":102,"line":103},[27516,27520,27524],{"type":44,"tag":100,"props":27517,"children":27518},{"style":27168},[27519],{"type":50,"value":27225},{"type":44,"tag":100,"props":27521,"children":27522},{"style":400},[27523],{"type":50,"value":27230},{"type":44,"tag":100,"props":27525,"children":27526},{"style":119},[27527],{"type":50,"value":27528},"ecommerce\n",{"type":44,"tag":100,"props":27530,"children":27531},{"class":102,"line":226},[27532,27537,27541],{"type":44,"tag":100,"props":27533,"children":27534},{"style":27168},[27535],{"type":50,"value":27536},"schedule",{"type":44,"tag":100,"props":27538,"children":27539},{"style":400},[27540],{"type":50,"value":27230},{"type":44,"tag":100,"props":27542,"children":27543},{"style":119},[27544],{"type":50,"value":27545},"daily\n",{"type":44,"tag":100,"props":27547,"children":27548},{"class":102,"line":235},[27549,27554,27558],{"type":44,"tag":100,"props":27550,"children":27551},{"style":27168},[27552],{"type":50,"value":27553},"start_date",{"type":44,"tag":100,"props":27555,"children":27556},{"style":400},[27557],{"type":50,"value":27230},{"type":44,"tag":100,"props":27559,"children":27560},{"style":119},[27561],{"type":50,"value":27562},"\"2024-01-01\"\n",{"type":44,"tag":100,"props":27564,"children":27565},{"class":102,"line":24},[27566,27571],{"type":44,"tag":100,"props":27567,"children":27568},{"style":27168},[27569],{"type":50,"value":27570},"default_connections",{"type":44,"tag":100,"props":27572,"children":27573},{"style":400},[27574],{"type":50,"value":27176},{"type":44,"tag":100,"props":27576,"children":27577},{"class":102,"line":252},[27578,27583,27587],{"type":44,"tag":100,"props":27579,"children":27580},{"style":27168},[27581],{"type":50,"value":27582},"  clickhouse",{"type":44,"tag":100,"props":27584,"children":27585},{"style":400},[27586],{"type":50,"value":27230},{"type":44,"tag":100,"props":27588,"children":27589},{"style":119},[27590],{"type":50,"value":27591},"clickhouse-default\n",{"type":44,"tag":203,"props":27593,"children":27594},{"v-slot:bigquery":7},[27595],{"type":44,"tag":90,"props":27596,"children":27598},{"className":27156,"code":27597,"language":27158,"meta":7,"style":7},"name: ecommerce\nschedule: daily\nstart_date: \"2024-01-01\"\ndefault_connections:\n  google_cloud_platform: bigquery-default\n",[27599],{"type":44,"tag":81,"props":27600,"children":27601},{"__ignoreMap":7},[27602,27617,27632,27647,27658],{"type":44,"tag":100,"props":27603,"children":27604},{"class":102,"line":103},[27605,27609,27613],{"type":44,"tag":100,"props":27606,"children":27607},{"style":27168},[27608],{"type":50,"value":27225},{"type":44,"tag":100,"props":27610,"children":27611},{"style":400},[27612],{"type":50,"value":27230},{"type":44,"tag":100,"props":27614,"children":27615},{"style":119},[27616],{"type":50,"value":27528},{"type":44,"tag":100,"props":27618,"children":27619},{"class":102,"line":226},[27620,27624,27628],{"type":44,"tag":100,"props":27621,"children":27622},{"style":27168},[27623],{"type":50,"value":27536},{"type":44,"tag":100,"props":27625,"children":27626},{"style":400},[27627],{"type":50,"value":27230},{"type":44,"tag":100,"props":27629,"children":27630},{"style":119},[27631],{"type":50,"value":27545},{"type":44,"tag":100,"props":27633,"children":27634},{"class":102,"line":235},[27635,27639,27643],{"type":44,"tag":100,"props":27636,"children":27637},{"style":27168},[27638],{"type":50,"value":27553},{"type":44,"tag":100,"props":27640,"children":27641},{"style":400},[27642],{"type":50,"value":27230},{"type":44,"tag":100,"props":27644,"children":27645},{"style":119},[27646],{"type":50,"value":27562},{"type":44,"tag":100,"props":27648,"children":27649},{"class":102,"line":24},[27650,27654],{"type":44,"tag":100,"props":27651,"children":27652},{"style":27168},[27653],{"type":50,"value":27570},{"type":44,"tag":100,"props":27655,"children":27656},{"style":400},[27657],{"type":50,"value":27176},{"type":44,"tag":100,"props":27659,"children":27660},{"class":102,"line":252},[27661,27666,27670],{"type":44,"tag":100,"props":27662,"children":27663},{"style":27168},[27664],{"type":50,"value":27665},"  google_cloud_platform",{"type":44,"tag":100,"props":27667,"children":27668},{"style":400},[27669],{"type":50,"value":27230},{"type":44,"tag":100,"props":27671,"children":27672},{"style":119},[27673],{"type":50,"value":27674},"bigquery-default\n",{"type":44,"tag":203,"props":27676,"children":27677},{"v-slot:snowflake":7},[27678],{"type":44,"tag":90,"props":27679,"children":27681},{"className":27156,"code":27680,"language":27158,"meta":7,"style":7},"name: ecommerce\nschedule: daily\nstart_date: \"2024-01-01\"\ndefault_connections:\n  snowflake: snowflake-default\n",[27682],{"type":44,"tag":81,"props":27683,"children":27684},{"__ignoreMap":7},[27685,27700,27715,27730,27741],{"type":44,"tag":100,"props":27686,"children":27687},{"class":102,"line":103},[27688,27692,27696],{"type":44,"tag":100,"props":27689,"children":27690},{"style":27168},[27691],{"type":50,"value":27225},{"type":44,"tag":100,"props":27693,"children":27694},{"style":400},[27695],{"type":50,"value":27230},{"type":44,"tag":100,"props":27697,"children":27698},{"style":119},[27699],{"type":50,"value":27528},{"type":44,"tag":100,"props":27701,"children":27702},{"class":102,"line":226},[27703,27707,27711],{"type":44,"tag":100,"props":27704,"children":27705},{"style":27168},[27706],{"type":50,"value":27536},{"type":44,"tag":100,"props":27708,"children":27709},{"style":400},[27710],{"type":50,"value":27230},{"type":44,"tag":100,"props":27712,"children":27713},{"style":119},[27714],{"type":50,"value":27545},{"type":44,"tag":100,"props":27716,"children":27717},{"class":102,"line":235},[27718,27722,27726],{"type":44,"tag":100,"props":27719,"children":27720},{"style":27168},[27721],{"type":50,"value":27553},{"type":44,"tag":100,"props":27723,"children":27724},{"style":400},[27725],{"type":50,"value":27230},{"type":44,"tag":100,"props":27727,"children":27728},{"style":119},[27729],{"type":50,"value":27562},{"type":44,"tag":100,"props":27731,"children":27732},{"class":102,"line":24},[27733,27737],{"type":44,"tag":100,"props":27734,"children":27735},{"style":27168},[27736],{"type":50,"value":27570},{"type":44,"tag":100,"props":27738,"children":27739},{"style":400},[27740],{"type":50,"value":27176},{"type":44,"tag":100,"props":27742,"children":27743},{"class":102,"line":252},[27744,27749,27753],{"type":44,"tag":100,"props":27745,"children":27746},{"style":27168},[27747],{"type":50,"value":27748},"  snowflake",{"type":44,"tag":100,"props":27750,"children":27751},{"style":400},[27752],{"type":50,"value":27230},{"type":44,"tag":100,"props":27754,"children":27755},{"style":119},[27756],{"type":50,"value":27757},"snowflake-default\n",{"type":44,"tag":124,"props":27759,"children":27761},{"id":27760},"_5-set-up-claude-code-with-bruin-mcp",[27762],{"type":50,"value":27763},"5) Set up Claude Code with Bruin MCP",{"type":44,"tag":53,"props":27765,"children":27766},{},[27767,27769,27774],{"type":50,"value":27768},"The Bruin MCP connects Claude Code directly to your pipeline and warehouse. Once it's set up, Claude Code can read your asset files, run ",{"type":44,"tag":81,"props":27770,"children":27772},{"className":27771},[],[27773],{"type":50,"value":13195},{"type":50,"value":27775}," commands, query your warehouse, and look up Bruin documentation - all without you having to copy-paste anything.",{"type":44,"tag":90,"props":27777,"children":27779},{"className":92,"code":27778,"language":94,"meta":7,"style":7},"claude mcp add bruin -- bruin mcp\n",[27780],{"type":44,"tag":81,"props":27781,"children":27782},{"__ignoreMap":7},[27783],{"type":44,"tag":100,"props":27784,"children":27785},{"class":102,"line":103},[27786,27791,27796,27801,27806,27811,27815],{"type":44,"tag":100,"props":27787,"children":27788},{"style":107},[27789],{"type":50,"value":27790},"claude",{"type":44,"tag":100,"props":27792,"children":27793},{"style":119},[27794],{"type":50,"value":27795}," mcp",{"type":44,"tag":100,"props":27797,"children":27798},{"style":119},[27799],{"type":50,"value":27800}," add",{"type":44,"tag":100,"props":27802,"children":27803},{"style":119},[27804],{"type":50,"value":27805}," bruin",{"type":44,"tag":100,"props":27807,"children":27808},{"style":113},[27809],{"type":50,"value":27810}," --",{"type":44,"tag":100,"props":27812,"children":27813},{"style":119},[27814],{"type":50,"value":27805},{"type":44,"tag":100,"props":27816,"children":27817},{"style":119},[27818],{"type":50,"value":27819}," mcp\n",{"type":44,"tag":53,"props":27821,"children":27822},{},[27823],{"type":50,"value":27824},"Restart your Claude Code session for the MCP to take effect. To verify it's working, open Claude Code in your project directory and ask:",{"type":44,"tag":136,"props":27826,"children":27827},{},[27828],{"type":44,"tag":53,"props":27829,"children":27830},{},[27831],{"type":50,"value":27832},"What connections are available in this Bruin project?",{"type":44,"tag":53,"props":27834,"children":27835},{},[27836],{"type":50,"value":27837},"Claude Code should find and list the warehouse connection you just set up.",{"type":44,"tag":5108,"props":27839,"children":27840},{},[27841],{"type":44,"tag":53,"props":27842,"children":27843},{},[27844,27849,27851,27857,27859,27865],{"type":44,"tag":185,"props":27845,"children":27846},{},[27847],{"type":50,"value":27848},"Using Cursor or Codex instead?",{"type":50,"value":27850}," For Cursor, add ",{"type":44,"tag":81,"props":27852,"children":27854},{"className":27853},[],[27855],{"type":50,"value":27856},"{\"mcpServers\": {\"bruin\": {\"command\": \"bruin\", \"args\": [\"mcp\"]}}}",{"type":50,"value":27858}," to your MCP settings. For Codex, run ",{"type":44,"tag":81,"props":27860,"children":27862},{"className":27861},[],[27863],{"type":50,"value":27864},"codex mcp add bruin -- bruin mcp",{"type":50,"value":27866},". The rest of this tutorial shows Claude Code prompts, but they work in any MCP-compatible tool.",{"type":44,"tag":124,"props":27868,"children":27870},{"id":27869},"_6-validate-with-claude-code",[27871],{"type":50,"value":27872},"6) Validate with Claude Code",{"type":44,"tag":53,"props":27874,"children":27875},{},[27876],{"type":50,"value":27877},"You can run the validation yourself:",{"type":44,"tag":90,"props":27879,"children":27880},{"className":92,"code":13354,"language":94,"meta":7,"style":7},[27881],{"type":44,"tag":81,"props":27882,"children":27883},{"__ignoreMap":7},[27884],{"type":44,"tag":100,"props":27885,"children":27886},{"class":102,"line":103},[27887,27891,27895],{"type":44,"tag":100,"props":27888,"children":27889},{"style":107},[27890],{"type":50,"value":13195},{"type":44,"tag":100,"props":27892,"children":27893},{"style":119},[27894],{"type":50,"value":13370},{"type":44,"tag":100,"props":27896,"children":27897},{"style":119},[27898],{"type":50,"value":13225},{"type":44,"tag":53,"props":27900,"children":27901},{},[27902],{"type":50,"value":27903},"Or just ask Claude Code to do it:",{"type":44,"tag":136,"props":27905,"children":27906},{},[27907],{"type":44,"tag":53,"props":27908,"children":27909},{},[27910],{"type":50,"value":27911},"Run bruin validate on this project and tell me if there are any issues.",{"type":44,"tag":53,"props":27913,"children":27914},{},[27915],{"type":50,"value":27916},"A clean validation means your project structure, pipeline config, and connections are all correct. From here on, you can use Claude Code to run any Bruin command, create files, and write SQL - we'll show you how at each step.",{"type":44,"tag":45,"props":27918,"children":27919},{"id":13425},[27920],{"type":50,"value":13428},{"type":44,"tag":53,"props":27922,"children":27923},{},[27924],{"type":50,"value":27925},"You have a Bruin project connected to your data warehouse with Claude Code and the Bruin MCP set up. Claude Code can now inspect your pipeline, query your data, fetch Bruin docs, and help you build assets. Next up, you'll use it to create ingestor assets that pull data from your Shopify store and surrounding tools into your warehouse.",{"type":44,"tag":13479,"props":27927,"children":27928},{},[27929],{"type":50,"value":13483},{"title":7,"searchDepth":226,"depth":226,"links":27931},[27932,27933,27934,27935,27943],{"id":47,"depth":226,"text":51},{"id":26490,"depth":226,"text":26493},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":27936},[27937,27938,27939,27940,27941,27942],{"id":26636,"depth":235,"text":26639},{"id":26739,"depth":235,"text":26742},{"id":26813,"depth":235,"text":26816},{"id":27484,"depth":235,"text":27487},{"id":27760,"depth":235,"text":27763},{"id":27869,"depth":235,"text":27872},{"id":13425,"depth":226,"text":13428},"content:tutorials:ecommerce-pipeline:project-setup.md","tutorials\u002Fecommerce-pipeline\u002Fproject-setup.md","tutorials\u002Fecommerce-pipeline\u002Fproject-setup",{"_path":27948,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":27949,"description":27950,"date":10,"readingTime":11,"category":12,"tags":27951,"difficulty":26463,"module":5,"subSteps":23,"step":226,"variants":27962,"journeys":27964,"learnMore":27965,"author":27974,"body":27975,"_type":13504,"_id":32599,"_source":13506,"_file":32600,"_stem":32601,"_extension":13509},"\u002Ftutorials\u002Fecommerce-pipeline\u002Fingest-data","Ingest Your Ecommerce Data","Connect your Shopify store and surrounding tools to Bruin, and create ingestor assets that pull data into your warehouse automatically.",[14,15,27952,26462,27953,27954,27955,27956,27957,27958,27959,27960,27961,21],"Bruin Ingestr","Shopify","Stripe","Klaviyo","HubSpot","Facebook Ads","Google Ads","TikTok Ads","Google Analytics","Mixpanel",[27955,27956,27957,27958,27959,27963,27961],"GA4",[26,27],[27966,27969,27971],{"label":27967,"url":27968},"Ingestr asset reference","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fassets\u002Fingestr.html",{"label":27970,"url":26472},"Bruin connections",{"label":27972,"url":27973},"Incremental loading strategies","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fassets\u002Fingestr.html#incremental-strategies",{"name":37,"role":38,"image":39},{"type":41,"children":27976,"toc":32582},[27977,27981,27986,27990,27995,28009,28015,28020,28028,28033,28037,28043,28048,28201,28205,28211,28232,28236,28300,28307,28320,28929,28953,28956,28962,29701,29704,29710,30555,30558,30564,31578,31581,31587,32286,32289,32295,32300,32321,32326,32334,32339,32344,32381,32414,32434,32482,32487,32526,32532,32537,32545,32550,32558,32562,32573,32578],{"type":44,"tag":45,"props":27978,"children":27979},{"id":47},[27980],{"type":50,"value":51},{"type":44,"tag":53,"props":27982,"children":27983},{},[27984],{"type":50,"value":27985},"Create ingestor assets for your Shopify store and the tools around it. Each asset pulls data from a SaaS tool into your warehouse on schedule.",{"type":44,"tag":45,"props":27987,"children":27988},{"id":60},[27989],{"type":50,"value":63},{"type":44,"tag":53,"props":27991,"children":27992},{},[27993],{"type":50,"value":27994},"A Shopify store has data spread across many tools: orders and products in Shopify, payments in Stripe or Shopify Payments, email engagement in your marketing platform, ad performance in your ad platform, and website traffic in your analytics tool. Getting all of this into one warehouse is the foundation for every report you'll build later.",{"type":44,"tag":53,"props":27996,"children":27997},{},[27998,28000,28007],{"type":50,"value":27999},"Bruin's ingestor assets use ",{"type":44,"tag":13232,"props":28001,"children":28004},{"href":28002,"rel":28003},"https:\u002F\u002Fbruin-data.github.io\u002Fingestr\u002F",[26516],[28005],{"type":50,"value":28006},"ingestr",{"type":50,"value":28008}," under the hood - an open-source tool with 100+ built-in connectors. You define what to pull in a simple YAML file, and Bruin handles scheduling, incremental loading, and dependency management.",{"type":44,"tag":124,"props":28010,"children":28012},{"id":28011},"let-claude-code-create-the-asset-files",[28013],{"type":50,"value":28014},"Let Claude Code create the asset files",{"type":44,"tag":53,"props":28016,"children":28017},{},[28018],{"type":50,"value":28019},"You can create each ingestor asset file manually (shown below), or ask Claude Code to do it for you:",{"type":44,"tag":136,"props":28021,"children":28022},{},[28023],{"type":44,"tag":53,"props":28024,"children":28025},{},[28026],{"type":50,"value":28027},"Look at the Bruin ingestr docs and create ingestor assets for Shopify orders, customers, products, and inventory_levels. Use merge strategy with updated_at for the first three, and replace for inventory. Use my warehouse connection as destination. Put them in ecommerce\u002Fassets\u002F.",{"type":44,"tag":53,"props":28029,"children":28030},{},[28031],{"type":50,"value":28032},"Below we show the files so you can see what they look like, but feel free to have Claude Code generate them.",{"type":44,"tag":45,"props":28034,"children":28035},{"id":71},[28036],{"type":50,"value":74},{"type":44,"tag":124,"props":28038,"children":28040},{"id":28039},"optional-install-source-mcps",[28041],{"type":50,"value":28042},"Optional: install source MCPs",{"type":44,"tag":53,"props":28044,"children":28045},{},[28046],{"type":50,"value":28047},"These platforms offer their own MCP servers that let Claude Code explore available tables and schemas before you write ingestor assets. Not required, but useful.",{"type":44,"tag":197,"props":28049,"children":28051},{":variants":28050},"[{\"id\":\"shopify-mcp\",\"label\":\"Shopify\"},{\"id\":\"stripe-mcp\",\"label\":\"Stripe\"},{\"id\":\"klaviyo-mcp\",\"label\":\"Klaviyo\"},{\"id\":\"facebook-mcp\",\"label\":\"Facebook Ads\"},{\"id\":\"ga4-mcp\",\"label\":\"GA4\"}]",[28052,28085,28127,28149,28181],{"type":44,"tag":203,"props":28053,"children":28054},{"v-slot:shopify-mcp":7},[28055,28065],{"type":44,"tag":53,"props":28056,"children":28057},{},[28058],{"type":44,"tag":13232,"props":28059,"children":28062},{"href":28060,"rel":28061},"https:\u002F\u002Fshopify.dev\u002Fdocs\u002Fapps\u002Fbuild\u002Fdevmcp",[26516],[28063],{"type":50,"value":28064},"Official Dev MCP",{"type":44,"tag":90,"props":28066,"children":28068},{"className":92,"code":28067,"language":94,"meta":7,"style":7},"npx @shopify\u002Fdev-mcp@latest\n",[28069],{"type":44,"tag":81,"props":28070,"children":28071},{"__ignoreMap":7},[28072],{"type":44,"tag":100,"props":28073,"children":28074},{"class":102,"line":103},[28075,28080],{"type":44,"tag":100,"props":28076,"children":28077},{"style":107},[28078],{"type":50,"value":28079},"npx",{"type":44,"tag":100,"props":28081,"children":28082},{"style":119},[28083],{"type":50,"value":28084}," @shopify\u002Fdev-mcp@latest\n",{"type":44,"tag":203,"props":28086,"children":28087},{"v-slot:stripe-mcp":7},[28088,28098],{"type":44,"tag":53,"props":28089,"children":28090},{},[28091],{"type":44,"tag":13232,"props":28092,"children":28095},{"href":28093,"rel":28094},"https:\u002F\u002Fdocs.stripe.com\u002Fmcp",[26516],[28096],{"type":50,"value":28097},"Official MCP",{"type":44,"tag":90,"props":28099,"children":28101},{"className":92,"code":28100,"language":94,"meta":7,"style":7},"npx -y @stripe\u002Fmcp --api-key=sk_...\n",[28102],{"type":44,"tag":81,"props":28103,"children":28104},{"__ignoreMap":7},[28105],{"type":44,"tag":100,"props":28106,"children":28107},{"class":102,"line":103},[28108,28112,28117,28122],{"type":44,"tag":100,"props":28109,"children":28110},{"style":107},[28111],{"type":50,"value":28079},{"type":44,"tag":100,"props":28113,"children":28114},{"style":113},[28115],{"type":50,"value":28116}," -y",{"type":44,"tag":100,"props":28118,"children":28119},{"style":119},[28120],{"type":50,"value":28121}," @stripe\u002Fmcp",{"type":44,"tag":100,"props":28123,"children":28124},{"style":113},[28125],{"type":50,"value":28126}," --api-key=sk_...\n",{"type":44,"tag":203,"props":28128,"children":28129},{"v-slot:klaviyo-mcp":7},[28130],{"type":44,"tag":53,"props":28131,"children":28132},{},[28133,28139,28141,28147],{"type":44,"tag":13232,"props":28134,"children":28137},{"href":28135,"rel":28136},"https:\u002F\u002Fdevelopers.klaviyo.com\u002Fen\u002Fdocs\u002Fklaviyo_mcp_server",[26516],[28138],{"type":50,"value":28097},{"type":50,"value":28140}," - see ",{"type":44,"tag":13232,"props":28142,"children":28144},{"href":28135,"rel":28143},[26516],[28145],{"type":50,"value":28146},"Klaviyo MCP docs",{"type":50,"value":28148}," for setup.",{"type":44,"tag":203,"props":28150,"children":28151},{"v-slot:facebook-mcp":7},[28152,28162],{"type":44,"tag":53,"props":28153,"children":28154},{},[28155],{"type":44,"tag":13232,"props":28156,"children":28159},{"href":28157,"rel":28158},"https:\u002F\u002Fgithub.com\u002Fpipeboard-co\u002Fmeta-ads-mcp",[26516],[28160],{"type":50,"value":28161},"Community MCP",{"type":44,"tag":90,"props":28163,"children":28165},{"className":92,"code":28164,"language":94,"meta":7,"style":7},"npx meta-ads-mcp@latest\n",[28166],{"type":44,"tag":81,"props":28167,"children":28168},{"__ignoreMap":7},[28169],{"type":44,"tag":100,"props":28170,"children":28171},{"class":102,"line":103},[28172,28176],{"type":44,"tag":100,"props":28173,"children":28174},{"style":107},[28175],{"type":50,"value":28079},{"type":44,"tag":100,"props":28177,"children":28178},{"style":119},[28179],{"type":50,"value":28180}," meta-ads-mcp@latest\n",{"type":44,"tag":203,"props":28182,"children":28183},{"v-slot:ga4-mcp":7},[28184],{"type":44,"tag":53,"props":28185,"children":28186},{},[28187,28193,28194,28200],{"type":44,"tag":13232,"props":28188,"children":28191},{"href":28189,"rel":28190},"https:\u002F\u002Fdevelopers.google.com\u002Fanalytics\u002Fdevguides\u002FMCP",[26516],[28192],{"type":50,"value":28097},{"type":50,"value":28140},{"type":44,"tag":13232,"props":28195,"children":28197},{"href":28189,"rel":28196},[26516],[28198],{"type":50,"value":28199},"Google Analytics MCP docs",{"type":50,"value":28148},{"type":44,"tag":28202,"props":28203,"children":28204},"hr",{},[],{"type":44,"tag":124,"props":28206,"children":28208},{"id":28207},"add-the-shopify-connection",[28209],{"type":50,"value":28210},"Add the Shopify connection",{"type":44,"tag":90,"props":28212,"children":28213},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[28214],{"type":44,"tag":81,"props":28215,"children":28216},{"__ignoreMap":7},[28217],{"type":44,"tag":100,"props":28218,"children":28219},{"class":102,"line":103},[28220,28224,28228],{"type":44,"tag":100,"props":28221,"children":28222},{"style":107},[28223],{"type":50,"value":13195},{"type":44,"tag":100,"props":28225,"children":28226},{"style":119},[28227],{"type":50,"value":26889},{"type":44,"tag":100,"props":28229,"children":28230},{"style":119},[28231],{"type":50,"value":26894},{"type":44,"tag":53,"props":28233,"children":28234},{},[28235],{"type":50,"value":26899},{"type":44,"tag":13430,"props":28237,"children":28238},{},[28239,28253,28266,28283],{"type":44,"tag":13434,"props":28240,"children":28241},{},[28242,28246,28247],{"type":44,"tag":185,"props":28243,"children":28244},{},[28245],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":28248,"children":28250},{"className":28249},[],[28251],{"type":50,"value":28252},"shopify",{"type":44,"tag":13434,"props":28254,"children":28255},{},[28256,28260,28261],{"type":44,"tag":185,"props":28257,"children":28258},{},[28259],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":28262,"children":28264},{"className":28263},[],[28265],{"type":50,"value":28252},{"type":44,"tag":13434,"props":28267,"children":28268},{},[28269,28274,28276],{"type":44,"tag":185,"props":28270,"children":28271},{},[28272],{"type":50,"value":28273},"API key, API secret, access token:",{"type":50,"value":28275}," from your ",{"type":44,"tag":13232,"props":28277,"children":28280},{"href":28278,"rel":28279},"https:\u002F\u002Fshopify.dev\u002Fdocs\u002Fapps\u002Fgetting-started",[26516],[28281],{"type":50,"value":28282},"Shopify app credentials",{"type":44,"tag":13434,"props":28284,"children":28285},{},[28286,28291,28293,28299],{"type":44,"tag":185,"props":28287,"children":28288},{},[28289],{"type":50,"value":28290},"Shop:",{"type":50,"value":28292}," your store name (without ",{"type":44,"tag":81,"props":28294,"children":28296},{"className":28295},[],[28297],{"type":50,"value":28298},".myshopify.com",{"type":50,"value":27397},{"type":44,"tag":28301,"props":28302,"children":28304},"h4",{"id":28303},"create-ingestor-assets",[28305],{"type":50,"value":28306},"Create ingestor assets",{"type":44,"tag":53,"props":28308,"children":28309},{},[28310,28312,28318],{"type":50,"value":28311},"Create a file for each table you want to ingest. These go in your ",{"type":44,"tag":81,"props":28313,"children":28315},{"className":28314},[],[28316],{"type":50,"value":28317},"ecommerce\u002Fassets\u002F",{"type":50,"value":28319}," folder.",{"type":44,"tag":197,"props":28321,"children":28323},{":variants":28322},"[{\"id\":\"shopify-orders\",\"label\":\"Orders\"},{\"id\":\"shopify-customers\",\"label\":\"Customers\"},{\"id\":\"shopify-products\",\"label\":\"Products\"},{\"id\":\"shopify-inventory\",\"label\":\"Inventory\"}]",[28324,28493,28648,28803],{"type":44,"tag":203,"props":28325,"children":28326},{"v-slot:shopify-orders":7},[28327,28339],{"type":44,"tag":53,"props":28328,"children":28329},{},[28330],{"type":44,"tag":185,"props":28331,"children":28332},{},[28333],{"type":44,"tag":81,"props":28334,"children":28336},{"className":28335},[],[28337],{"type":50,"value":28338},"ecommerce\u002Fassets\u002Fshopify_orders.asset.yml",{"type":44,"tag":90,"props":28340,"children":28342},{"className":27156,"code":28341,"language":27158,"meta":7,"style":7},"name: raw.shopify_orders\ntype: ingestr\nparameters:\n  source_connection: shopify\n  source_table: orders\n  loader_file_format: jsonl\n  incremental_strategy: merge\n  incremental_key: updated_at\n  primary_key: id\n",[28343],{"type":44,"tag":81,"props":28344,"children":28345},{"__ignoreMap":7},[28346,28362,28379,28391,28408,28425,28442,28459,28476],{"type":44,"tag":100,"props":28347,"children":28348},{"class":102,"line":103},[28349,28353,28357],{"type":44,"tag":100,"props":28350,"children":28351},{"style":27168},[28352],{"type":50,"value":27225},{"type":44,"tag":100,"props":28354,"children":28355},{"style":400},[28356],{"type":50,"value":27230},{"type":44,"tag":100,"props":28358,"children":28359},{"style":119},[28360],{"type":50,"value":28361},"raw.shopify_orders\n",{"type":44,"tag":100,"props":28363,"children":28364},{"class":102,"line":226},[28365,28370,28374],{"type":44,"tag":100,"props":28366,"children":28367},{"style":27168},[28368],{"type":50,"value":28369},"type",{"type":44,"tag":100,"props":28371,"children":28372},{"style":400},[28373],{"type":50,"value":27230},{"type":44,"tag":100,"props":28375,"children":28376},{"style":119},[28377],{"type":50,"value":28378},"ingestr\n",{"type":44,"tag":100,"props":28380,"children":28381},{"class":102,"line":235},[28382,28387],{"type":44,"tag":100,"props":28383,"children":28384},{"style":27168},[28385],{"type":50,"value":28386},"parameters",{"type":44,"tag":100,"props":28388,"children":28389},{"style":400},[28390],{"type":50,"value":27176},{"type":44,"tag":100,"props":28392,"children":28393},{"class":102,"line":24},[28394,28399,28403],{"type":44,"tag":100,"props":28395,"children":28396},{"style":27168},[28397],{"type":50,"value":28398},"  source_connection",{"type":44,"tag":100,"props":28400,"children":28401},{"style":400},[28402],{"type":50,"value":27230},{"type":44,"tag":100,"props":28404,"children":28405},{"style":119},[28406],{"type":50,"value":28407},"shopify\n",{"type":44,"tag":100,"props":28409,"children":28410},{"class":102,"line":252},[28411,28416,28420],{"type":44,"tag":100,"props":28412,"children":28413},{"style":27168},[28414],{"type":50,"value":28415},"  source_table",{"type":44,"tag":100,"props":28417,"children":28418},{"style":400},[28419],{"type":50,"value":27230},{"type":44,"tag":100,"props":28421,"children":28422},{"style":119},[28423],{"type":50,"value":28424},"orders\n",{"type":44,"tag":100,"props":28426,"children":28427},{"class":102,"line":261},[28428,28433,28437],{"type":44,"tag":100,"props":28429,"children":28430},{"style":27168},[28431],{"type":50,"value":28432},"  loader_file_format",{"type":44,"tag":100,"props":28434,"children":28435},{"style":400},[28436],{"type":50,"value":27230},{"type":44,"tag":100,"props":28438,"children":28439},{"style":119},[28440],{"type":50,"value":28441},"jsonl\n",{"type":44,"tag":100,"props":28443,"children":28444},{"class":102,"line":270},[28445,28450,28454],{"type":44,"tag":100,"props":28446,"children":28447},{"style":27168},[28448],{"type":50,"value":28449},"  incremental_strategy",{"type":44,"tag":100,"props":28451,"children":28452},{"style":400},[28453],{"type":50,"value":27230},{"type":44,"tag":100,"props":28455,"children":28456},{"style":119},[28457],{"type":50,"value":28458},"merge\n",{"type":44,"tag":100,"props":28460,"children":28461},{"class":102,"line":279},[28462,28467,28471],{"type":44,"tag":100,"props":28463,"children":28464},{"style":27168},[28465],{"type":50,"value":28466},"  incremental_key",{"type":44,"tag":100,"props":28468,"children":28469},{"style":400},[28470],{"type":50,"value":27230},{"type":44,"tag":100,"props":28472,"children":28473},{"style":119},[28474],{"type":50,"value":28475},"updated_at\n",{"type":44,"tag":100,"props":28477,"children":28478},{"class":102,"line":288},[28479,28484,28488],{"type":44,"tag":100,"props":28480,"children":28481},{"style":27168},[28482],{"type":50,"value":28483},"  primary_key",{"type":44,"tag":100,"props":28485,"children":28486},{"style":400},[28487],{"type":50,"value":27230},{"type":44,"tag":100,"props":28489,"children":28490},{"style":119},[28491],{"type":50,"value":28492},"id\n",{"type":44,"tag":203,"props":28494,"children":28495},{"v-slot:shopify-customers":7},[28496,28508],{"type":44,"tag":53,"props":28497,"children":28498},{},[28499],{"type":44,"tag":185,"props":28500,"children":28501},{},[28502],{"type":44,"tag":81,"props":28503,"children":28505},{"className":28504},[],[28506],{"type":50,"value":28507},"ecommerce\u002Fassets\u002Fshopify_customers.asset.yml",{"type":44,"tag":90,"props":28509,"children":28511},{"className":27156,"code":28510,"language":27158,"meta":7,"style":7},"name: raw.shopify_customers\ntype: ingestr\nparameters:\n  source_connection: shopify\n  source_table: customers\n  loader_file_format: jsonl\n  incremental_strategy: merge\n  incremental_key: updated_at\n  primary_key: id\n",[28512],{"type":44,"tag":81,"props":28513,"children":28514},{"__ignoreMap":7},[28515,28531,28546,28557,28572,28588,28603,28618,28633],{"type":44,"tag":100,"props":28516,"children":28517},{"class":102,"line":103},[28518,28522,28526],{"type":44,"tag":100,"props":28519,"children":28520},{"style":27168},[28521],{"type":50,"value":27225},{"type":44,"tag":100,"props":28523,"children":28524},{"style":400},[28525],{"type":50,"value":27230},{"type":44,"tag":100,"props":28527,"children":28528},{"style":119},[28529],{"type":50,"value":28530},"raw.shopify_customers\n",{"type":44,"tag":100,"props":28532,"children":28533},{"class":102,"line":226},[28534,28538,28542],{"type":44,"tag":100,"props":28535,"children":28536},{"style":27168},[28537],{"type":50,"value":28369},{"type":44,"tag":100,"props":28539,"children":28540},{"style":400},[28541],{"type":50,"value":27230},{"type":44,"tag":100,"props":28543,"children":28544},{"style":119},[28545],{"type":50,"value":28378},{"type":44,"tag":100,"props":28547,"children":28548},{"class":102,"line":235},[28549,28553],{"type":44,"tag":100,"props":28550,"children":28551},{"style":27168},[28552],{"type":50,"value":28386},{"type":44,"tag":100,"props":28554,"children":28555},{"style":400},[28556],{"type":50,"value":27176},{"type":44,"tag":100,"props":28558,"children":28559},{"class":102,"line":24},[28560,28564,28568],{"type":44,"tag":100,"props":28561,"children":28562},{"style":27168},[28563],{"type":50,"value":28398},{"type":44,"tag":100,"props":28565,"children":28566},{"style":400},[28567],{"type":50,"value":27230},{"type":44,"tag":100,"props":28569,"children":28570},{"style":119},[28571],{"type":50,"value":28407},{"type":44,"tag":100,"props":28573,"children":28574},{"class":102,"line":252},[28575,28579,28583],{"type":44,"tag":100,"props":28576,"children":28577},{"style":27168},[28578],{"type":50,"value":28415},{"type":44,"tag":100,"props":28580,"children":28581},{"style":400},[28582],{"type":50,"value":27230},{"type":44,"tag":100,"props":28584,"children":28585},{"style":119},[28586],{"type":50,"value":28587},"customers\n",{"type":44,"tag":100,"props":28589,"children":28590},{"class":102,"line":261},[28591,28595,28599],{"type":44,"tag":100,"props":28592,"children":28593},{"style":27168},[28594],{"type":50,"value":28432},{"type":44,"tag":100,"props":28596,"children":28597},{"style":400},[28598],{"type":50,"value":27230},{"type":44,"tag":100,"props":28600,"children":28601},{"style":119},[28602],{"type":50,"value":28441},{"type":44,"tag":100,"props":28604,"children":28605},{"class":102,"line":270},[28606,28610,28614],{"type":44,"tag":100,"props":28607,"children":28608},{"style":27168},[28609],{"type":50,"value":28449},{"type":44,"tag":100,"props":28611,"children":28612},{"style":400},[28613],{"type":50,"value":27230},{"type":44,"tag":100,"props":28615,"children":28616},{"style":119},[28617],{"type":50,"value":28458},{"type":44,"tag":100,"props":28619,"children":28620},{"class":102,"line":279},[28621,28625,28629],{"type":44,"tag":100,"props":28622,"children":28623},{"style":27168},[28624],{"type":50,"value":28466},{"type":44,"tag":100,"props":28626,"children":28627},{"style":400},[28628],{"type":50,"value":27230},{"type":44,"tag":100,"props":28630,"children":28631},{"style":119},[28632],{"type":50,"value":28475},{"type":44,"tag":100,"props":28634,"children":28635},{"class":102,"line":288},[28636,28640,28644],{"type":44,"tag":100,"props":28637,"children":28638},{"style":27168},[28639],{"type":50,"value":28483},{"type":44,"tag":100,"props":28641,"children":28642},{"style":400},[28643],{"type":50,"value":27230},{"type":44,"tag":100,"props":28645,"children":28646},{"style":119},[28647],{"type":50,"value":28492},{"type":44,"tag":203,"props":28649,"children":28650},{"v-slot:shopify-products":7},[28651,28663],{"type":44,"tag":53,"props":28652,"children":28653},{},[28654],{"type":44,"tag":185,"props":28655,"children":28656},{},[28657],{"type":44,"tag":81,"props":28658,"children":28660},{"className":28659},[],[28661],{"type":50,"value":28662},"ecommerce\u002Fassets\u002Fshopify_products.asset.yml",{"type":44,"tag":90,"props":28664,"children":28666},{"className":27156,"code":28665,"language":27158,"meta":7,"style":7},"name: raw.shopify_products\ntype: ingestr\nparameters:\n  source_connection: shopify\n  source_table: products\n  loader_file_format: jsonl\n  incremental_strategy: merge\n  incremental_key: updated_at\n  primary_key: id\n",[28667],{"type":44,"tag":81,"props":28668,"children":28669},{"__ignoreMap":7},[28670,28686,28701,28712,28727,28743,28758,28773,28788],{"type":44,"tag":100,"props":28671,"children":28672},{"class":102,"line":103},[28673,28677,28681],{"type":44,"tag":100,"props":28674,"children":28675},{"style":27168},[28676],{"type":50,"value":27225},{"type":44,"tag":100,"props":28678,"children":28679},{"style":400},[28680],{"type":50,"value":27230},{"type":44,"tag":100,"props":28682,"children":28683},{"style":119},[28684],{"type":50,"value":28685},"raw.shopify_products\n",{"type":44,"tag":100,"props":28687,"children":28688},{"class":102,"line":226},[28689,28693,28697],{"type":44,"tag":100,"props":28690,"children":28691},{"style":27168},[28692],{"type":50,"value":28369},{"type":44,"tag":100,"props":28694,"children":28695},{"style":400},[28696],{"type":50,"value":27230},{"type":44,"tag":100,"props":28698,"children":28699},{"style":119},[28700],{"type":50,"value":28378},{"type":44,"tag":100,"props":28702,"children":28703},{"class":102,"line":235},[28704,28708],{"type":44,"tag":100,"props":28705,"children":28706},{"style":27168},[28707],{"type":50,"value":28386},{"type":44,"tag":100,"props":28709,"children":28710},{"style":400},[28711],{"type":50,"value":27176},{"type":44,"tag":100,"props":28713,"children":28714},{"class":102,"line":24},[28715,28719,28723],{"type":44,"tag":100,"props":28716,"children":28717},{"style":27168},[28718],{"type":50,"value":28398},{"type":44,"tag":100,"props":28720,"children":28721},{"style":400},[28722],{"type":50,"value":27230},{"type":44,"tag":100,"props":28724,"children":28725},{"style":119},[28726],{"type":50,"value":28407},{"type":44,"tag":100,"props":28728,"children":28729},{"class":102,"line":252},[28730,28734,28738],{"type":44,"tag":100,"props":28731,"children":28732},{"style":27168},[28733],{"type":50,"value":28415},{"type":44,"tag":100,"props":28735,"children":28736},{"style":400},[28737],{"type":50,"value":27230},{"type":44,"tag":100,"props":28739,"children":28740},{"style":119},[28741],{"type":50,"value":28742},"products\n",{"type":44,"tag":100,"props":28744,"children":28745},{"class":102,"line":261},[28746,28750,28754],{"type":44,"tag":100,"props":28747,"children":28748},{"style":27168},[28749],{"type":50,"value":28432},{"type":44,"tag":100,"props":28751,"children":28752},{"style":400},[28753],{"type":50,"value":27230},{"type":44,"tag":100,"props":28755,"children":28756},{"style":119},[28757],{"type":50,"value":28441},{"type":44,"tag":100,"props":28759,"children":28760},{"class":102,"line":270},[28761,28765,28769],{"type":44,"tag":100,"props":28762,"children":28763},{"style":27168},[28764],{"type":50,"value":28449},{"type":44,"tag":100,"props":28766,"children":28767},{"style":400},[28768],{"type":50,"value":27230},{"type":44,"tag":100,"props":28770,"children":28771},{"style":119},[28772],{"type":50,"value":28458},{"type":44,"tag":100,"props":28774,"children":28775},{"class":102,"line":279},[28776,28780,28784],{"type":44,"tag":100,"props":28777,"children":28778},{"style":27168},[28779],{"type":50,"value":28466},{"type":44,"tag":100,"props":28781,"children":28782},{"style":400},[28783],{"type":50,"value":27230},{"type":44,"tag":100,"props":28785,"children":28786},{"style":119},[28787],{"type":50,"value":28475},{"type":44,"tag":100,"props":28789,"children":28790},{"class":102,"line":288},[28791,28795,28799],{"type":44,"tag":100,"props":28792,"children":28793},{"style":27168},[28794],{"type":50,"value":28483},{"type":44,"tag":100,"props":28796,"children":28797},{"style":400},[28798],{"type":50,"value":27230},{"type":44,"tag":100,"props":28800,"children":28801},{"style":119},[28802],{"type":50,"value":28492},{"type":44,"tag":203,"props":28804,"children":28805},{"v-slot:shopify-inventory":7},[28806,28818],{"type":44,"tag":53,"props":28807,"children":28808},{},[28809],{"type":44,"tag":185,"props":28810,"children":28811},{},[28812],{"type":44,"tag":81,"props":28813,"children":28815},{"className":28814},[],[28816],{"type":50,"value":28817},"ecommerce\u002Fassets\u002Fshopify_inventory.asset.yml",{"type":44,"tag":90,"props":28819,"children":28821},{"className":27156,"code":28820,"language":27158,"meta":7,"style":7},"name: raw.shopify_inventory\ntype: ingestr\nparameters:\n  source_connection: shopify\n  source_table: inventory_levels\n  loader_file_format: jsonl\n  incremental_strategy: replace\n",[28822],{"type":44,"tag":81,"props":28823,"children":28824},{"__ignoreMap":7},[28825,28841,28856,28867,28882,28898,28913],{"type":44,"tag":100,"props":28826,"children":28827},{"class":102,"line":103},[28828,28832,28836],{"type":44,"tag":100,"props":28829,"children":28830},{"style":27168},[28831],{"type":50,"value":27225},{"type":44,"tag":100,"props":28833,"children":28834},{"style":400},[28835],{"type":50,"value":27230},{"type":44,"tag":100,"props":28837,"children":28838},{"style":119},[28839],{"type":50,"value":28840},"raw.shopify_inventory\n",{"type":44,"tag":100,"props":28842,"children":28843},{"class":102,"line":226},[28844,28848,28852],{"type":44,"tag":100,"props":28845,"children":28846},{"style":27168},[28847],{"type":50,"value":28369},{"type":44,"tag":100,"props":28849,"children":28850},{"style":400},[28851],{"type":50,"value":27230},{"type":44,"tag":100,"props":28853,"children":28854},{"style":119},[28855],{"type":50,"value":28378},{"type":44,"tag":100,"props":28857,"children":28858},{"class":102,"line":235},[28859,28863],{"type":44,"tag":100,"props":28860,"children":28861},{"style":27168},[28862],{"type":50,"value":28386},{"type":44,"tag":100,"props":28864,"children":28865},{"style":400},[28866],{"type":50,"value":27176},{"type":44,"tag":100,"props":28868,"children":28869},{"class":102,"line":24},[28870,28874,28878],{"type":44,"tag":100,"props":28871,"children":28872},{"style":27168},[28873],{"type":50,"value":28398},{"type":44,"tag":100,"props":28875,"children":28876},{"style":400},[28877],{"type":50,"value":27230},{"type":44,"tag":100,"props":28879,"children":28880},{"style":119},[28881],{"type":50,"value":28407},{"type":44,"tag":100,"props":28883,"children":28884},{"class":102,"line":252},[28885,28889,28893],{"type":44,"tag":100,"props":28886,"children":28887},{"style":27168},[28888],{"type":50,"value":28415},{"type":44,"tag":100,"props":28890,"children":28891},{"style":400},[28892],{"type":50,"value":27230},{"type":44,"tag":100,"props":28894,"children":28895},{"style":119},[28896],{"type":50,"value":28897},"inventory_levels\n",{"type":44,"tag":100,"props":28899,"children":28900},{"class":102,"line":261},[28901,28905,28909],{"type":44,"tag":100,"props":28902,"children":28903},{"style":27168},[28904],{"type":50,"value":28432},{"type":44,"tag":100,"props":28906,"children":28907},{"style":400},[28908],{"type":50,"value":27230},{"type":44,"tag":100,"props":28910,"children":28911},{"style":119},[28912],{"type":50,"value":28441},{"type":44,"tag":100,"props":28914,"children":28915},{"class":102,"line":270},[28916,28920,28924],{"type":44,"tag":100,"props":28917,"children":28918},{"style":27168},[28919],{"type":50,"value":28449},{"type":44,"tag":100,"props":28921,"children":28922},{"style":400},[28923],{"type":50,"value":27230},{"type":44,"tag":100,"props":28925,"children":28926},{"style":119},[28927],{"type":50,"value":28928},"replace\n",{"type":44,"tag":5108,"props":28930,"children":28932},{"type":28931},"tip",[28933],{"type":44,"tag":53,"props":28934,"children":28935},{},[28936,28938,28944,28946,28952],{"type":50,"value":28937},"If you installed the Shopify MCP, ask Claude Code to list all available Shopify tables and preview the schema for each one. This helps you decide if you want to ingest additional tables like ",{"type":44,"tag":81,"props":28939,"children":28941},{"className":28940},[],[28942],{"type":50,"value":28943},"transactions",{"type":50,"value":28945}," or ",{"type":44,"tag":81,"props":28947,"children":28949},{"className":28948},[],[28950],{"type":50,"value":28951},"fulfillments",{"type":50,"value":786},{"type":44,"tag":28202,"props":28954,"children":28955},{},[],{"type":44,"tag":124,"props":28957,"children":28959},{"id":28958},"payments",[28960],{"type":50,"value":28961},"Payments",{"type":44,"tag":197,"props":28963,"children":28965},{":variants":28964,"group":28958},"[{\"id\":\"shopify-payments\",\"label\":\"Shopify Payments\"},{\"id\":\"stripe\",\"label\":\"Stripe\"}]",[28966,29006],{"type":44,"tag":203,"props":28967,"children":28968},{"v-slot:shopify-payments":7},[28969,28975,28994],{"type":44,"tag":28301,"props":28970,"children":28972},{"id":28971},"shopify-payments",[28973],{"type":50,"value":28974},"Shopify Payments",{"type":44,"tag":53,"props":28976,"children":28977},{},[28978,28980,28985,28986,28992],{"type":50,"value":28979},"If you use Shopify Payments, your payment data is already included in Shopify's order data - the ",{"type":44,"tag":81,"props":28981,"children":28983},{"className":28982},[],[28984],{"type":50,"value":1435},{"type":50,"value":750},{"type":44,"tag":81,"props":28987,"children":28989},{"className":28988},[],[28990],{"type":50,"value":28991},"total_price",{"type":50,"value":28993},", and transaction fields are all part of the orders you just ingested. No extra connection or assets needed here.",{"type":44,"tag":53,"props":28995,"children":28996},{},[28997,28999,29005],{"type":50,"value":28998},"The staging layer in Step 3 will pull payment details directly from ",{"type":44,"tag":81,"props":29000,"children":29002},{"className":29001},[],[29003],{"type":50,"value":29004},"raw.shopify_orders",{"type":50,"value":786},{"type":44,"tag":203,"props":29007,"children":29008},{"v-slot:stripe":7},[29009,29014,29019,29027,29048,29052,29098,29106,29671],{"type":44,"tag":28301,"props":29010,"children":29012},{"id":29011},"stripe",[29013],{"type":50,"value":27954},{"type":44,"tag":53,"props":29015,"children":29016},{},[29017],{"type":50,"value":29018},"If you use Stripe as a separate payment processor, you'll want to ingest charge, refund, and payout data separately. This gives you more granular financial data than what Shopify includes in its orders.",{"type":44,"tag":53,"props":29020,"children":29021},{},[29022],{"type":44,"tag":185,"props":29023,"children":29024},{},[29025],{"type":50,"value":29026},"Add the Stripe connection:",{"type":44,"tag":90,"props":29028,"children":29029},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[29030],{"type":44,"tag":81,"props":29031,"children":29032},{"__ignoreMap":7},[29033],{"type":44,"tag":100,"props":29034,"children":29035},{"class":102,"line":103},[29036,29040,29044],{"type":44,"tag":100,"props":29037,"children":29038},{"style":107},[29039],{"type":50,"value":13195},{"type":44,"tag":100,"props":29041,"children":29042},{"style":119},[29043],{"type":50,"value":26889},{"type":44,"tag":100,"props":29045,"children":29046},{"style":119},[29047],{"type":50,"value":26894},{"type":44,"tag":53,"props":29049,"children":29050},{},[29051],{"type":50,"value":26899},{"type":44,"tag":13430,"props":29053,"children":29054},{},[29055,29068,29081],{"type":44,"tag":13434,"props":29056,"children":29057},{},[29058,29062,29063],{"type":44,"tag":185,"props":29059,"children":29060},{},[29061],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":29064,"children":29066},{"className":29065},[],[29067],{"type":50,"value":29011},{"type":44,"tag":13434,"props":29069,"children":29070},{},[29071,29075,29076],{"type":44,"tag":185,"props":29072,"children":29073},{},[29074],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":29077,"children":29079},{"className":29078},[],[29080],{"type":50,"value":29011},{"type":44,"tag":13434,"props":29082,"children":29083},{},[29084,29089,29091,29097],{"type":44,"tag":185,"props":29085,"children":29086},{},[29087],{"type":50,"value":29088},"API key:",{"type":50,"value":29090}," your Stripe secret key (starts with ",{"type":44,"tag":81,"props":29092,"children":29094},{"className":29093},[],[29095],{"type":50,"value":29096},"sk_",{"type":50,"value":27397},{"type":44,"tag":53,"props":29099,"children":29100},{},[29101],{"type":44,"tag":185,"props":29102,"children":29103},{},[29104],{"type":50,"value":29105},"Create ingestor assets:",{"type":44,"tag":197,"props":29107,"children":29109},{":variants":29108},"[{\"id\":\"stripe-charges\",\"label\":\"Charges\"},{\"id\":\"stripe-refunds\",\"label\":\"Refunds\"},{\"id\":\"stripe-customers\",\"label\":\"Customers\"},{\"id\":\"stripe-payouts\",\"label\":\"Payouts\"}]",[29110,29252,29392,29531],{"type":44,"tag":203,"props":29111,"children":29112},{"v-slot:stripe-charges":7},[29113,29125],{"type":44,"tag":53,"props":29114,"children":29115},{},[29116],{"type":44,"tag":185,"props":29117,"children":29118},{},[29119],{"type":44,"tag":81,"props":29120,"children":29122},{"className":29121},[],[29123],{"type":50,"value":29124},"ecommerce\u002Fassets\u002Fstripe_charges.asset.yml",{"type":44,"tag":90,"props":29126,"children":29128},{"className":27156,"code":29127,"language":27158,"meta":7,"style":7},"name: raw.stripe_charges\ntype: ingestr\nparameters:\n  source_connection: stripe\n  source_table: charges\n  incremental_strategy: merge\n  incremental_key: created\n  primary_key: id\n",[29129],{"type":44,"tag":81,"props":29130,"children":29131},{"__ignoreMap":7},[29132,29148,29163,29174,29190,29206,29221,29237],{"type":44,"tag":100,"props":29133,"children":29134},{"class":102,"line":103},[29135,29139,29143],{"type":44,"tag":100,"props":29136,"children":29137},{"style":27168},[29138],{"type":50,"value":27225},{"type":44,"tag":100,"props":29140,"children":29141},{"style":400},[29142],{"type":50,"value":27230},{"type":44,"tag":100,"props":29144,"children":29145},{"style":119},[29146],{"type":50,"value":29147},"raw.stripe_charges\n",{"type":44,"tag":100,"props":29149,"children":29150},{"class":102,"line":226},[29151,29155,29159],{"type":44,"tag":100,"props":29152,"children":29153},{"style":27168},[29154],{"type":50,"value":28369},{"type":44,"tag":100,"props":29156,"children":29157},{"style":400},[29158],{"type":50,"value":27230},{"type":44,"tag":100,"props":29160,"children":29161},{"style":119},[29162],{"type":50,"value":28378},{"type":44,"tag":100,"props":29164,"children":29165},{"class":102,"line":235},[29166,29170],{"type":44,"tag":100,"props":29167,"children":29168},{"style":27168},[29169],{"type":50,"value":28386},{"type":44,"tag":100,"props":29171,"children":29172},{"style":400},[29173],{"type":50,"value":27176},{"type":44,"tag":100,"props":29175,"children":29176},{"class":102,"line":24},[29177,29181,29185],{"type":44,"tag":100,"props":29178,"children":29179},{"style":27168},[29180],{"type":50,"value":28398},{"type":44,"tag":100,"props":29182,"children":29183},{"style":400},[29184],{"type":50,"value":27230},{"type":44,"tag":100,"props":29186,"children":29187},{"style":119},[29188],{"type":50,"value":29189},"stripe\n",{"type":44,"tag":100,"props":29191,"children":29192},{"class":102,"line":252},[29193,29197,29201],{"type":44,"tag":100,"props":29194,"children":29195},{"style":27168},[29196],{"type":50,"value":28415},{"type":44,"tag":100,"props":29198,"children":29199},{"style":400},[29200],{"type":50,"value":27230},{"type":44,"tag":100,"props":29202,"children":29203},{"style":119},[29204],{"type":50,"value":29205},"charges\n",{"type":44,"tag":100,"props":29207,"children":29208},{"class":102,"line":261},[29209,29213,29217],{"type":44,"tag":100,"props":29210,"children":29211},{"style":27168},[29212],{"type":50,"value":28449},{"type":44,"tag":100,"props":29214,"children":29215},{"style":400},[29216],{"type":50,"value":27230},{"type":44,"tag":100,"props":29218,"children":29219},{"style":119},[29220],{"type":50,"value":28458},{"type":44,"tag":100,"props":29222,"children":29223},{"class":102,"line":270},[29224,29228,29232],{"type":44,"tag":100,"props":29225,"children":29226},{"style":27168},[29227],{"type":50,"value":28466},{"type":44,"tag":100,"props":29229,"children":29230},{"style":400},[29231],{"type":50,"value":27230},{"type":44,"tag":100,"props":29233,"children":29234},{"style":119},[29235],{"type":50,"value":29236},"created\n",{"type":44,"tag":100,"props":29238,"children":29239},{"class":102,"line":279},[29240,29244,29248],{"type":44,"tag":100,"props":29241,"children":29242},{"style":27168},[29243],{"type":50,"value":28483},{"type":44,"tag":100,"props":29245,"children":29246},{"style":400},[29247],{"type":50,"value":27230},{"type":44,"tag":100,"props":29249,"children":29250},{"style":119},[29251],{"type":50,"value":28492},{"type":44,"tag":203,"props":29253,"children":29254},{"v-slot:stripe-refunds":7},[29255,29267],{"type":44,"tag":53,"props":29256,"children":29257},{},[29258],{"type":44,"tag":185,"props":29259,"children":29260},{},[29261],{"type":44,"tag":81,"props":29262,"children":29264},{"className":29263},[],[29265],{"type":50,"value":29266},"ecommerce\u002Fassets\u002Fstripe_refunds.asset.yml",{"type":44,"tag":90,"props":29268,"children":29270},{"className":27156,"code":29269,"language":27158,"meta":7,"style":7},"name: raw.stripe_refunds\ntype: ingestr\nparameters:\n  source_connection: stripe\n  source_table: refunds\n  incremental_strategy: merge\n  incremental_key: created\n  primary_key: id\n",[29271],{"type":44,"tag":81,"props":29272,"children":29273},{"__ignoreMap":7},[29274,29290,29305,29316,29331,29347,29362,29377],{"type":44,"tag":100,"props":29275,"children":29276},{"class":102,"line":103},[29277,29281,29285],{"type":44,"tag":100,"props":29278,"children":29279},{"style":27168},[29280],{"type":50,"value":27225},{"type":44,"tag":100,"props":29282,"children":29283},{"style":400},[29284],{"type":50,"value":27230},{"type":44,"tag":100,"props":29286,"children":29287},{"style":119},[29288],{"type":50,"value":29289},"raw.stripe_refunds\n",{"type":44,"tag":100,"props":29291,"children":29292},{"class":102,"line":226},[29293,29297,29301],{"type":44,"tag":100,"props":29294,"children":29295},{"style":27168},[29296],{"type":50,"value":28369},{"type":44,"tag":100,"props":29298,"children":29299},{"style":400},[29300],{"type":50,"value":27230},{"type":44,"tag":100,"props":29302,"children":29303},{"style":119},[29304],{"type":50,"value":28378},{"type":44,"tag":100,"props":29306,"children":29307},{"class":102,"line":235},[29308,29312],{"type":44,"tag":100,"props":29309,"children":29310},{"style":27168},[29311],{"type":50,"value":28386},{"type":44,"tag":100,"props":29313,"children":29314},{"style":400},[29315],{"type":50,"value":27176},{"type":44,"tag":100,"props":29317,"children":29318},{"class":102,"line":24},[29319,29323,29327],{"type":44,"tag":100,"props":29320,"children":29321},{"style":27168},[29322],{"type":50,"value":28398},{"type":44,"tag":100,"props":29324,"children":29325},{"style":400},[29326],{"type":50,"value":27230},{"type":44,"tag":100,"props":29328,"children":29329},{"style":119},[29330],{"type":50,"value":29189},{"type":44,"tag":100,"props":29332,"children":29333},{"class":102,"line":252},[29334,29338,29342],{"type":44,"tag":100,"props":29335,"children":29336},{"style":27168},[29337],{"type":50,"value":28415},{"type":44,"tag":100,"props":29339,"children":29340},{"style":400},[29341],{"type":50,"value":27230},{"type":44,"tag":100,"props":29343,"children":29344},{"style":119},[29345],{"type":50,"value":29346},"refunds\n",{"type":44,"tag":100,"props":29348,"children":29349},{"class":102,"line":261},[29350,29354,29358],{"type":44,"tag":100,"props":29351,"children":29352},{"style":27168},[29353],{"type":50,"value":28449},{"type":44,"tag":100,"props":29355,"children":29356},{"style":400},[29357],{"type":50,"value":27230},{"type":44,"tag":100,"props":29359,"children":29360},{"style":119},[29361],{"type":50,"value":28458},{"type":44,"tag":100,"props":29363,"children":29364},{"class":102,"line":270},[29365,29369,29373],{"type":44,"tag":100,"props":29366,"children":29367},{"style":27168},[29368],{"type":50,"value":28466},{"type":44,"tag":100,"props":29370,"children":29371},{"style":400},[29372],{"type":50,"value":27230},{"type":44,"tag":100,"props":29374,"children":29375},{"style":119},[29376],{"type":50,"value":29236},{"type":44,"tag":100,"props":29378,"children":29379},{"class":102,"line":279},[29380,29384,29388],{"type":44,"tag":100,"props":29381,"children":29382},{"style":27168},[29383],{"type":50,"value":28483},{"type":44,"tag":100,"props":29385,"children":29386},{"style":400},[29387],{"type":50,"value":27230},{"type":44,"tag":100,"props":29389,"children":29390},{"style":119},[29391],{"type":50,"value":28492},{"type":44,"tag":203,"props":29393,"children":29394},{"v-slot:stripe-customers":7},[29395,29407],{"type":44,"tag":53,"props":29396,"children":29397},{},[29398],{"type":44,"tag":185,"props":29399,"children":29400},{},[29401],{"type":44,"tag":81,"props":29402,"children":29404},{"className":29403},[],[29405],{"type":50,"value":29406},"ecommerce\u002Fassets\u002Fstripe_customers.asset.yml",{"type":44,"tag":90,"props":29408,"children":29410},{"className":27156,"code":29409,"language":27158,"meta":7,"style":7},"name: raw.stripe_customers\ntype: ingestr\nparameters:\n  source_connection: stripe\n  source_table: customers\n  incremental_strategy: merge\n  incremental_key: created\n  primary_key: id\n",[29411],{"type":44,"tag":81,"props":29412,"children":29413},{"__ignoreMap":7},[29414,29430,29445,29456,29471,29486,29501,29516],{"type":44,"tag":100,"props":29415,"children":29416},{"class":102,"line":103},[29417,29421,29425],{"type":44,"tag":100,"props":29418,"children":29419},{"style":27168},[29420],{"type":50,"value":27225},{"type":44,"tag":100,"props":29422,"children":29423},{"style":400},[29424],{"type":50,"value":27230},{"type":44,"tag":100,"props":29426,"children":29427},{"style":119},[29428],{"type":50,"value":29429},"raw.stripe_customers\n",{"type":44,"tag":100,"props":29431,"children":29432},{"class":102,"line":226},[29433,29437,29441],{"type":44,"tag":100,"props":29434,"children":29435},{"style":27168},[29436],{"type":50,"value":28369},{"type":44,"tag":100,"props":29438,"children":29439},{"style":400},[29440],{"type":50,"value":27230},{"type":44,"tag":100,"props":29442,"children":29443},{"style":119},[29444],{"type":50,"value":28378},{"type":44,"tag":100,"props":29446,"children":29447},{"class":102,"line":235},[29448,29452],{"type":44,"tag":100,"props":29449,"children":29450},{"style":27168},[29451],{"type":50,"value":28386},{"type":44,"tag":100,"props":29453,"children":29454},{"style":400},[29455],{"type":50,"value":27176},{"type":44,"tag":100,"props":29457,"children":29458},{"class":102,"line":24},[29459,29463,29467],{"type":44,"tag":100,"props":29460,"children":29461},{"style":27168},[29462],{"type":50,"value":28398},{"type":44,"tag":100,"props":29464,"children":29465},{"style":400},[29466],{"type":50,"value":27230},{"type":44,"tag":100,"props":29468,"children":29469},{"style":119},[29470],{"type":50,"value":29189},{"type":44,"tag":100,"props":29472,"children":29473},{"class":102,"line":252},[29474,29478,29482],{"type":44,"tag":100,"props":29475,"children":29476},{"style":27168},[29477],{"type":50,"value":28415},{"type":44,"tag":100,"props":29479,"children":29480},{"style":400},[29481],{"type":50,"value":27230},{"type":44,"tag":100,"props":29483,"children":29484},{"style":119},[29485],{"type":50,"value":28587},{"type":44,"tag":100,"props":29487,"children":29488},{"class":102,"line":261},[29489,29493,29497],{"type":44,"tag":100,"props":29490,"children":29491},{"style":27168},[29492],{"type":50,"value":28449},{"type":44,"tag":100,"props":29494,"children":29495},{"style":400},[29496],{"type":50,"value":27230},{"type":44,"tag":100,"props":29498,"children":29499},{"style":119},[29500],{"type":50,"value":28458},{"type":44,"tag":100,"props":29502,"children":29503},{"class":102,"line":270},[29504,29508,29512],{"type":44,"tag":100,"props":29505,"children":29506},{"style":27168},[29507],{"type":50,"value":28466},{"type":44,"tag":100,"props":29509,"children":29510},{"style":400},[29511],{"type":50,"value":27230},{"type":44,"tag":100,"props":29513,"children":29514},{"style":119},[29515],{"type":50,"value":29236},{"type":44,"tag":100,"props":29517,"children":29518},{"class":102,"line":279},[29519,29523,29527],{"type":44,"tag":100,"props":29520,"children":29521},{"style":27168},[29522],{"type":50,"value":28483},{"type":44,"tag":100,"props":29524,"children":29525},{"style":400},[29526],{"type":50,"value":27230},{"type":44,"tag":100,"props":29528,"children":29529},{"style":119},[29530],{"type":50,"value":28492},{"type":44,"tag":203,"props":29532,"children":29533},{"v-slot:stripe-payouts":7},[29534,29546],{"type":44,"tag":53,"props":29535,"children":29536},{},[29537],{"type":44,"tag":185,"props":29538,"children":29539},{},[29540],{"type":44,"tag":81,"props":29541,"children":29543},{"className":29542},[],[29544],{"type":50,"value":29545},"ecommerce\u002Fassets\u002Fstripe_payouts.asset.yml",{"type":44,"tag":90,"props":29547,"children":29549},{"className":27156,"code":29548,"language":27158,"meta":7,"style":7},"name: raw.stripe_payouts\ntype: ingestr\nparameters:\n  source_connection: stripe\n  source_table: payouts\n  incremental_strategy: merge\n  incremental_key: created\n  primary_key: id\n",[29550],{"type":44,"tag":81,"props":29551,"children":29552},{"__ignoreMap":7},[29553,29569,29584,29595,29610,29626,29641,29656],{"type":44,"tag":100,"props":29554,"children":29555},{"class":102,"line":103},[29556,29560,29564],{"type":44,"tag":100,"props":29557,"children":29558},{"style":27168},[29559],{"type":50,"value":27225},{"type":44,"tag":100,"props":29561,"children":29562},{"style":400},[29563],{"type":50,"value":27230},{"type":44,"tag":100,"props":29565,"children":29566},{"style":119},[29567],{"type":50,"value":29568},"raw.stripe_payouts\n",{"type":44,"tag":100,"props":29570,"children":29571},{"class":102,"line":226},[29572,29576,29580],{"type":44,"tag":100,"props":29573,"children":29574},{"style":27168},[29575],{"type":50,"value":28369},{"type":44,"tag":100,"props":29577,"children":29578},{"style":400},[29579],{"type":50,"value":27230},{"type":44,"tag":100,"props":29581,"children":29582},{"style":119},[29583],{"type":50,"value":28378},{"type":44,"tag":100,"props":29585,"children":29586},{"class":102,"line":235},[29587,29591],{"type":44,"tag":100,"props":29588,"children":29589},{"style":27168},[29590],{"type":50,"value":28386},{"type":44,"tag":100,"props":29592,"children":29593},{"style":400},[29594],{"type":50,"value":27176},{"type":44,"tag":100,"props":29596,"children":29597},{"class":102,"line":24},[29598,29602,29606],{"type":44,"tag":100,"props":29599,"children":29600},{"style":27168},[29601],{"type":50,"value":28398},{"type":44,"tag":100,"props":29603,"children":29604},{"style":400},[29605],{"type":50,"value":27230},{"type":44,"tag":100,"props":29607,"children":29608},{"style":119},[29609],{"type":50,"value":29189},{"type":44,"tag":100,"props":29611,"children":29612},{"class":102,"line":252},[29613,29617,29621],{"type":44,"tag":100,"props":29614,"children":29615},{"style":27168},[29616],{"type":50,"value":28415},{"type":44,"tag":100,"props":29618,"children":29619},{"style":400},[29620],{"type":50,"value":27230},{"type":44,"tag":100,"props":29622,"children":29623},{"style":119},[29624],{"type":50,"value":29625},"payouts\n",{"type":44,"tag":100,"props":29627,"children":29628},{"class":102,"line":261},[29629,29633,29637],{"type":44,"tag":100,"props":29630,"children":29631},{"style":27168},[29632],{"type":50,"value":28449},{"type":44,"tag":100,"props":29634,"children":29635},{"style":400},[29636],{"type":50,"value":27230},{"type":44,"tag":100,"props":29638,"children":29639},{"style":119},[29640],{"type":50,"value":28458},{"type":44,"tag":100,"props":29642,"children":29643},{"class":102,"line":270},[29644,29648,29652],{"type":44,"tag":100,"props":29645,"children":29646},{"style":27168},[29647],{"type":50,"value":28466},{"type":44,"tag":100,"props":29649,"children":29650},{"style":400},[29651],{"type":50,"value":27230},{"type":44,"tag":100,"props":29653,"children":29654},{"style":119},[29655],{"type":50,"value":29236},{"type":44,"tag":100,"props":29657,"children":29658},{"class":102,"line":279},[29659,29663,29667],{"type":44,"tag":100,"props":29660,"children":29661},{"style":27168},[29662],{"type":50,"value":28483},{"type":44,"tag":100,"props":29664,"children":29665},{"style":400},[29666],{"type":50,"value":27230},{"type":44,"tag":100,"props":29668,"children":29669},{"style":119},[29670],{"type":50,"value":28492},{"type":44,"tag":5108,"props":29672,"children":29673},{"type":28931},[29674],{"type":44,"tag":53,"props":29675,"children":29676},{},[29677,29679,29685,29686,29692,29694,29700],{"type":50,"value":29678},"The Stripe MCP can help you explore which tables and fields are available. Ask Claude Code \"what data can I pull from Stripe?\" to see tables like ",{"type":44,"tag":81,"props":29680,"children":29682},{"className":29681},[],[29683],{"type":50,"value":29684},"subscriptions",{"type":50,"value":750},{"type":44,"tag":81,"props":29687,"children":29689},{"className":29688},[],[29690],{"type":50,"value":29691},"disputes",{"type":50,"value":29693},", or ",{"type":44,"tag":81,"props":29695,"children":29697},{"className":29696},[],[29698],{"type":50,"value":29699},"balance_transactions",{"type":50,"value":786},{"type":44,"tag":28202,"props":29702,"children":29703},{},[],{"type":44,"tag":124,"props":29705,"children":29707},{"id":29706},"email-marketing",[29708],{"type":50,"value":29709},"Email Marketing",{"type":44,"tag":197,"props":29711,"children":29714},{":variants":29712,"group":29713},"[{\"id\":\"klaviyo\",\"label\":\"Klaviyo\"},{\"id\":\"hubspot\",\"label\":\"HubSpot\"}]","marketing",[29715,30105],{"type":44,"tag":203,"props":29716,"children":29717},{"v-slot:klaviyo":7},[29718,29723,29728,29736,29757,29761,29799,29806],{"type":44,"tag":28301,"props":29719,"children":29721},{"id":29720},"klaviyo",[29722],{"type":50,"value":27955},{"type":44,"tag":53,"props":29724,"children":29725},{},[29726],{"type":50,"value":29727},"Klaviyo covers the marketing side: how your email and SMS campaigns are performing and which customers are engaging.",{"type":44,"tag":53,"props":29729,"children":29730},{},[29731],{"type":44,"tag":185,"props":29732,"children":29733},{},[29734],{"type":50,"value":29735},"Add the Klaviyo connection:",{"type":44,"tag":90,"props":29737,"children":29738},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[29739],{"type":44,"tag":81,"props":29740,"children":29741},{"__ignoreMap":7},[29742],{"type":44,"tag":100,"props":29743,"children":29744},{"class":102,"line":103},[29745,29749,29753],{"type":44,"tag":100,"props":29746,"children":29747},{"style":107},[29748],{"type":50,"value":13195},{"type":44,"tag":100,"props":29750,"children":29751},{"style":119},[29752],{"type":50,"value":26889},{"type":44,"tag":100,"props":29754,"children":29755},{"style":119},[29756],{"type":50,"value":26894},{"type":44,"tag":53,"props":29758,"children":29759},{},[29760],{"type":50,"value":26899},{"type":44,"tag":13430,"props":29762,"children":29763},{},[29764,29777,29790],{"type":44,"tag":13434,"props":29765,"children":29766},{},[29767,29771,29772],{"type":44,"tag":185,"props":29768,"children":29769},{},[29770],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":29773,"children":29775},{"className":29774},[],[29776],{"type":50,"value":29720},{"type":44,"tag":13434,"props":29778,"children":29779},{},[29780,29784,29785],{"type":44,"tag":185,"props":29781,"children":29782},{},[29783],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":29786,"children":29788},{"className":29787},[],[29789],{"type":50,"value":29720},{"type":44,"tag":13434,"props":29791,"children":29792},{},[29793,29797],{"type":44,"tag":185,"props":29794,"children":29795},{},[29796],{"type":50,"value":29088},{"type":50,"value":29798}," your Klaviyo private API key",{"type":44,"tag":53,"props":29800,"children":29801},{},[29802],{"type":44,"tag":185,"props":29803,"children":29804},{},[29805],{"type":50,"value":29105},{"type":44,"tag":197,"props":29807,"children":29809},{":variants":29808},"[{\"id\":\"klaviyo-campaigns\",\"label\":\"Campaigns\"},{\"id\":\"klaviyo-flows\",\"label\":\"Flows\"},{\"id\":\"klaviyo-metrics\",\"label\":\"Metrics\"}]",[29810,29909,30007],{"type":44,"tag":203,"props":29811,"children":29812},{"v-slot:klaviyo-campaigns":7},[29813],{"type":44,"tag":90,"props":29814,"children":29816},{"className":27156,"code":29815,"language":27158,"meta":7,"style":7},"name: raw.klaviyo_campaigns\ntype: ingestr\nparameters:\n  source_connection: klaviyo\n  source_table: campaigns\n  incremental_strategy: replace\n",[29817],{"type":44,"tag":81,"props":29818,"children":29819},{"__ignoreMap":7},[29820,29836,29851,29862,29878,29894],{"type":44,"tag":100,"props":29821,"children":29822},{"class":102,"line":103},[29823,29827,29831],{"type":44,"tag":100,"props":29824,"children":29825},{"style":27168},[29826],{"type":50,"value":27225},{"type":44,"tag":100,"props":29828,"children":29829},{"style":400},[29830],{"type":50,"value":27230},{"type":44,"tag":100,"props":29832,"children":29833},{"style":119},[29834],{"type":50,"value":29835},"raw.klaviyo_campaigns\n",{"type":44,"tag":100,"props":29837,"children":29838},{"class":102,"line":226},[29839,29843,29847],{"type":44,"tag":100,"props":29840,"children":29841},{"style":27168},[29842],{"type":50,"value":28369},{"type":44,"tag":100,"props":29844,"children":29845},{"style":400},[29846],{"type":50,"value":27230},{"type":44,"tag":100,"props":29848,"children":29849},{"style":119},[29850],{"type":50,"value":28378},{"type":44,"tag":100,"props":29852,"children":29853},{"class":102,"line":235},[29854,29858],{"type":44,"tag":100,"props":29855,"children":29856},{"style":27168},[29857],{"type":50,"value":28386},{"type":44,"tag":100,"props":29859,"children":29860},{"style":400},[29861],{"type":50,"value":27176},{"type":44,"tag":100,"props":29863,"children":29864},{"class":102,"line":24},[29865,29869,29873],{"type":44,"tag":100,"props":29866,"children":29867},{"style":27168},[29868],{"type":50,"value":28398},{"type":44,"tag":100,"props":29870,"children":29871},{"style":400},[29872],{"type":50,"value":27230},{"type":44,"tag":100,"props":29874,"children":29875},{"style":119},[29876],{"type":50,"value":29877},"klaviyo\n",{"type":44,"tag":100,"props":29879,"children":29880},{"class":102,"line":252},[29881,29885,29889],{"type":44,"tag":100,"props":29882,"children":29883},{"style":27168},[29884],{"type":50,"value":28415},{"type":44,"tag":100,"props":29886,"children":29887},{"style":400},[29888],{"type":50,"value":27230},{"type":44,"tag":100,"props":29890,"children":29891},{"style":119},[29892],{"type":50,"value":29893},"campaigns\n",{"type":44,"tag":100,"props":29895,"children":29896},{"class":102,"line":261},[29897,29901,29905],{"type":44,"tag":100,"props":29898,"children":29899},{"style":27168},[29900],{"type":50,"value":28449},{"type":44,"tag":100,"props":29902,"children":29903},{"style":400},[29904],{"type":50,"value":27230},{"type":44,"tag":100,"props":29906,"children":29907},{"style":119},[29908],{"type":50,"value":28928},{"type":44,"tag":203,"props":29910,"children":29911},{"v-slot:klaviyo-flows":7},[29912],{"type":44,"tag":90,"props":29913,"children":29915},{"className":27156,"code":29914,"language":27158,"meta":7,"style":7},"name: raw.klaviyo_flows\ntype: ingestr\nparameters:\n  source_connection: klaviyo\n  source_table: flows\n  incremental_strategy: replace\n",[29916],{"type":44,"tag":81,"props":29917,"children":29918},{"__ignoreMap":7},[29919,29935,29950,29961,29976,29992],{"type":44,"tag":100,"props":29920,"children":29921},{"class":102,"line":103},[29922,29926,29930],{"type":44,"tag":100,"props":29923,"children":29924},{"style":27168},[29925],{"type":50,"value":27225},{"type":44,"tag":100,"props":29927,"children":29928},{"style":400},[29929],{"type":50,"value":27230},{"type":44,"tag":100,"props":29931,"children":29932},{"style":119},[29933],{"type":50,"value":29934},"raw.klaviyo_flows\n",{"type":44,"tag":100,"props":29936,"children":29937},{"class":102,"line":226},[29938,29942,29946],{"type":44,"tag":100,"props":29939,"children":29940},{"style":27168},[29941],{"type":50,"value":28369},{"type":44,"tag":100,"props":29943,"children":29944},{"style":400},[29945],{"type":50,"value":27230},{"type":44,"tag":100,"props":29947,"children":29948},{"style":119},[29949],{"type":50,"value":28378},{"type":44,"tag":100,"props":29951,"children":29952},{"class":102,"line":235},[29953,29957],{"type":44,"tag":100,"props":29954,"children":29955},{"style":27168},[29956],{"type":50,"value":28386},{"type":44,"tag":100,"props":29958,"children":29959},{"style":400},[29960],{"type":50,"value":27176},{"type":44,"tag":100,"props":29962,"children":29963},{"class":102,"line":24},[29964,29968,29972],{"type":44,"tag":100,"props":29965,"children":29966},{"style":27168},[29967],{"type":50,"value":28398},{"type":44,"tag":100,"props":29969,"children":29970},{"style":400},[29971],{"type":50,"value":27230},{"type":44,"tag":100,"props":29973,"children":29974},{"style":119},[29975],{"type":50,"value":29877},{"type":44,"tag":100,"props":29977,"children":29978},{"class":102,"line":252},[29979,29983,29987],{"type":44,"tag":100,"props":29980,"children":29981},{"style":27168},[29982],{"type":50,"value":28415},{"type":44,"tag":100,"props":29984,"children":29985},{"style":400},[29986],{"type":50,"value":27230},{"type":44,"tag":100,"props":29988,"children":29989},{"style":119},[29990],{"type":50,"value":29991},"flows\n",{"type":44,"tag":100,"props":29993,"children":29994},{"class":102,"line":261},[29995,29999,30003],{"type":44,"tag":100,"props":29996,"children":29997},{"style":27168},[29998],{"type":50,"value":28449},{"type":44,"tag":100,"props":30000,"children":30001},{"style":400},[30002],{"type":50,"value":27230},{"type":44,"tag":100,"props":30004,"children":30005},{"style":119},[30006],{"type":50,"value":28928},{"type":44,"tag":203,"props":30008,"children":30009},{"v-slot:klaviyo-metrics":7},[30010],{"type":44,"tag":90,"props":30011,"children":30013},{"className":27156,"code":30012,"language":27158,"meta":7,"style":7},"name: raw.klaviyo_metrics\ntype: ingestr\nparameters:\n  source_connection: klaviyo\n  source_table: metrics\n  incremental_strategy: replace\n",[30014],{"type":44,"tag":81,"props":30015,"children":30016},{"__ignoreMap":7},[30017,30033,30048,30059,30074,30090],{"type":44,"tag":100,"props":30018,"children":30019},{"class":102,"line":103},[30020,30024,30028],{"type":44,"tag":100,"props":30021,"children":30022},{"style":27168},[30023],{"type":50,"value":27225},{"type":44,"tag":100,"props":30025,"children":30026},{"style":400},[30027],{"type":50,"value":27230},{"type":44,"tag":100,"props":30029,"children":30030},{"style":119},[30031],{"type":50,"value":30032},"raw.klaviyo_metrics\n",{"type":44,"tag":100,"props":30034,"children":30035},{"class":102,"line":226},[30036,30040,30044],{"type":44,"tag":100,"props":30037,"children":30038},{"style":27168},[30039],{"type":50,"value":28369},{"type":44,"tag":100,"props":30041,"children":30042},{"style":400},[30043],{"type":50,"value":27230},{"type":44,"tag":100,"props":30045,"children":30046},{"style":119},[30047],{"type":50,"value":28378},{"type":44,"tag":100,"props":30049,"children":30050},{"class":102,"line":235},[30051,30055],{"type":44,"tag":100,"props":30052,"children":30053},{"style":27168},[30054],{"type":50,"value":28386},{"type":44,"tag":100,"props":30056,"children":30057},{"style":400},[30058],{"type":50,"value":27176},{"type":44,"tag":100,"props":30060,"children":30061},{"class":102,"line":24},[30062,30066,30070],{"type":44,"tag":100,"props":30063,"children":30064},{"style":27168},[30065],{"type":50,"value":28398},{"type":44,"tag":100,"props":30067,"children":30068},{"style":400},[30069],{"type":50,"value":27230},{"type":44,"tag":100,"props":30071,"children":30072},{"style":119},[30073],{"type":50,"value":29877},{"type":44,"tag":100,"props":30075,"children":30076},{"class":102,"line":252},[30077,30081,30085],{"type":44,"tag":100,"props":30078,"children":30079},{"style":27168},[30080],{"type":50,"value":28415},{"type":44,"tag":100,"props":30082,"children":30083},{"style":400},[30084],{"type":50,"value":27230},{"type":44,"tag":100,"props":30086,"children":30087},{"style":119},[30088],{"type":50,"value":30089},"metrics\n",{"type":44,"tag":100,"props":30091,"children":30092},{"class":102,"line":261},[30093,30097,30101],{"type":44,"tag":100,"props":30094,"children":30095},{"style":27168},[30096],{"type":50,"value":28449},{"type":44,"tag":100,"props":30098,"children":30099},{"style":400},[30100],{"type":50,"value":27230},{"type":44,"tag":100,"props":30102,"children":30103},{"style":119},[30104],{"type":50,"value":28928},{"type":44,"tag":203,"props":30106,"children":30107},{"v-slot:hubspot":7},[30108,30113,30118,30126,30147,30151,30189,30196],{"type":44,"tag":28301,"props":30109,"children":30111},{"id":30110},"hubspot",[30112],{"type":50,"value":27956},{"type":44,"tag":53,"props":30114,"children":30115},{},[30116],{"type":50,"value":30117},"HubSpot covers your CRM and marketing data: contacts, deals, email campaigns, and marketing activity.",{"type":44,"tag":53,"props":30119,"children":30120},{},[30121],{"type":44,"tag":185,"props":30122,"children":30123},{},[30124],{"type":50,"value":30125},"Add the HubSpot connection:",{"type":44,"tag":90,"props":30127,"children":30128},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[30129],{"type":44,"tag":81,"props":30130,"children":30131},{"__ignoreMap":7},[30132],{"type":44,"tag":100,"props":30133,"children":30134},{"class":102,"line":103},[30135,30139,30143],{"type":44,"tag":100,"props":30136,"children":30137},{"style":107},[30138],{"type":50,"value":13195},{"type":44,"tag":100,"props":30140,"children":30141},{"style":119},[30142],{"type":50,"value":26889},{"type":44,"tag":100,"props":30144,"children":30145},{"style":119},[30146],{"type":50,"value":26894},{"type":44,"tag":53,"props":30148,"children":30149},{},[30150],{"type":50,"value":26899},{"type":44,"tag":13430,"props":30152,"children":30153},{},[30154,30167,30180],{"type":44,"tag":13434,"props":30155,"children":30156},{},[30157,30161,30162],{"type":44,"tag":185,"props":30158,"children":30159},{},[30160],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":30163,"children":30165},{"className":30164},[],[30166],{"type":50,"value":30110},{"type":44,"tag":13434,"props":30168,"children":30169},{},[30170,30174,30175],{"type":44,"tag":185,"props":30171,"children":30172},{},[30173],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":30176,"children":30178},{"className":30177},[],[30179],{"type":50,"value":30110},{"type":44,"tag":13434,"props":30181,"children":30182},{},[30183,30187],{"type":44,"tag":185,"props":30184,"children":30185},{},[30186],{"type":50,"value":29088},{"type":50,"value":30188}," your HubSpot private app access token",{"type":44,"tag":53,"props":30190,"children":30191},{},[30192],{"type":44,"tag":185,"props":30193,"children":30194},{},[30195],{"type":50,"value":29105},{"type":44,"tag":197,"props":30197,"children":30199},{":variants":30198},"[{\"id\":\"hubspot-contacts\",\"label\":\"Contacts\"},{\"id\":\"hubspot-deals\",\"label\":\"Deals\"},{\"id\":\"hubspot-campaigns\",\"label\":\"Campaigns\"}]",[30200,30330,30458],{"type":44,"tag":203,"props":30201,"children":30202},{"v-slot:hubspot-contacts":7},[30203],{"type":44,"tag":90,"props":30204,"children":30206},{"className":27156,"code":30205,"language":27158,"meta":7,"style":7},"name: raw.hubspot_contacts\ntype: ingestr\nparameters:\n  source_connection: hubspot\n  source_table: contacts\n  incremental_strategy: merge\n  incremental_key: updatedAt\n  primary_key: id\n",[30207],{"type":44,"tag":81,"props":30208,"children":30209},{"__ignoreMap":7},[30210,30226,30241,30252,30268,30284,30299,30315],{"type":44,"tag":100,"props":30211,"children":30212},{"class":102,"line":103},[30213,30217,30221],{"type":44,"tag":100,"props":30214,"children":30215},{"style":27168},[30216],{"type":50,"value":27225},{"type":44,"tag":100,"props":30218,"children":30219},{"style":400},[30220],{"type":50,"value":27230},{"type":44,"tag":100,"props":30222,"children":30223},{"style":119},[30224],{"type":50,"value":30225},"raw.hubspot_contacts\n",{"type":44,"tag":100,"props":30227,"children":30228},{"class":102,"line":226},[30229,30233,30237],{"type":44,"tag":100,"props":30230,"children":30231},{"style":27168},[30232],{"type":50,"value":28369},{"type":44,"tag":100,"props":30234,"children":30235},{"style":400},[30236],{"type":50,"value":27230},{"type":44,"tag":100,"props":30238,"children":30239},{"style":119},[30240],{"type":50,"value":28378},{"type":44,"tag":100,"props":30242,"children":30243},{"class":102,"line":235},[30244,30248],{"type":44,"tag":100,"props":30245,"children":30246},{"style":27168},[30247],{"type":50,"value":28386},{"type":44,"tag":100,"props":30249,"children":30250},{"style":400},[30251],{"type":50,"value":27176},{"type":44,"tag":100,"props":30253,"children":30254},{"class":102,"line":24},[30255,30259,30263],{"type":44,"tag":100,"props":30256,"children":30257},{"style":27168},[30258],{"type":50,"value":28398},{"type":44,"tag":100,"props":30260,"children":30261},{"style":400},[30262],{"type":50,"value":27230},{"type":44,"tag":100,"props":30264,"children":30265},{"style":119},[30266],{"type":50,"value":30267},"hubspot\n",{"type":44,"tag":100,"props":30269,"children":30270},{"class":102,"line":252},[30271,30275,30279],{"type":44,"tag":100,"props":30272,"children":30273},{"style":27168},[30274],{"type":50,"value":28415},{"type":44,"tag":100,"props":30276,"children":30277},{"style":400},[30278],{"type":50,"value":27230},{"type":44,"tag":100,"props":30280,"children":30281},{"style":119},[30282],{"type":50,"value":30283},"contacts\n",{"type":44,"tag":100,"props":30285,"children":30286},{"class":102,"line":261},[30287,30291,30295],{"type":44,"tag":100,"props":30288,"children":30289},{"style":27168},[30290],{"type":50,"value":28449},{"type":44,"tag":100,"props":30292,"children":30293},{"style":400},[30294],{"type":50,"value":27230},{"type":44,"tag":100,"props":30296,"children":30297},{"style":119},[30298],{"type":50,"value":28458},{"type":44,"tag":100,"props":30300,"children":30301},{"class":102,"line":270},[30302,30306,30310],{"type":44,"tag":100,"props":30303,"children":30304},{"style":27168},[30305],{"type":50,"value":28466},{"type":44,"tag":100,"props":30307,"children":30308},{"style":400},[30309],{"type":50,"value":27230},{"type":44,"tag":100,"props":30311,"children":30312},{"style":119},[30313],{"type":50,"value":30314},"updatedAt\n",{"type":44,"tag":100,"props":30316,"children":30317},{"class":102,"line":279},[30318,30322,30326],{"type":44,"tag":100,"props":30319,"children":30320},{"style":27168},[30321],{"type":50,"value":28483},{"type":44,"tag":100,"props":30323,"children":30324},{"style":400},[30325],{"type":50,"value":27230},{"type":44,"tag":100,"props":30327,"children":30328},{"style":119},[30329],{"type":50,"value":28492},{"type":44,"tag":203,"props":30331,"children":30332},{"v-slot:hubspot-deals":7},[30333],{"type":44,"tag":90,"props":30334,"children":30336},{"className":27156,"code":30335,"language":27158,"meta":7,"style":7},"name: raw.hubspot_deals\ntype: ingestr\nparameters:\n  source_connection: hubspot\n  source_table: deals\n  incremental_strategy: merge\n  incremental_key: updatedAt\n  primary_key: id\n",[30337],{"type":44,"tag":81,"props":30338,"children":30339},{"__ignoreMap":7},[30340,30356,30371,30382,30397,30413,30428,30443],{"type":44,"tag":100,"props":30341,"children":30342},{"class":102,"line":103},[30343,30347,30351],{"type":44,"tag":100,"props":30344,"children":30345},{"style":27168},[30346],{"type":50,"value":27225},{"type":44,"tag":100,"props":30348,"children":30349},{"style":400},[30350],{"type":50,"value":27230},{"type":44,"tag":100,"props":30352,"children":30353},{"style":119},[30354],{"type":50,"value":30355},"raw.hubspot_deals\n",{"type":44,"tag":100,"props":30357,"children":30358},{"class":102,"line":226},[30359,30363,30367],{"type":44,"tag":100,"props":30360,"children":30361},{"style":27168},[30362],{"type":50,"value":28369},{"type":44,"tag":100,"props":30364,"children":30365},{"style":400},[30366],{"type":50,"value":27230},{"type":44,"tag":100,"props":30368,"children":30369},{"style":119},[30370],{"type":50,"value":28378},{"type":44,"tag":100,"props":30372,"children":30373},{"class":102,"line":235},[30374,30378],{"type":44,"tag":100,"props":30375,"children":30376},{"style":27168},[30377],{"type":50,"value":28386},{"type":44,"tag":100,"props":30379,"children":30380},{"style":400},[30381],{"type":50,"value":27176},{"type":44,"tag":100,"props":30383,"children":30384},{"class":102,"line":24},[30385,30389,30393],{"type":44,"tag":100,"props":30386,"children":30387},{"style":27168},[30388],{"type":50,"value":28398},{"type":44,"tag":100,"props":30390,"children":30391},{"style":400},[30392],{"type":50,"value":27230},{"type":44,"tag":100,"props":30394,"children":30395},{"style":119},[30396],{"type":50,"value":30267},{"type":44,"tag":100,"props":30398,"children":30399},{"class":102,"line":252},[30400,30404,30408],{"type":44,"tag":100,"props":30401,"children":30402},{"style":27168},[30403],{"type":50,"value":28415},{"type":44,"tag":100,"props":30405,"children":30406},{"style":400},[30407],{"type":50,"value":27230},{"type":44,"tag":100,"props":30409,"children":30410},{"style":119},[30411],{"type":50,"value":30412},"deals\n",{"type":44,"tag":100,"props":30414,"children":30415},{"class":102,"line":261},[30416,30420,30424],{"type":44,"tag":100,"props":30417,"children":30418},{"style":27168},[30419],{"type":50,"value":28449},{"type":44,"tag":100,"props":30421,"children":30422},{"style":400},[30423],{"type":50,"value":27230},{"type":44,"tag":100,"props":30425,"children":30426},{"style":119},[30427],{"type":50,"value":28458},{"type":44,"tag":100,"props":30429,"children":30430},{"class":102,"line":270},[30431,30435,30439],{"type":44,"tag":100,"props":30432,"children":30433},{"style":27168},[30434],{"type":50,"value":28466},{"type":44,"tag":100,"props":30436,"children":30437},{"style":400},[30438],{"type":50,"value":27230},{"type":44,"tag":100,"props":30440,"children":30441},{"style":119},[30442],{"type":50,"value":30314},{"type":44,"tag":100,"props":30444,"children":30445},{"class":102,"line":279},[30446,30450,30454],{"type":44,"tag":100,"props":30447,"children":30448},{"style":27168},[30449],{"type":50,"value":28483},{"type":44,"tag":100,"props":30451,"children":30452},{"style":400},[30453],{"type":50,"value":27230},{"type":44,"tag":100,"props":30455,"children":30456},{"style":119},[30457],{"type":50,"value":28492},{"type":44,"tag":203,"props":30459,"children":30460},{"v-slot:hubspot-campaigns":7},[30461],{"type":44,"tag":90,"props":30462,"children":30464},{"className":27156,"code":30463,"language":27158,"meta":7,"style":7},"name: raw.hubspot_campaigns\ntype: ingestr\nparameters:\n  source_connection: hubspot\n  source_table: campaigns\n  incremental_strategy: replace\n",[30465],{"type":44,"tag":81,"props":30466,"children":30467},{"__ignoreMap":7},[30468,30484,30499,30510,30525,30540],{"type":44,"tag":100,"props":30469,"children":30470},{"class":102,"line":103},[30471,30475,30479],{"type":44,"tag":100,"props":30472,"children":30473},{"style":27168},[30474],{"type":50,"value":27225},{"type":44,"tag":100,"props":30476,"children":30477},{"style":400},[30478],{"type":50,"value":27230},{"type":44,"tag":100,"props":30480,"children":30481},{"style":119},[30482],{"type":50,"value":30483},"raw.hubspot_campaigns\n",{"type":44,"tag":100,"props":30485,"children":30486},{"class":102,"line":226},[30487,30491,30495],{"type":44,"tag":100,"props":30488,"children":30489},{"style":27168},[30490],{"type":50,"value":28369},{"type":44,"tag":100,"props":30492,"children":30493},{"style":400},[30494],{"type":50,"value":27230},{"type":44,"tag":100,"props":30496,"children":30497},{"style":119},[30498],{"type":50,"value":28378},{"type":44,"tag":100,"props":30500,"children":30501},{"class":102,"line":235},[30502,30506],{"type":44,"tag":100,"props":30503,"children":30504},{"style":27168},[30505],{"type":50,"value":28386},{"type":44,"tag":100,"props":30507,"children":30508},{"style":400},[30509],{"type":50,"value":27176},{"type":44,"tag":100,"props":30511,"children":30512},{"class":102,"line":24},[30513,30517,30521],{"type":44,"tag":100,"props":30514,"children":30515},{"style":27168},[30516],{"type":50,"value":28398},{"type":44,"tag":100,"props":30518,"children":30519},{"style":400},[30520],{"type":50,"value":27230},{"type":44,"tag":100,"props":30522,"children":30523},{"style":119},[30524],{"type":50,"value":30267},{"type":44,"tag":100,"props":30526,"children":30527},{"class":102,"line":252},[30528,30532,30536],{"type":44,"tag":100,"props":30529,"children":30530},{"style":27168},[30531],{"type":50,"value":28415},{"type":44,"tag":100,"props":30533,"children":30534},{"style":400},[30535],{"type":50,"value":27230},{"type":44,"tag":100,"props":30537,"children":30538},{"style":119},[30539],{"type":50,"value":29893},{"type":44,"tag":100,"props":30541,"children":30542},{"class":102,"line":261},[30543,30547,30551],{"type":44,"tag":100,"props":30544,"children":30545},{"style":27168},[30546],{"type":50,"value":28449},{"type":44,"tag":100,"props":30548,"children":30549},{"style":400},[30550],{"type":50,"value":27230},{"type":44,"tag":100,"props":30552,"children":30553},{"style":119},[30554],{"type":50,"value":28928},{"type":44,"tag":28202,"props":30556,"children":30557},{},[],{"type":44,"tag":124,"props":30559,"children":30561},{"id":30560},"advertising",[30562],{"type":50,"value":30563},"Advertising",{"type":44,"tag":197,"props":30565,"children":30568},{":variants":30566,"group":30567},"[{\"id\":\"facebook-ads\",\"label\":\"Facebook Ads\"},{\"id\":\"google-ads\",\"label\":\"Google Ads\"},{\"id\":\"tiktok-ads\",\"label\":\"TikTok Ads\"}]","ads",[30569,30911,31245],{"type":44,"tag":203,"props":30570,"children":30571},{"v-slot:facebook-ads":7},[30572,30577,30582,30590,30611,30615,30672,30679],{"type":44,"tag":28301,"props":30573,"children":30575},{"id":30574},"facebook-ads",[30576],{"type":50,"value":27957},{"type":44,"tag":53,"props":30578,"children":30579},{},[30580],{"type":50,"value":30581},"Facebook Ads shows you what you're spending on acquisition across Facebook and Instagram.",{"type":44,"tag":53,"props":30583,"children":30584},{},[30585],{"type":44,"tag":185,"props":30586,"children":30587},{},[30588],{"type":50,"value":30589},"Add the connection:",{"type":44,"tag":90,"props":30591,"children":30592},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[30593],{"type":44,"tag":81,"props":30594,"children":30595},{"__ignoreMap":7},[30596],{"type":44,"tag":100,"props":30597,"children":30598},{"class":102,"line":103},[30599,30603,30607],{"type":44,"tag":100,"props":30600,"children":30601},{"style":107},[30602],{"type":50,"value":13195},{"type":44,"tag":100,"props":30604,"children":30605},{"style":119},[30606],{"type":50,"value":26889},{"type":44,"tag":100,"props":30608,"children":30609},{"style":119},[30610],{"type":50,"value":26894},{"type":44,"tag":53,"props":30612,"children":30613},{},[30614],{"type":50,"value":26899},{"type":44,"tag":13430,"props":30616,"children":30617},{},[30618,30632,30645,30662],{"type":44,"tag":13434,"props":30619,"children":30620},{},[30621,30625,30626],{"type":44,"tag":185,"props":30622,"children":30623},{},[30624],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":30627,"children":30629},{"className":30628},[],[30630],{"type":50,"value":30631},"facebook_ads",{"type":44,"tag":13434,"props":30633,"children":30634},{},[30635,30639,30640],{"type":44,"tag":185,"props":30636,"children":30637},{},[30638],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":30641,"children":30643},{"className":30642},[],[30644],{"type":50,"value":30631},{"type":44,"tag":13434,"props":30646,"children":30647},{},[30648,30653,30655],{"type":44,"tag":185,"props":30649,"children":30650},{},[30651],{"type":50,"value":30652},"Access token:",{"type":50,"value":30654}," your ",{"type":44,"tag":13232,"props":30656,"children":30659},{"href":30657,"rel":30658},"https:\u002F\u002Fdevelopers.facebook.com\u002Fdocs\u002Fmarketing-api\u002Foverview\u002Fauthorization",[26516],[30660],{"type":50,"value":30661},"Facebook Marketing API access token",{"type":44,"tag":13434,"props":30663,"children":30664},{},[30665,30670],{"type":44,"tag":185,"props":30666,"children":30667},{},[30668],{"type":50,"value":30669},"Account IDs:",{"type":50,"value":30671}," your ad account ID(s), comma-separated",{"type":44,"tag":53,"props":30673,"children":30674},{},[30675],{"type":44,"tag":185,"props":30676,"children":30677},{},[30678],{"type":50,"value":29105},{"type":44,"tag":197,"props":30680,"children":30682},{":variants":30681},"[{\"id\":\"fb-campaigns\",\"label\":\"Campaigns\"},{\"id\":\"fb-insights\",\"label\":\"Ad Insights\"}]",[30683,30781],{"type":44,"tag":203,"props":30684,"children":30685},{"v-slot:fb-campaigns":7},[30686],{"type":44,"tag":90,"props":30687,"children":30689},{"className":27156,"code":30688,"language":27158,"meta":7,"style":7},"name: raw.facebook_campaigns\ntype: ingestr\nparameters:\n  source_connection: facebook_ads\n  source_table: campaigns\n  incremental_strategy: replace\n",[30690],{"type":44,"tag":81,"props":30691,"children":30692},{"__ignoreMap":7},[30693,30709,30724,30735,30751,30766],{"type":44,"tag":100,"props":30694,"children":30695},{"class":102,"line":103},[30696,30700,30704],{"type":44,"tag":100,"props":30697,"children":30698},{"style":27168},[30699],{"type":50,"value":27225},{"type":44,"tag":100,"props":30701,"children":30702},{"style":400},[30703],{"type":50,"value":27230},{"type":44,"tag":100,"props":30705,"children":30706},{"style":119},[30707],{"type":50,"value":30708},"raw.facebook_campaigns\n",{"type":44,"tag":100,"props":30710,"children":30711},{"class":102,"line":226},[30712,30716,30720],{"type":44,"tag":100,"props":30713,"children":30714},{"style":27168},[30715],{"type":50,"value":28369},{"type":44,"tag":100,"props":30717,"children":30718},{"style":400},[30719],{"type":50,"value":27230},{"type":44,"tag":100,"props":30721,"children":30722},{"style":119},[30723],{"type":50,"value":28378},{"type":44,"tag":100,"props":30725,"children":30726},{"class":102,"line":235},[30727,30731],{"type":44,"tag":100,"props":30728,"children":30729},{"style":27168},[30730],{"type":50,"value":28386},{"type":44,"tag":100,"props":30732,"children":30733},{"style":400},[30734],{"type":50,"value":27176},{"type":44,"tag":100,"props":30736,"children":30737},{"class":102,"line":24},[30738,30742,30746],{"type":44,"tag":100,"props":30739,"children":30740},{"style":27168},[30741],{"type":50,"value":28398},{"type":44,"tag":100,"props":30743,"children":30744},{"style":400},[30745],{"type":50,"value":27230},{"type":44,"tag":100,"props":30747,"children":30748},{"style":119},[30749],{"type":50,"value":30750},"facebook_ads\n",{"type":44,"tag":100,"props":30752,"children":30753},{"class":102,"line":252},[30754,30758,30762],{"type":44,"tag":100,"props":30755,"children":30756},{"style":27168},[30757],{"type":50,"value":28415},{"type":44,"tag":100,"props":30759,"children":30760},{"style":400},[30761],{"type":50,"value":27230},{"type":44,"tag":100,"props":30763,"children":30764},{"style":119},[30765],{"type":50,"value":29893},{"type":44,"tag":100,"props":30767,"children":30768},{"class":102,"line":261},[30769,30773,30777],{"type":44,"tag":100,"props":30770,"children":30771},{"style":27168},[30772],{"type":50,"value":28449},{"type":44,"tag":100,"props":30774,"children":30775},{"style":400},[30776],{"type":50,"value":27230},{"type":44,"tag":100,"props":30778,"children":30779},{"style":119},[30780],{"type":50,"value":28928},{"type":44,"tag":203,"props":30782,"children":30783},{"v-slot:fb-insights":7},[30784],{"type":44,"tag":90,"props":30785,"children":30787},{"className":27156,"code":30786,"language":27158,"meta":7,"style":7},"name: raw.facebook_ad_insights\ntype: ingestr\nparameters:\n  source_connection: facebook_ads\n  source_table: insights\n  incremental_strategy: merge\n  incremental_key: date_start\n  primary_key: \"date_start,campaign_id\"\n",[30788],{"type":44,"tag":81,"props":30789,"children":30790},{"__ignoreMap":7},[30791,30807,30822,30833,30848,30864,30879,30895],{"type":44,"tag":100,"props":30792,"children":30793},{"class":102,"line":103},[30794,30798,30802],{"type":44,"tag":100,"props":30795,"children":30796},{"style":27168},[30797],{"type":50,"value":27225},{"type":44,"tag":100,"props":30799,"children":30800},{"style":400},[30801],{"type":50,"value":27230},{"type":44,"tag":100,"props":30803,"children":30804},{"style":119},[30805],{"type":50,"value":30806},"raw.facebook_ad_insights\n",{"type":44,"tag":100,"props":30808,"children":30809},{"class":102,"line":226},[30810,30814,30818],{"type":44,"tag":100,"props":30811,"children":30812},{"style":27168},[30813],{"type":50,"value":28369},{"type":44,"tag":100,"props":30815,"children":30816},{"style":400},[30817],{"type":50,"value":27230},{"type":44,"tag":100,"props":30819,"children":30820},{"style":119},[30821],{"type":50,"value":28378},{"type":44,"tag":100,"props":30823,"children":30824},{"class":102,"line":235},[30825,30829],{"type":44,"tag":100,"props":30826,"children":30827},{"style":27168},[30828],{"type":50,"value":28386},{"type":44,"tag":100,"props":30830,"children":30831},{"style":400},[30832],{"type":50,"value":27176},{"type":44,"tag":100,"props":30834,"children":30835},{"class":102,"line":24},[30836,30840,30844],{"type":44,"tag":100,"props":30837,"children":30838},{"style":27168},[30839],{"type":50,"value":28398},{"type":44,"tag":100,"props":30841,"children":30842},{"style":400},[30843],{"type":50,"value":27230},{"type":44,"tag":100,"props":30845,"children":30846},{"style":119},[30847],{"type":50,"value":30750},{"type":44,"tag":100,"props":30849,"children":30850},{"class":102,"line":252},[30851,30855,30859],{"type":44,"tag":100,"props":30852,"children":30853},{"style":27168},[30854],{"type":50,"value":28415},{"type":44,"tag":100,"props":30856,"children":30857},{"style":400},[30858],{"type":50,"value":27230},{"type":44,"tag":100,"props":30860,"children":30861},{"style":119},[30862],{"type":50,"value":30863},"insights\n",{"type":44,"tag":100,"props":30865,"children":30866},{"class":102,"line":261},[30867,30871,30875],{"type":44,"tag":100,"props":30868,"children":30869},{"style":27168},[30870],{"type":50,"value":28449},{"type":44,"tag":100,"props":30872,"children":30873},{"style":400},[30874],{"type":50,"value":27230},{"type":44,"tag":100,"props":30876,"children":30877},{"style":119},[30878],{"type":50,"value":28458},{"type":44,"tag":100,"props":30880,"children":30881},{"class":102,"line":270},[30882,30886,30890],{"type":44,"tag":100,"props":30883,"children":30884},{"style":27168},[30885],{"type":50,"value":28466},{"type":44,"tag":100,"props":30887,"children":30888},{"style":400},[30889],{"type":50,"value":27230},{"type":44,"tag":100,"props":30891,"children":30892},{"style":119},[30893],{"type":50,"value":30894},"date_start\n",{"type":44,"tag":100,"props":30896,"children":30897},{"class":102,"line":279},[30898,30902,30906],{"type":44,"tag":100,"props":30899,"children":30900},{"style":27168},[30901],{"type":50,"value":28483},{"type":44,"tag":100,"props":30903,"children":30904},{"style":400},[30905],{"type":50,"value":27230},{"type":44,"tag":100,"props":30907,"children":30908},{"style":119},[30909],{"type":50,"value":30910},"\"date_start,campaign_id\"\n",{"type":44,"tag":203,"props":30912,"children":30913},{"v-slot:google-ads":7},[30914,30919,30924,30931,30952,30956,31006,31013],{"type":44,"tag":28301,"props":30915,"children":30917},{"id":30916},"google-ads",[30918],{"type":50,"value":27958},{"type":44,"tag":53,"props":30920,"children":30921},{},[30922],{"type":50,"value":30923},"Google Ads covers your search and display ad spend and performance.",{"type":44,"tag":53,"props":30925,"children":30926},{},[30927],{"type":44,"tag":185,"props":30928,"children":30929},{},[30930],{"type":50,"value":30589},{"type":44,"tag":90,"props":30932,"children":30933},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[30934],{"type":44,"tag":81,"props":30935,"children":30936},{"__ignoreMap":7},[30937],{"type":44,"tag":100,"props":30938,"children":30939},{"class":102,"line":103},[30940,30944,30948],{"type":44,"tag":100,"props":30941,"children":30942},{"style":107},[30943],{"type":50,"value":13195},{"type":44,"tag":100,"props":30945,"children":30946},{"style":119},[30947],{"type":50,"value":26889},{"type":44,"tag":100,"props":30949,"children":30950},{"style":119},[30951],{"type":50,"value":26894},{"type":44,"tag":53,"props":30953,"children":30954},{},[30955],{"type":50,"value":26899},{"type":44,"tag":13430,"props":30957,"children":30958},{},[30959,30973,30986,30996],{"type":44,"tag":13434,"props":30960,"children":30961},{},[30962,30966,30967],{"type":44,"tag":185,"props":30963,"children":30964},{},[30965],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":30968,"children":30970},{"className":30969},[],[30971],{"type":50,"value":30972},"google_ads",{"type":44,"tag":13434,"props":30974,"children":30975},{},[30976,30980,30981],{"type":44,"tag":185,"props":30977,"children":30978},{},[30979],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":30982,"children":30984},{"className":30983},[],[30985],{"type":50,"value":30972},{"type":44,"tag":13434,"props":30987,"children":30988},{},[30989,30994],{"type":44,"tag":185,"props":30990,"children":30991},{},[30992],{"type":50,"value":30993},"Customer ID:",{"type":50,"value":30995}," your Google Ads customer ID",{"type":44,"tag":13434,"props":30997,"children":30998},{},[30999,31004],{"type":44,"tag":185,"props":31000,"children":31001},{},[31002],{"type":50,"value":31003},"Credentials:",{"type":50,"value":31005}," path to your Google OAuth credentials JSON",{"type":44,"tag":53,"props":31007,"children":31008},{},[31009],{"type":44,"tag":185,"props":31010,"children":31011},{},[31012],{"type":50,"value":29105},{"type":44,"tag":197,"props":31014,"children":31016},{":variants":31015},"[{\"id\":\"gads-campaigns\",\"label\":\"Campaigns\"},{\"id\":\"gads-insights\",\"label\":\"Ad Insights\"}]",[31017,31115],{"type":44,"tag":203,"props":31018,"children":31019},{"v-slot:gads-campaigns":7},[31020],{"type":44,"tag":90,"props":31021,"children":31023},{"className":27156,"code":31022,"language":27158,"meta":7,"style":7},"name: raw.google_campaigns\ntype: ingestr\nparameters:\n  source_connection: google_ads\n  source_table: campaigns\n  incremental_strategy: replace\n",[31024],{"type":44,"tag":81,"props":31025,"children":31026},{"__ignoreMap":7},[31027,31043,31058,31069,31085,31100],{"type":44,"tag":100,"props":31028,"children":31029},{"class":102,"line":103},[31030,31034,31038],{"type":44,"tag":100,"props":31031,"children":31032},{"style":27168},[31033],{"type":50,"value":27225},{"type":44,"tag":100,"props":31035,"children":31036},{"style":400},[31037],{"type":50,"value":27230},{"type":44,"tag":100,"props":31039,"children":31040},{"style":119},[31041],{"type":50,"value":31042},"raw.google_campaigns\n",{"type":44,"tag":100,"props":31044,"children":31045},{"class":102,"line":226},[31046,31050,31054],{"type":44,"tag":100,"props":31047,"children":31048},{"style":27168},[31049],{"type":50,"value":28369},{"type":44,"tag":100,"props":31051,"children":31052},{"style":400},[31053],{"type":50,"value":27230},{"type":44,"tag":100,"props":31055,"children":31056},{"style":119},[31057],{"type":50,"value":28378},{"type":44,"tag":100,"props":31059,"children":31060},{"class":102,"line":235},[31061,31065],{"type":44,"tag":100,"props":31062,"children":31063},{"style":27168},[31064],{"type":50,"value":28386},{"type":44,"tag":100,"props":31066,"children":31067},{"style":400},[31068],{"type":50,"value":27176},{"type":44,"tag":100,"props":31070,"children":31071},{"class":102,"line":24},[31072,31076,31080],{"type":44,"tag":100,"props":31073,"children":31074},{"style":27168},[31075],{"type":50,"value":28398},{"type":44,"tag":100,"props":31077,"children":31078},{"style":400},[31079],{"type":50,"value":27230},{"type":44,"tag":100,"props":31081,"children":31082},{"style":119},[31083],{"type":50,"value":31084},"google_ads\n",{"type":44,"tag":100,"props":31086,"children":31087},{"class":102,"line":252},[31088,31092,31096],{"type":44,"tag":100,"props":31089,"children":31090},{"style":27168},[31091],{"type":50,"value":28415},{"type":44,"tag":100,"props":31093,"children":31094},{"style":400},[31095],{"type":50,"value":27230},{"type":44,"tag":100,"props":31097,"children":31098},{"style":119},[31099],{"type":50,"value":29893},{"type":44,"tag":100,"props":31101,"children":31102},{"class":102,"line":261},[31103,31107,31111],{"type":44,"tag":100,"props":31104,"children":31105},{"style":27168},[31106],{"type":50,"value":28449},{"type":44,"tag":100,"props":31108,"children":31109},{"style":400},[31110],{"type":50,"value":27230},{"type":44,"tag":100,"props":31112,"children":31113},{"style":119},[31114],{"type":50,"value":28928},{"type":44,"tag":203,"props":31116,"children":31117},{"v-slot:gads-insights":7},[31118],{"type":44,"tag":90,"props":31119,"children":31121},{"className":27156,"code":31120,"language":27158,"meta":7,"style":7},"name: raw.google_ad_insights\ntype: ingestr\nparameters:\n  source_connection: google_ads\n  source_table: campaign_performance\n  incremental_strategy: merge\n  incremental_key: date\n  primary_key: \"date,campaign_id\"\n",[31122],{"type":44,"tag":81,"props":31123,"children":31124},{"__ignoreMap":7},[31125,31141,31156,31167,31182,31198,31213,31229],{"type":44,"tag":100,"props":31126,"children":31127},{"class":102,"line":103},[31128,31132,31136],{"type":44,"tag":100,"props":31129,"children":31130},{"style":27168},[31131],{"type":50,"value":27225},{"type":44,"tag":100,"props":31133,"children":31134},{"style":400},[31135],{"type":50,"value":27230},{"type":44,"tag":100,"props":31137,"children":31138},{"style":119},[31139],{"type":50,"value":31140},"raw.google_ad_insights\n",{"type":44,"tag":100,"props":31142,"children":31143},{"class":102,"line":226},[31144,31148,31152],{"type":44,"tag":100,"props":31145,"children":31146},{"style":27168},[31147],{"type":50,"value":28369},{"type":44,"tag":100,"props":31149,"children":31150},{"style":400},[31151],{"type":50,"value":27230},{"type":44,"tag":100,"props":31153,"children":31154},{"style":119},[31155],{"type":50,"value":28378},{"type":44,"tag":100,"props":31157,"children":31158},{"class":102,"line":235},[31159,31163],{"type":44,"tag":100,"props":31160,"children":31161},{"style":27168},[31162],{"type":50,"value":28386},{"type":44,"tag":100,"props":31164,"children":31165},{"style":400},[31166],{"type":50,"value":27176},{"type":44,"tag":100,"props":31168,"children":31169},{"class":102,"line":24},[31170,31174,31178],{"type":44,"tag":100,"props":31171,"children":31172},{"style":27168},[31173],{"type":50,"value":28398},{"type":44,"tag":100,"props":31175,"children":31176},{"style":400},[31177],{"type":50,"value":27230},{"type":44,"tag":100,"props":31179,"children":31180},{"style":119},[31181],{"type":50,"value":31084},{"type":44,"tag":100,"props":31183,"children":31184},{"class":102,"line":252},[31185,31189,31193],{"type":44,"tag":100,"props":31186,"children":31187},{"style":27168},[31188],{"type":50,"value":28415},{"type":44,"tag":100,"props":31190,"children":31191},{"style":400},[31192],{"type":50,"value":27230},{"type":44,"tag":100,"props":31194,"children":31195},{"style":119},[31196],{"type":50,"value":31197},"campaign_performance\n",{"type":44,"tag":100,"props":31199,"children":31200},{"class":102,"line":261},[31201,31205,31209],{"type":44,"tag":100,"props":31202,"children":31203},{"style":27168},[31204],{"type":50,"value":28449},{"type":44,"tag":100,"props":31206,"children":31207},{"style":400},[31208],{"type":50,"value":27230},{"type":44,"tag":100,"props":31210,"children":31211},{"style":119},[31212],{"type":50,"value":28458},{"type":44,"tag":100,"props":31214,"children":31215},{"class":102,"line":270},[31216,31220,31224],{"type":44,"tag":100,"props":31217,"children":31218},{"style":27168},[31219],{"type":50,"value":28466},{"type":44,"tag":100,"props":31221,"children":31222},{"style":400},[31223],{"type":50,"value":27230},{"type":44,"tag":100,"props":31225,"children":31226},{"style":119},[31227],{"type":50,"value":31228},"date\n",{"type":44,"tag":100,"props":31230,"children":31231},{"class":102,"line":279},[31232,31236,31240],{"type":44,"tag":100,"props":31233,"children":31234},{"style":27168},[31235],{"type":50,"value":28483},{"type":44,"tag":100,"props":31237,"children":31238},{"style":400},[31239],{"type":50,"value":27230},{"type":44,"tag":100,"props":31241,"children":31242},{"style":119},[31243],{"type":50,"value":31244},"\"date,campaign_id\"\n",{"type":44,"tag":203,"props":31246,"children":31247},{"v-slot:tiktok-ads":7},[31248,31253,31258,31265,31286,31290,31339,31346],{"type":44,"tag":28301,"props":31249,"children":31251},{"id":31250},"tiktok-ads",[31252],{"type":50,"value":27959},{"type":44,"tag":53,"props":31254,"children":31255},{},[31256],{"type":50,"value":31257},"TikTok Ads covers your TikTok video ad spend and performance.",{"type":44,"tag":53,"props":31259,"children":31260},{},[31261],{"type":44,"tag":185,"props":31262,"children":31263},{},[31264],{"type":50,"value":30589},{"type":44,"tag":90,"props":31266,"children":31267},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[31268],{"type":44,"tag":81,"props":31269,"children":31270},{"__ignoreMap":7},[31271],{"type":44,"tag":100,"props":31272,"children":31273},{"class":102,"line":103},[31274,31278,31282],{"type":44,"tag":100,"props":31275,"children":31276},{"style":107},[31277],{"type":50,"value":13195},{"type":44,"tag":100,"props":31279,"children":31280},{"style":119},[31281],{"type":50,"value":26889},{"type":44,"tag":100,"props":31283,"children":31284},{"style":119},[31285],{"type":50,"value":26894},{"type":44,"tag":53,"props":31287,"children":31288},{},[31289],{"type":50,"value":26899},{"type":44,"tag":13430,"props":31291,"children":31292},{},[31293,31307,31320,31329],{"type":44,"tag":13434,"props":31294,"children":31295},{},[31296,31300,31301],{"type":44,"tag":185,"props":31297,"children":31298},{},[31299],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":31302,"children":31304},{"className":31303},[],[31305],{"type":50,"value":31306},"tiktok_ads",{"type":44,"tag":13434,"props":31308,"children":31309},{},[31310,31314,31315],{"type":44,"tag":185,"props":31311,"children":31312},{},[31313],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":31316,"children":31318},{"className":31317},[],[31319],{"type":50,"value":31306},{"type":44,"tag":13434,"props":31321,"children":31322},{},[31323,31327],{"type":44,"tag":185,"props":31324,"children":31325},{},[31326],{"type":50,"value":30652},{"type":50,"value":31328}," your TikTok Marketing API access token",{"type":44,"tag":13434,"props":31330,"children":31331},{},[31332,31337],{"type":44,"tag":185,"props":31333,"children":31334},{},[31335],{"type":50,"value":31336},"Advertiser ID:",{"type":50,"value":31338}," your TikTok advertiser ID",{"type":44,"tag":53,"props":31340,"children":31341},{},[31342],{"type":44,"tag":185,"props":31343,"children":31344},{},[31345],{"type":50,"value":29105},{"type":44,"tag":197,"props":31347,"children":31349},{":variants":31348},"[{\"id\":\"tt-campaigns\",\"label\":\"Campaigns\"},{\"id\":\"tt-insights\",\"label\":\"Ad Insights\"}]",[31350,31448],{"type":44,"tag":203,"props":31351,"children":31352},{"v-slot:tt-campaigns":7},[31353],{"type":44,"tag":90,"props":31354,"children":31356},{"className":27156,"code":31355,"language":27158,"meta":7,"style":7},"name: raw.tiktok_campaigns\ntype: ingestr\nparameters:\n  source_connection: tiktok_ads\n  source_table: campaigns\n  incremental_strategy: replace\n",[31357],{"type":44,"tag":81,"props":31358,"children":31359},{"__ignoreMap":7},[31360,31376,31391,31402,31418,31433],{"type":44,"tag":100,"props":31361,"children":31362},{"class":102,"line":103},[31363,31367,31371],{"type":44,"tag":100,"props":31364,"children":31365},{"style":27168},[31366],{"type":50,"value":27225},{"type":44,"tag":100,"props":31368,"children":31369},{"style":400},[31370],{"type":50,"value":27230},{"type":44,"tag":100,"props":31372,"children":31373},{"style":119},[31374],{"type":50,"value":31375},"raw.tiktok_campaigns\n",{"type":44,"tag":100,"props":31377,"children":31378},{"class":102,"line":226},[31379,31383,31387],{"type":44,"tag":100,"props":31380,"children":31381},{"style":27168},[31382],{"type":50,"value":28369},{"type":44,"tag":100,"props":31384,"children":31385},{"style":400},[31386],{"type":50,"value":27230},{"type":44,"tag":100,"props":31388,"children":31389},{"style":119},[31390],{"type":50,"value":28378},{"type":44,"tag":100,"props":31392,"children":31393},{"class":102,"line":235},[31394,31398],{"type":44,"tag":100,"props":31395,"children":31396},{"style":27168},[31397],{"type":50,"value":28386},{"type":44,"tag":100,"props":31399,"children":31400},{"style":400},[31401],{"type":50,"value":27176},{"type":44,"tag":100,"props":31403,"children":31404},{"class":102,"line":24},[31405,31409,31413],{"type":44,"tag":100,"props":31406,"children":31407},{"style":27168},[31408],{"type":50,"value":28398},{"type":44,"tag":100,"props":31410,"children":31411},{"style":400},[31412],{"type":50,"value":27230},{"type":44,"tag":100,"props":31414,"children":31415},{"style":119},[31416],{"type":50,"value":31417},"tiktok_ads\n",{"type":44,"tag":100,"props":31419,"children":31420},{"class":102,"line":252},[31421,31425,31429],{"type":44,"tag":100,"props":31422,"children":31423},{"style":27168},[31424],{"type":50,"value":28415},{"type":44,"tag":100,"props":31426,"children":31427},{"style":400},[31428],{"type":50,"value":27230},{"type":44,"tag":100,"props":31430,"children":31431},{"style":119},[31432],{"type":50,"value":29893},{"type":44,"tag":100,"props":31434,"children":31435},{"class":102,"line":261},[31436,31440,31444],{"type":44,"tag":100,"props":31437,"children":31438},{"style":27168},[31439],{"type":50,"value":28449},{"type":44,"tag":100,"props":31441,"children":31442},{"style":400},[31443],{"type":50,"value":27230},{"type":44,"tag":100,"props":31445,"children":31446},{"style":119},[31447],{"type":50,"value":28928},{"type":44,"tag":203,"props":31449,"children":31450},{"v-slot:tt-insights":7},[31451],{"type":44,"tag":90,"props":31452,"children":31454},{"className":27156,"code":31453,"language":27158,"meta":7,"style":7},"name: raw.tiktok_ad_insights\ntype: ingestr\nparameters:\n  source_connection: tiktok_ads\n  source_table: ads\n  incremental_strategy: merge\n  incremental_key: stat_datetime\n  primary_key: \"stat_datetime,campaign_id\"\n",[31455],{"type":44,"tag":81,"props":31456,"children":31457},{"__ignoreMap":7},[31458,31474,31489,31500,31515,31531,31546,31562],{"type":44,"tag":100,"props":31459,"children":31460},{"class":102,"line":103},[31461,31465,31469],{"type":44,"tag":100,"props":31462,"children":31463},{"style":27168},[31464],{"type":50,"value":27225},{"type":44,"tag":100,"props":31466,"children":31467},{"style":400},[31468],{"type":50,"value":27230},{"type":44,"tag":100,"props":31470,"children":31471},{"style":119},[31472],{"type":50,"value":31473},"raw.tiktok_ad_insights\n",{"type":44,"tag":100,"props":31475,"children":31476},{"class":102,"line":226},[31477,31481,31485],{"type":44,"tag":100,"props":31478,"children":31479},{"style":27168},[31480],{"type":50,"value":28369},{"type":44,"tag":100,"props":31482,"children":31483},{"style":400},[31484],{"type":50,"value":27230},{"type":44,"tag":100,"props":31486,"children":31487},{"style":119},[31488],{"type":50,"value":28378},{"type":44,"tag":100,"props":31490,"children":31491},{"class":102,"line":235},[31492,31496],{"type":44,"tag":100,"props":31493,"children":31494},{"style":27168},[31495],{"type":50,"value":28386},{"type":44,"tag":100,"props":31497,"children":31498},{"style":400},[31499],{"type":50,"value":27176},{"type":44,"tag":100,"props":31501,"children":31502},{"class":102,"line":24},[31503,31507,31511],{"type":44,"tag":100,"props":31504,"children":31505},{"style":27168},[31506],{"type":50,"value":28398},{"type":44,"tag":100,"props":31508,"children":31509},{"style":400},[31510],{"type":50,"value":27230},{"type":44,"tag":100,"props":31512,"children":31513},{"style":119},[31514],{"type":50,"value":31417},{"type":44,"tag":100,"props":31516,"children":31517},{"class":102,"line":252},[31518,31522,31526],{"type":44,"tag":100,"props":31519,"children":31520},{"style":27168},[31521],{"type":50,"value":28415},{"type":44,"tag":100,"props":31523,"children":31524},{"style":400},[31525],{"type":50,"value":27230},{"type":44,"tag":100,"props":31527,"children":31528},{"style":119},[31529],{"type":50,"value":31530},"ads\n",{"type":44,"tag":100,"props":31532,"children":31533},{"class":102,"line":261},[31534,31538,31542],{"type":44,"tag":100,"props":31535,"children":31536},{"style":27168},[31537],{"type":50,"value":28449},{"type":44,"tag":100,"props":31539,"children":31540},{"style":400},[31541],{"type":50,"value":27230},{"type":44,"tag":100,"props":31543,"children":31544},{"style":119},[31545],{"type":50,"value":28458},{"type":44,"tag":100,"props":31547,"children":31548},{"class":102,"line":270},[31549,31553,31557],{"type":44,"tag":100,"props":31550,"children":31551},{"style":27168},[31552],{"type":50,"value":28466},{"type":44,"tag":100,"props":31554,"children":31555},{"style":400},[31556],{"type":50,"value":27230},{"type":44,"tag":100,"props":31558,"children":31559},{"style":119},[31560],{"type":50,"value":31561},"stat_datetime\n",{"type":44,"tag":100,"props":31563,"children":31564},{"class":102,"line":279},[31565,31569,31573],{"type":44,"tag":100,"props":31566,"children":31567},{"style":27168},[31568],{"type":50,"value":28483},{"type":44,"tag":100,"props":31570,"children":31571},{"style":400},[31572],{"type":50,"value":27230},{"type":44,"tag":100,"props":31574,"children":31575},{"style":119},[31576],{"type":50,"value":31577},"\"stat_datetime,campaign_id\"\n",{"type":44,"tag":28202,"props":31579,"children":31580},{},[],{"type":44,"tag":124,"props":31582,"children":31584},{"id":31583},"web-analytics",[31585],{"type":50,"value":31586},"Web Analytics",{"type":44,"tag":197,"props":31588,"children":31591},{":variants":31589,"group":31590},"[{\"id\":\"ga4\",\"label\":\"GA4\"},{\"id\":\"mixpanel\",\"label\":\"Mixpanel\"}]","analytics",[31592,31963],{"type":44,"tag":203,"props":31593,"children":31594},{"v-slot:ga4":7},[31595,31600,31605,31612,31633,31637,31694,31701],{"type":44,"tag":28301,"props":31596,"children":31598},{"id":31597},"ga4",[31599],{"type":50,"value":27963},{"type":44,"tag":53,"props":31601,"children":31602},{},[31603],{"type":50,"value":31604},"GA4 gives you the website funnel: who's visiting, where they come from, and what they do.",{"type":44,"tag":53,"props":31606,"children":31607},{},[31608],{"type":44,"tag":185,"props":31609,"children":31610},{},[31611],{"type":50,"value":30589},{"type":44,"tag":90,"props":31613,"children":31614},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[31615],{"type":44,"tag":81,"props":31616,"children":31617},{"__ignoreMap":7},[31618],{"type":44,"tag":100,"props":31619,"children":31620},{"class":102,"line":103},[31621,31625,31629],{"type":44,"tag":100,"props":31622,"children":31623},{"style":107},[31624],{"type":50,"value":13195},{"type":44,"tag":100,"props":31626,"children":31627},{"style":119},[31628],{"type":50,"value":26889},{"type":44,"tag":100,"props":31630,"children":31631},{"style":119},[31632],{"type":50,"value":26894},{"type":44,"tag":53,"props":31634,"children":31635},{},[31636],{"type":50,"value":26899},{"type":44,"tag":13430,"props":31638,"children":31639},{},[31640,31654,31667,31684],{"type":44,"tag":13434,"props":31641,"children":31642},{},[31643,31647,31648],{"type":44,"tag":185,"props":31644,"children":31645},{},[31646],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":31649,"children":31651},{"className":31650},[],[31652],{"type":50,"value":31653},"google_analytics",{"type":44,"tag":13434,"props":31655,"children":31656},{},[31657,31661,31662],{"type":44,"tag":185,"props":31658,"children":31659},{},[31660],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":31663,"children":31665},{"className":31664},[],[31666],{"type":50,"value":31653},{"type":44,"tag":13434,"props":31668,"children":31669},{},[31670,31675,31677],{"type":44,"tag":185,"props":31671,"children":31672},{},[31673],{"type":50,"value":31674},"Credentials path:",{"type":50,"value":31676}," path to your ",{"type":44,"tag":13232,"props":31678,"children":31681},{"href":31679,"rel":31680},"https:\u002F\u002Fcloud.google.com\u002Fiam\u002Fdocs\u002Fkeys-create-delete",[26516],[31682],{"type":50,"value":31683},"Google service account JSON",{"type":44,"tag":13434,"props":31685,"children":31686},{},[31687,31692],{"type":44,"tag":185,"props":31688,"children":31689},{},[31690],{"type":50,"value":31691},"Property ID:",{"type":50,"value":31693}," your GA4 property ID (found in GA4 Admin > Property Settings)",{"type":44,"tag":53,"props":31695,"children":31696},{},[31697],{"type":44,"tag":185,"props":31698,"children":31699},{},[31700],{"type":50,"value":29105},{"type":44,"tag":197,"props":31702,"children":31704},{":variants":31703},"[{\"id\":\"ga4-events\",\"label\":\"Events\"},{\"id\":\"ga4-sessions\",\"label\":\"Sessions\"}]",[31705,31835],{"type":44,"tag":203,"props":31706,"children":31707},{"v-slot:ga4-events":7},[31708],{"type":44,"tag":90,"props":31709,"children":31711},{"className":27156,"code":31710,"language":27158,"meta":7,"style":7},"name: raw.ga4_events\ntype: ingestr\nparameters:\n  source_connection: google_analytics\n  source_table: events\n  incremental_strategy: merge\n  incremental_key: date\n  primary_key: \"date,event_name\"\n",[31712],{"type":44,"tag":81,"props":31713,"children":31714},{"__ignoreMap":7},[31715,31731,31746,31757,31773,31789,31804,31819],{"type":44,"tag":100,"props":31716,"children":31717},{"class":102,"line":103},[31718,31722,31726],{"type":44,"tag":100,"props":31719,"children":31720},{"style":27168},[31721],{"type":50,"value":27225},{"type":44,"tag":100,"props":31723,"children":31724},{"style":400},[31725],{"type":50,"value":27230},{"type":44,"tag":100,"props":31727,"children":31728},{"style":119},[31729],{"type":50,"value":31730},"raw.ga4_events\n",{"type":44,"tag":100,"props":31732,"children":31733},{"class":102,"line":226},[31734,31738,31742],{"type":44,"tag":100,"props":31735,"children":31736},{"style":27168},[31737],{"type":50,"value":28369},{"type":44,"tag":100,"props":31739,"children":31740},{"style":400},[31741],{"type":50,"value":27230},{"type":44,"tag":100,"props":31743,"children":31744},{"style":119},[31745],{"type":50,"value":28378},{"type":44,"tag":100,"props":31747,"children":31748},{"class":102,"line":235},[31749,31753],{"type":44,"tag":100,"props":31750,"children":31751},{"style":27168},[31752],{"type":50,"value":28386},{"type":44,"tag":100,"props":31754,"children":31755},{"style":400},[31756],{"type":50,"value":27176},{"type":44,"tag":100,"props":31758,"children":31759},{"class":102,"line":24},[31760,31764,31768],{"type":44,"tag":100,"props":31761,"children":31762},{"style":27168},[31763],{"type":50,"value":28398},{"type":44,"tag":100,"props":31765,"children":31766},{"style":400},[31767],{"type":50,"value":27230},{"type":44,"tag":100,"props":31769,"children":31770},{"style":119},[31771],{"type":50,"value":31772},"google_analytics\n",{"type":44,"tag":100,"props":31774,"children":31775},{"class":102,"line":252},[31776,31780,31784],{"type":44,"tag":100,"props":31777,"children":31778},{"style":27168},[31779],{"type":50,"value":28415},{"type":44,"tag":100,"props":31781,"children":31782},{"style":400},[31783],{"type":50,"value":27230},{"type":44,"tag":100,"props":31785,"children":31786},{"style":119},[31787],{"type":50,"value":31788},"events\n",{"type":44,"tag":100,"props":31790,"children":31791},{"class":102,"line":261},[31792,31796,31800],{"type":44,"tag":100,"props":31793,"children":31794},{"style":27168},[31795],{"type":50,"value":28449},{"type":44,"tag":100,"props":31797,"children":31798},{"style":400},[31799],{"type":50,"value":27230},{"type":44,"tag":100,"props":31801,"children":31802},{"style":119},[31803],{"type":50,"value":28458},{"type":44,"tag":100,"props":31805,"children":31806},{"class":102,"line":270},[31807,31811,31815],{"type":44,"tag":100,"props":31808,"children":31809},{"style":27168},[31810],{"type":50,"value":28466},{"type":44,"tag":100,"props":31812,"children":31813},{"style":400},[31814],{"type":50,"value":27230},{"type":44,"tag":100,"props":31816,"children":31817},{"style":119},[31818],{"type":50,"value":31228},{"type":44,"tag":100,"props":31820,"children":31821},{"class":102,"line":279},[31822,31826,31830],{"type":44,"tag":100,"props":31823,"children":31824},{"style":27168},[31825],{"type":50,"value":28483},{"type":44,"tag":100,"props":31827,"children":31828},{"style":400},[31829],{"type":50,"value":27230},{"type":44,"tag":100,"props":31831,"children":31832},{"style":119},[31833],{"type":50,"value":31834},"\"date,event_name\"\n",{"type":44,"tag":203,"props":31836,"children":31837},{"v-slot:ga4-sessions":7},[31838],{"type":44,"tag":90,"props":31839,"children":31841},{"className":27156,"code":31840,"language":27158,"meta":7,"style":7},"name: raw.ga4_sessions\ntype: ingestr\nparameters:\n  source_connection: google_analytics\n  source_table: sessions\n  incremental_strategy: merge\n  incremental_key: date\n  primary_key: date\n",[31842],{"type":44,"tag":81,"props":31843,"children":31844},{"__ignoreMap":7},[31845,31861,31876,31887,31902,31918,31933,31948],{"type":44,"tag":100,"props":31846,"children":31847},{"class":102,"line":103},[31848,31852,31856],{"type":44,"tag":100,"props":31849,"children":31850},{"style":27168},[31851],{"type":50,"value":27225},{"type":44,"tag":100,"props":31853,"children":31854},{"style":400},[31855],{"type":50,"value":27230},{"type":44,"tag":100,"props":31857,"children":31858},{"style":119},[31859],{"type":50,"value":31860},"raw.ga4_sessions\n",{"type":44,"tag":100,"props":31862,"children":31863},{"class":102,"line":226},[31864,31868,31872],{"type":44,"tag":100,"props":31865,"children":31866},{"style":27168},[31867],{"type":50,"value":28369},{"type":44,"tag":100,"props":31869,"children":31870},{"style":400},[31871],{"type":50,"value":27230},{"type":44,"tag":100,"props":31873,"children":31874},{"style":119},[31875],{"type":50,"value":28378},{"type":44,"tag":100,"props":31877,"children":31878},{"class":102,"line":235},[31879,31883],{"type":44,"tag":100,"props":31880,"children":31881},{"style":27168},[31882],{"type":50,"value":28386},{"type":44,"tag":100,"props":31884,"children":31885},{"style":400},[31886],{"type":50,"value":27176},{"type":44,"tag":100,"props":31888,"children":31889},{"class":102,"line":24},[31890,31894,31898],{"type":44,"tag":100,"props":31891,"children":31892},{"style":27168},[31893],{"type":50,"value":28398},{"type":44,"tag":100,"props":31895,"children":31896},{"style":400},[31897],{"type":50,"value":27230},{"type":44,"tag":100,"props":31899,"children":31900},{"style":119},[31901],{"type":50,"value":31772},{"type":44,"tag":100,"props":31903,"children":31904},{"class":102,"line":252},[31905,31909,31913],{"type":44,"tag":100,"props":31906,"children":31907},{"style":27168},[31908],{"type":50,"value":28415},{"type":44,"tag":100,"props":31910,"children":31911},{"style":400},[31912],{"type":50,"value":27230},{"type":44,"tag":100,"props":31914,"children":31915},{"style":119},[31916],{"type":50,"value":31917},"sessions\n",{"type":44,"tag":100,"props":31919,"children":31920},{"class":102,"line":261},[31921,31925,31929],{"type":44,"tag":100,"props":31922,"children":31923},{"style":27168},[31924],{"type":50,"value":28449},{"type":44,"tag":100,"props":31926,"children":31927},{"style":400},[31928],{"type":50,"value":27230},{"type":44,"tag":100,"props":31930,"children":31931},{"style":119},[31932],{"type":50,"value":28458},{"type":44,"tag":100,"props":31934,"children":31935},{"class":102,"line":270},[31936,31940,31944],{"type":44,"tag":100,"props":31937,"children":31938},{"style":27168},[31939],{"type":50,"value":28466},{"type":44,"tag":100,"props":31941,"children":31942},{"style":400},[31943],{"type":50,"value":27230},{"type":44,"tag":100,"props":31945,"children":31946},{"style":119},[31947],{"type":50,"value":31228},{"type":44,"tag":100,"props":31949,"children":31950},{"class":102,"line":279},[31951,31955,31959],{"type":44,"tag":100,"props":31952,"children":31953},{"style":27168},[31954],{"type":50,"value":28483},{"type":44,"tag":100,"props":31956,"children":31957},{"style":400},[31958],{"type":50,"value":27230},{"type":44,"tag":100,"props":31960,"children":31961},{"style":119},[31962],{"type":50,"value":31228},{"type":44,"tag":203,"props":31964,"children":31965},{"v-slot:mixpanel":7},[31966,31971,31976,31983,32004,32008,32047,32054],{"type":44,"tag":28301,"props":31967,"children":31969},{"id":31968},"mixpanel",[31970],{"type":50,"value":27961},{"type":44,"tag":53,"props":31972,"children":31973},{},[31974],{"type":50,"value":31975},"Mixpanel gives you product analytics: user events, funnels, and engagement data.",{"type":44,"tag":53,"props":31977,"children":31978},{},[31979],{"type":44,"tag":185,"props":31980,"children":31981},{},[31982],{"type":50,"value":30589},{"type":44,"tag":90,"props":31984,"children":31985},{"className":92,"code":26873,"language":94,"meta":7,"style":7},[31986],{"type":44,"tag":81,"props":31987,"children":31988},{"__ignoreMap":7},[31989],{"type":44,"tag":100,"props":31990,"children":31991},{"class":102,"line":103},[31992,31996,32000],{"type":44,"tag":100,"props":31993,"children":31994},{"style":107},[31995],{"type":50,"value":13195},{"type":44,"tag":100,"props":31997,"children":31998},{"style":119},[31999],{"type":50,"value":26889},{"type":44,"tag":100,"props":32001,"children":32002},{"style":119},[32003],{"type":50,"value":26894},{"type":44,"tag":53,"props":32005,"children":32006},{},[32007],{"type":50,"value":26899},{"type":44,"tag":13430,"props":32009,"children":32010},{},[32011,32024,32037],{"type":44,"tag":13434,"props":32012,"children":32013},{},[32014,32018,32019],{"type":44,"tag":185,"props":32015,"children":32016},{},[32017],{"type":50,"value":26910},{"type":50,"value":26912},{"type":44,"tag":81,"props":32020,"children":32022},{"className":32021},[],[32023],{"type":50,"value":31968},{"type":44,"tag":13434,"props":32025,"children":32026},{},[32027,32031,32032],{"type":44,"tag":185,"props":32028,"children":32029},{},[32030],{"type":50,"value":26925},{"type":50,"value":26912},{"type":44,"tag":81,"props":32033,"children":32035},{"className":32034},[],[32036],{"type":50,"value":31968},{"type":44,"tag":13434,"props":32038,"children":32039},{},[32040,32045],{"type":44,"tag":185,"props":32041,"children":32042},{},[32043],{"type":50,"value":32044},"API secret:",{"type":50,"value":32046}," your Mixpanel API secret (found in Project Settings)",{"type":44,"tag":53,"props":32048,"children":32049},{},[32050],{"type":44,"tag":185,"props":32051,"children":32052},{},[32053],{"type":50,"value":29105},{"type":44,"tag":197,"props":32055,"children":32057},{":variants":32056},"[{\"id\":\"mp-events\",\"label\":\"Events\"},{\"id\":\"mp-funnels\",\"label\":\"Funnels\"}]",[32058,32188],{"type":44,"tag":203,"props":32059,"children":32060},{"v-slot:mp-events":7},[32061],{"type":44,"tag":90,"props":32062,"children":32064},{"className":27156,"code":32063,"language":27158,"meta":7,"style":7},"name: raw.mixpanel_events\ntype: ingestr\nparameters:\n  source_connection: mixpanel\n  source_table: events\n  incremental_strategy: merge\n  incremental_key: time\n  primary_key: \"distinct_id,time\"\n",[32065],{"type":44,"tag":81,"props":32066,"children":32067},{"__ignoreMap":7},[32068,32084,32099,32110,32126,32141,32156,32172],{"type":44,"tag":100,"props":32069,"children":32070},{"class":102,"line":103},[32071,32075,32079],{"type":44,"tag":100,"props":32072,"children":32073},{"style":27168},[32074],{"type":50,"value":27225},{"type":44,"tag":100,"props":32076,"children":32077},{"style":400},[32078],{"type":50,"value":27230},{"type":44,"tag":100,"props":32080,"children":32081},{"style":119},[32082],{"type":50,"value":32083},"raw.mixpanel_events\n",{"type":44,"tag":100,"props":32085,"children":32086},{"class":102,"line":226},[32087,32091,32095],{"type":44,"tag":100,"props":32088,"children":32089},{"style":27168},[32090],{"type":50,"value":28369},{"type":44,"tag":100,"props":32092,"children":32093},{"style":400},[32094],{"type":50,"value":27230},{"type":44,"tag":100,"props":32096,"children":32097},{"style":119},[32098],{"type":50,"value":28378},{"type":44,"tag":100,"props":32100,"children":32101},{"class":102,"line":235},[32102,32106],{"type":44,"tag":100,"props":32103,"children":32104},{"style":27168},[32105],{"type":50,"value":28386},{"type":44,"tag":100,"props":32107,"children":32108},{"style":400},[32109],{"type":50,"value":27176},{"type":44,"tag":100,"props":32111,"children":32112},{"class":102,"line":24},[32113,32117,32121],{"type":44,"tag":100,"props":32114,"children":32115},{"style":27168},[32116],{"type":50,"value":28398},{"type":44,"tag":100,"props":32118,"children":32119},{"style":400},[32120],{"type":50,"value":27230},{"type":44,"tag":100,"props":32122,"children":32123},{"style":119},[32124],{"type":50,"value":32125},"mixpanel\n",{"type":44,"tag":100,"props":32127,"children":32128},{"class":102,"line":252},[32129,32133,32137],{"type":44,"tag":100,"props":32130,"children":32131},{"style":27168},[32132],{"type":50,"value":28415},{"type":44,"tag":100,"props":32134,"children":32135},{"style":400},[32136],{"type":50,"value":27230},{"type":44,"tag":100,"props":32138,"children":32139},{"style":119},[32140],{"type":50,"value":31788},{"type":44,"tag":100,"props":32142,"children":32143},{"class":102,"line":261},[32144,32148,32152],{"type":44,"tag":100,"props":32145,"children":32146},{"style":27168},[32147],{"type":50,"value":28449},{"type":44,"tag":100,"props":32149,"children":32150},{"style":400},[32151],{"type":50,"value":27230},{"type":44,"tag":100,"props":32153,"children":32154},{"style":119},[32155],{"type":50,"value":28458},{"type":44,"tag":100,"props":32157,"children":32158},{"class":102,"line":270},[32159,32163,32167],{"type":44,"tag":100,"props":32160,"children":32161},{"style":27168},[32162],{"type":50,"value":28466},{"type":44,"tag":100,"props":32164,"children":32165},{"style":400},[32166],{"type":50,"value":27230},{"type":44,"tag":100,"props":32168,"children":32169},{"style":119},[32170],{"type":50,"value":32171},"time\n",{"type":44,"tag":100,"props":32173,"children":32174},{"class":102,"line":279},[32175,32179,32183],{"type":44,"tag":100,"props":32176,"children":32177},{"style":27168},[32178],{"type":50,"value":28483},{"type":44,"tag":100,"props":32180,"children":32181},{"style":400},[32182],{"type":50,"value":27230},{"type":44,"tag":100,"props":32184,"children":32185},{"style":119},[32186],{"type":50,"value":32187},"\"distinct_id,time\"\n",{"type":44,"tag":203,"props":32189,"children":32190},{"v-slot:mp-funnels":7},[32191],{"type":44,"tag":90,"props":32192,"children":32194},{"className":27156,"code":32193,"language":27158,"meta":7,"style":7},"name: raw.mixpanel_funnels\ntype: ingestr\nparameters:\n  source_connection: mixpanel\n  source_table: funnels\n  incremental_strategy: replace\n",[32195],{"type":44,"tag":81,"props":32196,"children":32197},{"__ignoreMap":7},[32198,32214,32229,32240,32255,32271],{"type":44,"tag":100,"props":32199,"children":32200},{"class":102,"line":103},[32201,32205,32209],{"type":44,"tag":100,"props":32202,"children":32203},{"style":27168},[32204],{"type":50,"value":27225},{"type":44,"tag":100,"props":32206,"children":32207},{"style":400},[32208],{"type":50,"value":27230},{"type":44,"tag":100,"props":32210,"children":32211},{"style":119},[32212],{"type":50,"value":32213},"raw.mixpanel_funnels\n",{"type":44,"tag":100,"props":32215,"children":32216},{"class":102,"line":226},[32217,32221,32225],{"type":44,"tag":100,"props":32218,"children":32219},{"style":27168},[32220],{"type":50,"value":28369},{"type":44,"tag":100,"props":32222,"children":32223},{"style":400},[32224],{"type":50,"value":27230},{"type":44,"tag":100,"props":32226,"children":32227},{"style":119},[32228],{"type":50,"value":28378},{"type":44,"tag":100,"props":32230,"children":32231},{"class":102,"line":235},[32232,32236],{"type":44,"tag":100,"props":32233,"children":32234},{"style":27168},[32235],{"type":50,"value":28386},{"type":44,"tag":100,"props":32237,"children":32238},{"style":400},[32239],{"type":50,"value":27176},{"type":44,"tag":100,"props":32241,"children":32242},{"class":102,"line":24},[32243,32247,32251],{"type":44,"tag":100,"props":32244,"children":32245},{"style":27168},[32246],{"type":50,"value":28398},{"type":44,"tag":100,"props":32248,"children":32249},{"style":400},[32250],{"type":50,"value":27230},{"type":44,"tag":100,"props":32252,"children":32253},{"style":119},[32254],{"type":50,"value":32125},{"type":44,"tag":100,"props":32256,"children":32257},{"class":102,"line":252},[32258,32262,32266],{"type":44,"tag":100,"props":32259,"children":32260},{"style":27168},[32261],{"type":50,"value":28415},{"type":44,"tag":100,"props":32263,"children":32264},{"style":400},[32265],{"type":50,"value":27230},{"type":44,"tag":100,"props":32267,"children":32268},{"style":119},[32269],{"type":50,"value":32270},"funnels\n",{"type":44,"tag":100,"props":32272,"children":32273},{"class":102,"line":261},[32274,32278,32282],{"type":44,"tag":100,"props":32275,"children":32276},{"style":27168},[32277],{"type":50,"value":28449},{"type":44,"tag":100,"props":32279,"children":32280},{"style":400},[32281],{"type":50,"value":27230},{"type":44,"tag":100,"props":32283,"children":32284},{"style":119},[32285],{"type":50,"value":28928},{"type":44,"tag":28202,"props":32287,"children":32288},{},[],{"type":44,"tag":124,"props":32290,"children":32292},{"id":32291},"validate-and-run",[32293],{"type":50,"value":32294},"Validate and run",{"type":44,"tag":53,"props":32296,"children":32297},{},[32298],{"type":50,"value":32299},"Validate that all your asset definitions are correct:",{"type":44,"tag":90,"props":32301,"children":32302},{"className":92,"code":13354,"language":94,"meta":7,"style":7},[32303],{"type":44,"tag":81,"props":32304,"children":32305},{"__ignoreMap":7},[32306],{"type":44,"tag":100,"props":32307,"children":32308},{"class":102,"line":103},[32309,32313,32317],{"type":44,"tag":100,"props":32310,"children":32311},{"style":107},[32312],{"type":50,"value":13195},{"type":44,"tag":100,"props":32314,"children":32315},{"style":119},[32316],{"type":50,"value":13370},{"type":44,"tag":100,"props":32318,"children":32319},{"style":119},[32320],{"type":50,"value":13225},{"type":44,"tag":53,"props":32322,"children":32323},{},[32324],{"type":50,"value":32325},"Or ask Claude Code:",{"type":44,"tag":136,"props":32327,"children":32328},{},[32329],{"type":44,"tag":53,"props":32330,"children":32331},{},[32332],{"type":50,"value":32333},"Run bruin validate and fix any issues you find in the asset files.",{"type":44,"tag":53,"props":32335,"children":32336},{},[32337],{"type":50,"value":32338},"Fix any errors - the most common issue is a typo in a connection name or a missing required field.",{"type":44,"tag":53,"props":32340,"children":32341},{},[32342],{"type":50,"value":32343},"Then run the pipeline. For your first run, start with a small date range (about a month) to verify everything works before doing a full backfill:",{"type":44,"tag":90,"props":32345,"children":32346},{"className":92,"code":13183,"language":94,"meta":7,"style":7},[32347],{"type":44,"tag":81,"props":32348,"children":32349},{"__ignoreMap":7},[32350],{"type":44,"tag":100,"props":32351,"children":32352},{"class":102,"line":103},[32353,32357,32361,32365,32369,32373,32377],{"type":44,"tag":100,"props":32354,"children":32355},{"style":107},[32356],{"type":50,"value":13195},{"type":44,"tag":100,"props":32358,"children":32359},{"style":119},[32360],{"type":50,"value":13200},{"type":44,"tag":100,"props":32362,"children":32363},{"style":113},[32364],{"type":50,"value":13205},{"type":44,"tag":100,"props":32366,"children":32367},{"style":119},[32368],{"type":50,"value":13210},{"type":44,"tag":100,"props":32370,"children":32371},{"style":113},[32372],{"type":50,"value":13215},{"type":44,"tag":100,"props":32374,"children":32375},{"style":119},[32376],{"type":50,"value":13220},{"type":44,"tag":100,"props":32378,"children":32379},{"style":119},[32380],{"type":50,"value":13225},{"type":44,"tag":53,"props":32382,"children":32383},{},[32384,32386,32392,32394,32400,32402,32407,32408,32412],{"type":50,"value":32385},"This tells Bruin to only pull data within that interval. The ",{"type":44,"tag":81,"props":32387,"children":32389},{"className":32388},[],[32390],{"type":50,"value":32391},"--start-date",{"type":50,"value":32393}," and ",{"type":44,"tag":81,"props":32395,"children":32397},{"className":32396},[],[32398],{"type":50,"value":32399},"--end-date",{"type":50,"value":32401}," flags control the date range passed to each ",{"type":44,"tag":13232,"props":32403,"children":32404},{"href":13234},[32405],{"type":50,"value":32406},"ingestor asset",{"type":50,"value":28140},{"type":44,"tag":13232,"props":32409,"children":32410},{"href":26596},[32411],{"type":50,"value":26599},{"type":50,"value":32413}," for all available flags.",{"type":44,"tag":53,"props":32415,"children":32416},{},[32417,32419,32425,32426,32432],{"type":50,"value":32418},"If you have multiple environments (e.g. ",{"type":44,"tag":81,"props":32420,"children":32422},{"className":32421},[],[32423],{"type":50,"value":32424},"dev",{"type":50,"value":32393},{"type":44,"tag":81,"props":32427,"children":32429},{"className":32428},[],[32430],{"type":50,"value":32431},"prod",{"type":50,"value":32433},"), you can specify which one to use:",{"type":44,"tag":90,"props":32435,"children":32437},{"className":92,"code":32436,"language":94,"meta":7,"style":7},"bruin run --start-date 2025-01-01 --end-date 2025-02-01 -e default .\n",[32438],{"type":44,"tag":81,"props":32439,"children":32440},{"__ignoreMap":7},[32441],{"type":44,"tag":100,"props":32442,"children":32443},{"class":102,"line":103},[32444,32448,32452,32456,32460,32464,32468,32473,32478],{"type":44,"tag":100,"props":32445,"children":32446},{"style":107},[32447],{"type":50,"value":13195},{"type":44,"tag":100,"props":32449,"children":32450},{"style":119},[32451],{"type":50,"value":13200},{"type":44,"tag":100,"props":32453,"children":32454},{"style":113},[32455],{"type":50,"value":13205},{"type":44,"tag":100,"props":32457,"children":32458},{"style":119},[32459],{"type":50,"value":13210},{"type":44,"tag":100,"props":32461,"children":32462},{"style":113},[32463],{"type":50,"value":13215},{"type":44,"tag":100,"props":32465,"children":32466},{"style":119},[32467],{"type":50,"value":13220},{"type":44,"tag":100,"props":32469,"children":32470},{"style":113},[32471],{"type":50,"value":32472}," -e",{"type":44,"tag":100,"props":32474,"children":32475},{"style":119},[32476],{"type":50,"value":32477}," default",{"type":44,"tag":100,"props":32479,"children":32480},{"style":119},[32481],{"type":50,"value":13225},{"type":44,"tag":53,"props":32483,"children":32484},{},[32485],{"type":50,"value":32486},"Once you've confirmed the data looks right, do a full backfill with a wider range:",{"type":44,"tag":90,"props":32488,"children":32490},{"className":92,"code":32489,"language":94,"meta":7,"style":7},"bruin run --start-date 2024-01-01 --end-date 2026-04-01 .\n",[32491],{"type":44,"tag":81,"props":32492,"children":32493},{"__ignoreMap":7},[32494],{"type":44,"tag":100,"props":32495,"children":32496},{"class":102,"line":103},[32497,32501,32505,32509,32513,32517,32522],{"type":44,"tag":100,"props":32498,"children":32499},{"style":107},[32500],{"type":50,"value":13195},{"type":44,"tag":100,"props":32502,"children":32503},{"style":119},[32504],{"type":50,"value":13200},{"type":44,"tag":100,"props":32506,"children":32507},{"style":113},[32508],{"type":50,"value":13205},{"type":44,"tag":100,"props":32510,"children":32511},{"style":119},[32512],{"type":50,"value":13277},{"type":44,"tag":100,"props":32514,"children":32515},{"style":113},[32516],{"type":50,"value":13215},{"type":44,"tag":100,"props":32518,"children":32519},{"style":119},[32520],{"type":50,"value":32521}," 2026-04-01",{"type":44,"tag":100,"props":32523,"children":32524},{"style":119},[32525],{"type":50,"value":13225},{"type":44,"tag":124,"props":32527,"children":32529},{"id":32528},"verify-data-landed",[32530],{"type":50,"value":32531},"Verify data landed",{"type":44,"tag":53,"props":32533,"children":32534},{},[32535],{"type":50,"value":32536},"Ask Claude Code to check all your tables at once:",{"type":44,"tag":136,"props":32538,"children":32539},{},[32540],{"type":44,"tag":53,"props":32541,"children":32542},{},[32543],{"type":50,"value":32544},"Query each raw table in the warehouse and give me the row count for every source we ingested.",{"type":44,"tag":53,"props":32546,"children":32547},{},[32548],{"type":50,"value":32549},"If you see row counts greater than zero, your ingestion is working. If a table is empty, ask Claude Code to troubleshoot:",{"type":44,"tag":136,"props":32551,"children":32552},{},[32553],{"type":44,"tag":53,"props":32554,"children":32555},{},[32556],{"type":50,"value":32557},"The raw.shopify_orders table is empty after running the pipeline. Check the asset definition and connection, and tell me what might be wrong.",{"type":44,"tag":45,"props":32559,"children":32560},{"id":13425},[32561],{"type":50,"value":13428},{"type":44,"tag":53,"props":32563,"children":32564},{},[32565,32567,32571],{"type":50,"value":32566},"You now have raw ecommerce data flowing from your SaaS sources into your warehouse. Each ",{"type":44,"tag":13232,"props":32568,"children":32569},{"href":13234},[32570],{"type":50,"value":32406},{"type":50,"value":32572}," uses incremental loading - on subsequent runs, it only pulls new and updated records instead of re-fetching everything.",{"type":44,"tag":53,"props":32574,"children":32575},{},[32576],{"type":50,"value":32577},"Next, you'll build a staging layer on top of this raw data to clean, join, and deduplicate across sources.",{"type":44,"tag":13479,"props":32579,"children":32580},{},[32581],{"type":50,"value":13483},{"title":7,"searchDepth":226,"depth":226,"links":32583},[32584,32585,32588,32598],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63,"children":32586},[32587],{"id":28011,"depth":235,"text":28014},{"id":71,"depth":226,"text":74,"children":32589},[32590,32591,32592,32593,32594,32595,32596,32597],{"id":28039,"depth":235,"text":28042},{"id":28207,"depth":235,"text":28210},{"id":28958,"depth":235,"text":28961},{"id":29706,"depth":235,"text":29709},{"id":30560,"depth":235,"text":30563},{"id":31583,"depth":235,"text":31586},{"id":32291,"depth":235,"text":32294},{"id":32528,"depth":235,"text":32531},{"id":13425,"depth":226,"text":13428},"content:tutorials:ecommerce-pipeline:ingest-data.md","tutorials\u002Fecommerce-pipeline\u002Fingest-data.md","tutorials\u002Fecommerce-pipeline\u002Fingest-data",{"_path":32603,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":32604,"description":32605,"date":10,"readingTime":11,"category":12,"tags":32606,"difficulty":22,"module":5,"subSteps":23,"step":235,"variants":32607,"journeys":32608,"learnMore":32609,"author":32615,"body":32616,"_type":13504,"_id":40477,"_source":13506,"_file":40478,"_stem":40479,"_extension":13509},"\u002Ftutorials\u002Fecommerce-pipeline\u002Fdata-preparation","Clean & Join Your Data","Build a staging layer that cleans, deduplicates, and joins data across Shopify, Stripe, and your marketing, ads, and analytics sources into consistent, analysis-ready tables.",[14,15,16,17,18,19,21],[17,18,19],[26,27],[32610,32611,32612],{"label":31,"url":32},{"label":34,"url":35},{"label":32613,"url":32614},"Asset dependencies","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fassets\u002Fdefinition-schema.html",{"name":37,"role":38,"image":39},{"type":41,"children":32617,"toc":40457},[32618,32622,32627,32631,32636,32641,32645,32657,32680,32686,32691,32699,32704,32709,32857,32869,32874,32961,32975,35628,35648,35660,35694,35764,35778,36447,36465,36477,36496,36526,36540,36853,36865,36870,36884,36912,36918,37937,37943,37956,38563,38593,38605,38610,38624,38630,38658,39679,39685,39718,40202,40210,40216,40237,40242,40279,40290,40329,40335,40340,40348,40353,40361,40365,40441,40453],{"type":44,"tag":45,"props":32619,"children":32620},{"id":47},[32621],{"type":50,"value":51},{"type":44,"tag":53,"props":32623,"children":32624},{},[32625],{"type":50,"value":32626},"Write SQL assets that clean and join the raw data from Step 2 into a staging layer - five consistent tables that the report layer builds on.",{"type":44,"tag":45,"props":32628,"children":32629},{"id":60},[32630],{"type":50,"value":63},{"type":44,"tag":53,"props":32632,"children":32633},{},[32634],{"type":50,"value":32635},"Raw data from five different SaaS tools has different formats, timestamps, IDs, and conventions. Shopify stores amounts in dollars, Stripe stores them in cents. Your email platform tracks opens, your ads platform tracks impressions - both are \"engagement\" but they look nothing alike.",{"type":44,"tag":53,"props":32637,"children":32638},{},[32639],{"type":50,"value":32640},"The staging layer normalizes everything into a consistent format so that reports are accurate and trustworthy.",{"type":44,"tag":45,"props":32642,"children":32643},{"id":71},[32644],{"type":50,"value":74},{"type":44,"tag":53,"props":32646,"children":32647},{},[32648,32649,32655],{"type":50,"value":79},{"type":44,"tag":81,"props":32650,"children":32652},{"className":32651},[],[32653],{"type":50,"value":32654},"staging\u002F",{"type":50,"value":32656}," subfolder to keep your staging assets organized:",{"type":44,"tag":90,"props":32658,"children":32660},{"className":92,"code":32659,"language":94,"meta":7,"style":7},"mkdir -p ecommerce\u002Fassets\u002Fstaging\n",[32661],{"type":44,"tag":81,"props":32662,"children":32663},{"__ignoreMap":7},[32664],{"type":44,"tag":100,"props":32665,"children":32666},{"class":102,"line":103},[32667,32671,32675],{"type":44,"tag":100,"props":32668,"children":32669},{"style":107},[32670],{"type":50,"value":110},{"type":44,"tag":100,"props":32672,"children":32673},{"style":113},[32674],{"type":50,"value":116},{"type":44,"tag":100,"props":32676,"children":32677},{"style":119},[32678],{"type":50,"value":32679}," ecommerce\u002Fassets\u002Fstaging\n",{"type":44,"tag":124,"props":32681,"children":32683},{"id":32682},"using-claude-code-to-write-staging-sql",[32684],{"type":50,"value":32685},"Using Claude Code to write staging SQL",{"type":44,"tag":53,"props":32687,"children":32688},{},[32689],{"type":50,"value":32690},"This is where Claude Code really helps. Instead of writing every SQL file from scratch, you can ask Claude Code to look at your raw tables and generate the staging queries for you:",{"type":44,"tag":136,"props":32692,"children":32693},{},[32694],{"type":44,"tag":53,"props":32695,"children":32696},{},[32697],{"type":50,"value":32698},"Look at the schemas for raw.shopify_orders and raw.stripe_charges in my warehouse. Write a Bruin SQL asset that joins them into a staging.stg_orders table - deduplicate, convert Stripe cents to dollars, and add not_null and unique checks on order_id. Put it in ecommerce\u002Fassets\u002Fstaging\u002Fstg_orders.sql.",{"type":44,"tag":53,"props":32700,"children":32701},{},[32702],{"type":50,"value":32703},"Claude Code will use the Bruin MCP to inspect the actual column names and types in your warehouse, then write SQL that matches your real data. You can do this for each staging table below.",{"type":44,"tag":53,"props":32705,"children":32706},{},[32707],{"type":50,"value":32708},"The SQL examples below are what the files should look like. You can create them manually, or have Claude Code generate them and just review the output.",{"type":44,"tag":5108,"props":32710,"children":32711},{"type":28931},[32712,32722],{"type":44,"tag":53,"props":32713,"children":32714},{},[32715,32720],{"type":44,"tag":185,"props":32716,"children":32717},{},[32718],{"type":50,"value":32719},"Production tips from a real Shopify pipeline:",{"type":50,"value":32721}," Shopify's raw data has some quirks to handle in staging:",{"type":44,"tag":13430,"props":32723,"children":32724},{},[32725,32743,32761,32801,32827],{"type":44,"tag":13434,"props":32726,"children":32727},{},[32728,32733,32735,32741],{"type":44,"tag":185,"props":32729,"children":32730},{},[32731],{"type":50,"value":32732},"Test orders:",{"type":50,"value":32734}," Filter with ",{"type":44,"tag":81,"props":32736,"children":32738},{"className":32737},[],[32739],{"type":50,"value":32740},"WHERE test IS NOT TRUE",{"type":50,"value":32742}," to exclude test transactions",{"type":44,"tag":13434,"props":32744,"children":32745},{},[32746,32751,32753,32759],{"type":44,"tag":185,"props":32747,"children":32748},{},[32749],{"type":50,"value":32750},"Deduplication:",{"type":50,"value":32752}," Shopify can send the same order multiple times. Add ",{"type":44,"tag":81,"props":32754,"children":32756},{"className":32755},[],[32757],{"type":50,"value":32758},"QUALIFY ROW_NUMBER() OVER (PARTITION BY id ORDER BY updated_at DESC) = 1",{"type":50,"value":32760}," to keep only the latest version",{"type":44,"tag":13434,"props":32762,"children":32763},{},[32764,32769,32771,32777,32778,32784,32785,32791,32793,32799],{"type":44,"tag":185,"props":32765,"children":32766},{},[32767],{"type":50,"value":32768},"JSON fields:",{"type":50,"value":32770}," Fields like ",{"type":44,"tag":81,"props":32772,"children":32774},{"className":32773},[],[32775],{"type":50,"value":32776},"customer",{"type":50,"value":750},{"type":44,"tag":81,"props":32779,"children":32781},{"className":32780},[],[32782],{"type":50,"value":32783},"shipping_address",{"type":50,"value":26593},{"type":44,"tag":81,"props":32786,"children":32788},{"className":32787},[],[32789],{"type":50,"value":32790},"line_items",{"type":50,"value":32792}," are nested JSON. Extract them with ",{"type":44,"tag":81,"props":32794,"children":32796},{"className":32795},[],[32797],{"type":50,"value":32798},"JSON_EXTRACT_SCALAR(customer, '$.id')",{"type":50,"value":32800}," (BigQuery) or equivalent",{"type":44,"tag":13434,"props":32802,"children":32803},{},[32804,32809,32811,32817,32819,32825],{"type":44,"tag":185,"props":32805,"children":32806},{},[32807],{"type":50,"value":32808},"Product IDs:",{"type":50,"value":32810}," Shopify product IDs come in GID format (",{"type":44,"tag":81,"props":32812,"children":32814},{"className":32813},[],[32815],{"type":50,"value":32816},"gid:\u002F\u002Fshopify\u002FProduct\u002F123456789",{"type":50,"value":32818},"). Parse with ",{"type":44,"tag":81,"props":32820,"children":32822},{"className":32821},[],[32823],{"type":50,"value":32824},"REPLACE(id, 'gid:\u002F\u002Fshopify\u002FProduct\u002F', '')",{"type":50,"value":32826}," in your products staging table",{"type":44,"tag":13434,"props":32828,"children":32829},{},[32830,32835,32837,32842,32844,32849,32851],{"type":44,"tag":185,"props":32831,"children":32832},{},[32833],{"type":50,"value":32834},"Line items:",{"type":50,"value":32836}," For product-level analytics, create a ",{"type":44,"tag":81,"props":32838,"children":32840},{"className":32839},[],[32841],{"type":50,"value":5121},{"type":50,"value":32843}," table that flattens the ",{"type":44,"tag":81,"props":32845,"children":32847},{"className":32846},[],[32848],{"type":50,"value":32790},{"type":50,"value":32850}," JSON array using ",{"type":44,"tag":81,"props":32852,"children":32854},{"className":32853},[],[32855],{"type":50,"value":32856},"UNNEST(JSON_EXTRACT_ARRAY(line_items))",{"type":44,"tag":124,"props":32858,"children":32860},{"id":32859},"_1-staged-orders-stg_orderssql",[32861,32863],{"type":50,"value":32862},"1) Staged orders - ",{"type":44,"tag":81,"props":32864,"children":32866},{"className":32865},[],[32867],{"type":50,"value":32868},"stg_orders.sql",{"type":44,"tag":53,"props":32870,"children":32871},{},[32872],{"type":50,"value":32873},"This is the core table: every order, enriched with Stripe payment data.",{"type":44,"tag":5108,"props":32875,"children":32877},{"type":32876},"warning",[32878],{"type":44,"tag":53,"props":32879,"children":32880},{},[32881,32883,32888,32890,32896,32898,32904,32906,32910,32912,32917,32919,32924,32926,32931,32933,32939,32941,32946,32948,32953,32954,32959],{"type":50,"value":32882},"The SQL below includes a ",{"type":44,"tag":81,"props":32884,"children":32886},{"className":32885},[],[32887],{"type":50,"value":6556},{"type":50,"value":32889}," to ",{"type":44,"tag":81,"props":32891,"children":32893},{"className":32892},[],[32894],{"type":50,"value":32895},"raw.stripe_charges",{"type":50,"value":32897}," and lists it in ",{"type":44,"tag":81,"props":32899,"children":32901},{"className":32900},[],[32902],{"type":50,"value":32903},"depends",{"type":50,"value":32905},". This only applies if you set up Stripe in Step 2. If you're using ",{"type":44,"tag":185,"props":32907,"children":32908},{},[32909],{"type":50,"value":28974},{"type":50,"value":32911},", remove ",{"type":44,"tag":81,"props":32913,"children":32915},{"className":32914},[],[32916],{"type":50,"value":32895},{"type":50,"value":32918}," from the ",{"type":44,"tag":81,"props":32920,"children":32922},{"className":32921},[],[32923],{"type":50,"value":32903},{"type":50,"value":32925}," list and remove the ",{"type":44,"tag":81,"props":32927,"children":32929},{"className":32928},[],[32930],{"type":50,"value":6556},{"type":50,"value":32932}," and the three ",{"type":44,"tag":81,"props":32934,"children":32936},{"className":32935},[],[32937],{"type":50,"value":32938},"stripe_*",{"type":50,"value":32940}," columns from the SELECT. The payment data is already in ",{"type":44,"tag":81,"props":32942,"children":32944},{"className":32943},[],[32945],{"type":50,"value":29004},{"type":50,"value":32947}," (the ",{"type":44,"tag":81,"props":32949,"children":32951},{"className":32950},[],[32952],{"type":50,"value":1435},{"type":50,"value":32393},{"type":44,"tag":81,"props":32955,"children":32957},{"className":32956},[],[32958],{"type":50,"value":28991},{"type":50,"value":32960}," fields). Ask Claude Code to adjust the query for you if needed.",{"type":44,"tag":53,"props":32962,"children":32963},{},[32964,32965,32974],{"type":50,"value":183},{"type":44,"tag":185,"props":32966,"children":32967},{},[32968],{"type":44,"tag":81,"props":32969,"children":32971},{"className":32970},[],[32972],{"type":50,"value":32973},"ecommerce\u002Fassets\u002Fstaging\u002Fstg_orders.sql",{"type":50,"value":195},{"type":44,"tag":197,"props":32976,"children":32977},{":variants":199,"group":200},[32978,33844,34803],{"type":44,"tag":203,"props":32979,"children":32980},{"v-slot:clickhouse":7},[32981],{"type":44,"tag":90,"props":32982,"children":32984},{"className":208,"code":32983,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_orders\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.shopify_orders\n  - raw.stripe_charges\ncolumns:\n  - name: order_id\n    type: varchar\n    checks:\n      - name: not_null\n      - name: unique\n  - name: order_date\n    type: timestamp\n    checks:\n      - name: not_null\ncustom_checks:\n  - name: has_rows\n    query: \"SELECT count(*) > 0 FROM staging.stg_orders\"\n    value: 1\n@bruin *\u002F\n\nSELECT\n    o.id AS order_id,\n    o.order_number,\n    o.email AS customer_email,\n    o.created_at AS order_date,\n    o.financial_status AS payment_status,\n    o.fulfillment_status,\n    CAST(o.total_price AS DECIMAL(12,2)) AS order_total,\n    CAST(o.subtotal_price AS DECIMAL(12,2)) AS subtotal,\n    CAST(o.total_tax AS DECIMAL(12,2)) AS tax_amount,\n    CAST(o.total_discounts AS DECIMAL(12,2)) AS discount_amount,\n    o.currency,\n    o.cancel_reason,\n    o.cancelled_at,\n    c.amount \u002F 100.0 AS stripe_charge_amount,\n    c.status AS stripe_status,\n    c.paid AS stripe_paid\nFROM raw.shopify_orders o\nLEFT JOIN raw.stripe_charges c\n    ON o.email = c.receipt_email\n    AND toDate(o.created_at) = toDate(c.created)\n",[32985],{"type":44,"tag":81,"props":32986,"children":32987},{"__ignoreMap":7},[32988,32995,33003,33010,33017,33024,33031,33039,33047,33054,33062,33069,33076,33083,33090,33097,33105,33112,33119,33126,33133,33141,33148,33155,33162,33169,33195,33215,33240,33264,33288,33308,33372,33433,33494,33555,33575,33595,33615,33657,33682,33707,33732,33756,33792],{"type":44,"tag":100,"props":32989,"children":32990},{"class":102,"line":103},[32991],{"type":44,"tag":100,"props":32992,"children":32993},{"style":220},[32994],{"type":50,"value":223},{"type":44,"tag":100,"props":32996,"children":32997},{"class":102,"line":226},[32998],{"type":44,"tag":100,"props":32999,"children":33000},{"style":220},[33001],{"type":50,"value":33002},"name: staging.stg_orders\n",{"type":44,"tag":100,"props":33004,"children":33005},{"class":102,"line":235},[33006],{"type":44,"tag":100,"props":33007,"children":33008},{"style":220},[33009],{"type":50,"value":241},{"type":44,"tag":100,"props":33011,"children":33012},{"class":102,"line":24},[33013],{"type":44,"tag":100,"props":33014,"children":33015},{"style":220},[33016],{"type":50,"value":249},{"type":44,"tag":100,"props":33018,"children":33019},{"class":102,"line":252},[33020],{"type":44,"tag":100,"props":33021,"children":33022},{"style":220},[33023],{"type":50,"value":258},{"type":44,"tag":100,"props":33025,"children":33026},{"class":102,"line":261},[33027],{"type":44,"tag":100,"props":33028,"children":33029},{"style":220},[33030],{"type":50,"value":267},{"type":44,"tag":100,"props":33032,"children":33033},{"class":102,"line":270},[33034],{"type":44,"tag":100,"props":33035,"children":33036},{"style":220},[33037],{"type":50,"value":33038},"  - raw.shopify_orders\n",{"type":44,"tag":100,"props":33040,"children":33041},{"class":102,"line":279},[33042],{"type":44,"tag":100,"props":33043,"children":33044},{"style":220},[33045],{"type":50,"value":33046},"  - raw.stripe_charges\n",{"type":44,"tag":100,"props":33048,"children":33049},{"class":102,"line":288},[33050],{"type":44,"tag":100,"props":33051,"children":33052},{"style":220},[33053],{"type":50,"value":285},{"type":44,"tag":100,"props":33055,"children":33056},{"class":102,"line":297},[33057],{"type":44,"tag":100,"props":33058,"children":33059},{"style":220},[33060],{"type":50,"value":33061},"  - name: order_id\n",{"type":44,"tag":100,"props":33063,"children":33064},{"class":102,"line":306},[33065],{"type":44,"tag":100,"props":33066,"children":33067},{"style":220},[33068],{"type":50,"value":5225},{"type":44,"tag":100,"props":33070,"children":33071},{"class":102,"line":315},[33072],{"type":44,"tag":100,"props":33073,"children":33074},{"style":220},[33075],{"type":50,"value":312},{"type":44,"tag":100,"props":33077,"children":33078},{"class":102,"line":324},[33079],{"type":44,"tag":100,"props":33080,"children":33081},{"style":220},[33082],{"type":50,"value":321},{"type":44,"tag":100,"props":33084,"children":33085},{"class":102,"line":333},[33086],{"type":44,"tag":100,"props":33087,"children":33088},{"style":220},[33089],{"type":50,"value":330},{"type":44,"tag":100,"props":33091,"children":33092},{"class":102,"line":11},[33093],{"type":44,"tag":100,"props":33094,"children":33095},{"style":220},[33096],{"type":50,"value":294},{"type":44,"tag":100,"props":33098,"children":33099},{"class":102,"line":350},[33100],{"type":44,"tag":100,"props":33101,"children":33102},{"style":220},[33103],{"type":50,"value":33104},"    type: timestamp\n",{"type":44,"tag":100,"props":33106,"children":33107},{"class":102,"line":359},[33108],{"type":44,"tag":100,"props":33109,"children":33110},{"style":220},[33111],{"type":50,"value":312},{"type":44,"tag":100,"props":33113,"children":33114},{"class":102,"line":368},[33115],{"type":44,"tag":100,"props":33116,"children":33117},{"style":220},[33118],{"type":50,"value":321},{"type":44,"tag":100,"props":33120,"children":33121},{"class":102,"line":377},[33122],{"type":44,"tag":100,"props":33123,"children":33124},{"style":220},[33125],{"type":50,"value":339},{"type":44,"tag":100,"props":33127,"children":33128},{"class":102,"line":386},[33129],{"type":44,"tag":100,"props":33130,"children":33131},{"style":220},[33132],{"type":50,"value":347},{"type":44,"tag":100,"props":33134,"children":33135},{"class":102,"line":396},[33136],{"type":44,"tag":100,"props":33137,"children":33138},{"style":220},[33139],{"type":50,"value":33140},"    query: \"SELECT count(*) > 0 FROM staging.stg_orders\"\n",{"type":44,"tag":100,"props":33142,"children":33143},{"class":102,"line":416},[33144],{"type":44,"tag":100,"props":33145,"children":33146},{"style":220},[33147],{"type":50,"value":365},{"type":44,"tag":100,"props":33149,"children":33150},{"class":102,"line":449},[33151],{"type":44,"tag":100,"props":33152,"children":33153},{"style":220},[33154],{"type":50,"value":374},{"type":44,"tag":100,"props":33156,"children":33157},{"class":102,"line":481},[33158],{"type":44,"tag":100,"props":33159,"children":33160},{"emptyLinePlaceholder":23},[33161],{"type":50,"value":383},{"type":44,"tag":100,"props":33163,"children":33164},{"class":102,"line":508},[33165],{"type":44,"tag":100,"props":33166,"children":33167},{"style":390},[33168],{"type":50,"value":393},{"type":44,"tag":100,"props":33170,"children":33171},{"class":102,"line":531},[33172,33177,33181,33186,33190],{"type":44,"tag":100,"props":33173,"children":33174},{"style":113},[33175],{"type":50,"value":33176},"    o",{"type":44,"tag":100,"props":33178,"children":33179},{"style":400},[33180],{"type":50,"value":786},{"type":44,"tag":100,"props":33182,"children":33183},{"style":113},[33184],{"type":50,"value":33185},"id",{"type":44,"tag":100,"props":33187,"children":33188},{"style":390},[33189],{"type":50,"value":1661},{"type":44,"tag":100,"props":33191,"children":33192},{"style":400},[33193],{"type":50,"value":33194}," order_id,\n",{"type":44,"tag":100,"props":33196,"children":33197},{"class":102,"line":604},[33198,33202,33206,33211],{"type":44,"tag":100,"props":33199,"children":33200},{"style":113},[33201],{"type":50,"value":33176},{"type":44,"tag":100,"props":33203,"children":33204},{"style":400},[33205],{"type":50,"value":786},{"type":44,"tag":100,"props":33207,"children":33208},{"style":113},[33209],{"type":50,"value":33210},"order_number",{"type":44,"tag":100,"props":33212,"children":33213},{"style":400},[33214],{"type":50,"value":2431},{"type":44,"tag":100,"props":33216,"children":33217},{"class":102,"line":626},[33218,33222,33226,33231,33235],{"type":44,"tag":100,"props":33219,"children":33220},{"style":113},[33221],{"type":50,"value":33176},{"type":44,"tag":100,"props":33223,"children":33224},{"style":400},[33225],{"type":50,"value":786},{"type":44,"tag":100,"props":33227,"children":33228},{"style":113},[33229],{"type":50,"value":33230},"email",{"type":44,"tag":100,"props":33232,"children":33233},{"style":390},[33234],{"type":50,"value":1661},{"type":44,"tag":100,"props":33236,"children":33237},{"style":400},[33238],{"type":50,"value":33239}," customer_email,\n",{"type":44,"tag":100,"props":33241,"children":33242},{"class":102,"line":648},[33243,33247,33251,33256,33260],{"type":44,"tag":100,"props":33244,"children":33245},{"style":113},[33246],{"type":50,"value":33176},{"type":44,"tag":100,"props":33248,"children":33249},{"style":400},[33250],{"type":50,"value":786},{"type":44,"tag":100,"props":33252,"children":33253},{"style":113},[33254],{"type":50,"value":33255},"created_at",{"type":44,"tag":100,"props":33257,"children":33258},{"style":390},[33259],{"type":50,"value":1661},{"type":44,"tag":100,"props":33261,"children":33262},{"style":400},[33263],{"type":50,"value":413},{"type":44,"tag":100,"props":33265,"children":33266},{"class":102,"line":705},[33267,33271,33275,33279,33283],{"type":44,"tag":100,"props":33268,"children":33269},{"style":113},[33270],{"type":50,"value":33176},{"type":44,"tag":100,"props":33272,"children":33273},{"style":400},[33274],{"type":50,"value":786},{"type":44,"tag":100,"props":33276,"children":33277},{"style":113},[33278],{"type":50,"value":1435},{"type":44,"tag":100,"props":33280,"children":33281},{"style":390},[33282],{"type":50,"value":1661},{"type":44,"tag":100,"props":33284,"children":33285},{"style":400},[33286],{"type":50,"value":33287}," payment_status,\n",{"type":44,"tag":100,"props":33289,"children":33290},{"class":102,"line":770},[33291,33295,33299,33304],{"type":44,"tag":100,"props":33292,"children":33293},{"style":113},[33294],{"type":50,"value":33176},{"type":44,"tag":100,"props":33296,"children":33297},{"style":400},[33298],{"type":50,"value":786},{"type":44,"tag":100,"props":33300,"children":33301},{"style":113},[33302],{"type":50,"value":33303},"fulfillment_status",{"type":44,"tag":100,"props":33305,"children":33306},{"style":400},[33307],{"type":50,"value":2431},{"type":44,"tag":100,"props":33309,"children":33310},{"class":102,"line":794},[33311,33316,33320,33324,33328,33332,33336,33341,33345,33350,33355,33359,33363,33367],{"type":44,"tag":100,"props":33312,"children":33313},{"style":113},[33314],{"type":50,"value":33315},"    CAST",{"type":44,"tag":100,"props":33317,"children":33318},{"style":400},[33319],{"type":50,"value":427},{"type":44,"tag":100,"props":33321,"children":33322},{"style":113},[33323],{"type":50,"value":2478},{"type":44,"tag":100,"props":33325,"children":33326},{"style":400},[33327],{"type":50,"value":786},{"type":44,"tag":100,"props":33329,"children":33330},{"style":113},[33331],{"type":50,"value":28991},{"type":44,"tag":100,"props":33333,"children":33334},{"style":390},[33335],{"type":50,"value":1661},{"type":44,"tag":100,"props":33337,"children":33338},{"style":390},[33339],{"type":50,"value":33340}," DECIMAL",{"type":44,"tag":100,"props":33342,"children":33343},{"style":400},[33344],{"type":50,"value":427},{"type":44,"tag":100,"props":33346,"children":33347},{"style":113},[33348],{"type":50,"value":33349},"12",{"type":44,"tag":100,"props":33351,"children":33352},{"style":400},[33353],{"type":50,"value":33354},",",{"type":44,"tag":100,"props":33356,"children":33357},{"style":113},[33358],{"type":50,"value":689},{"type":44,"tag":100,"props":33360,"children":33361},{"style":400},[33362],{"type":50,"value":9633},{"type":44,"tag":100,"props":33364,"children":33365},{"style":390},[33366],{"type":50,"value":408},{"type":44,"tag":100,"props":33368,"children":33369},{"style":400},[33370],{"type":50,"value":33371}," order_total,\n",{"type":44,"tag":100,"props":33373,"children":33374},{"class":102,"line":808},[33375,33379,33383,33387,33391,33396,33400,33404,33408,33412,33416,33420,33424,33428],{"type":44,"tag":100,"props":33376,"children":33377},{"style":113},[33378],{"type":50,"value":33315},{"type":44,"tag":100,"props":33380,"children":33381},{"style":400},[33382],{"type":50,"value":427},{"type":44,"tag":100,"props":33384,"children":33385},{"style":113},[33386],{"type":50,"value":2478},{"type":44,"tag":100,"props":33388,"children":33389},{"style":400},[33390],{"type":50,"value":786},{"type":44,"tag":100,"props":33392,"children":33393},{"style":113},[33394],{"type":50,"value":33395},"subtotal_price",{"type":44,"tag":100,"props":33397,"children":33398},{"style":390},[33399],{"type":50,"value":1661},{"type":44,"tag":100,"props":33401,"children":33402},{"style":390},[33403],{"type":50,"value":33340},{"type":44,"tag":100,"props":33405,"children":33406},{"style":400},[33407],{"type":50,"value":427},{"type":44,"tag":100,"props":33409,"children":33410},{"style":113},[33411],{"type":50,"value":33349},{"type":44,"tag":100,"props":33413,"children":33414},{"style":400},[33415],{"type":50,"value":33354},{"type":44,"tag":100,"props":33417,"children":33418},{"style":113},[33419],{"type":50,"value":689},{"type":44,"tag":100,"props":33421,"children":33422},{"style":400},[33423],{"type":50,"value":9633},{"type":44,"tag":100,"props":33425,"children":33426},{"style":390},[33427],{"type":50,"value":408},{"type":44,"tag":100,"props":33429,"children":33430},{"style":400},[33431],{"type":50,"value":33432}," subtotal,\n",{"type":44,"tag":100,"props":33434,"children":33435},{"class":102,"line":1484},[33436,33440,33444,33448,33452,33457,33461,33465,33469,33473,33477,33481,33485,33489],{"type":44,"tag":100,"props":33437,"children":33438},{"style":113},[33439],{"type":50,"value":33315},{"type":44,"tag":100,"props":33441,"children":33442},{"style":400},[33443],{"type":50,"value":427},{"type":44,"tag":100,"props":33445,"children":33446},{"style":113},[33447],{"type":50,"value":2478},{"type":44,"tag":100,"props":33449,"children":33450},{"style":400},[33451],{"type":50,"value":786},{"type":44,"tag":100,"props":33453,"children":33454},{"style":113},[33455],{"type":50,"value":33456},"total_tax",{"type":44,"tag":100,"props":33458,"children":33459},{"style":390},[33460],{"type":50,"value":1661},{"type":44,"tag":100,"props":33462,"children":33463},{"style":390},[33464],{"type":50,"value":33340},{"type":44,"tag":100,"props":33466,"children":33467},{"style":400},[33468],{"type":50,"value":427},{"type":44,"tag":100,"props":33470,"children":33471},{"style":113},[33472],{"type":50,"value":33349},{"type":44,"tag":100,"props":33474,"children":33475},{"style":400},[33476],{"type":50,"value":33354},{"type":44,"tag":100,"props":33478,"children":33479},{"style":113},[33480],{"type":50,"value":689},{"type":44,"tag":100,"props":33482,"children":33483},{"style":400},[33484],{"type":50,"value":9633},{"type":44,"tag":100,"props":33486,"children":33487},{"style":390},[33488],{"type":50,"value":408},{"type":44,"tag":100,"props":33490,"children":33491},{"style":400},[33492],{"type":50,"value":33493}," tax_amount,\n",{"type":44,"tag":100,"props":33495,"children":33496},{"class":102,"line":2747},[33497,33501,33505,33509,33513,33518,33522,33526,33530,33534,33538,33542,33546,33550],{"type":44,"tag":100,"props":33498,"children":33499},{"style":113},[33500],{"type":50,"value":33315},{"type":44,"tag":100,"props":33502,"children":33503},{"style":400},[33504],{"type":50,"value":427},{"type":44,"tag":100,"props":33506,"children":33507},{"style":113},[33508],{"type":50,"value":2478},{"type":44,"tag":100,"props":33510,"children":33511},{"style":400},[33512],{"type":50,"value":786},{"type":44,"tag":100,"props":33514,"children":33515},{"style":113},[33516],{"type":50,"value":33517},"total_discounts",{"type":44,"tag":100,"props":33519,"children":33520},{"style":390},[33521],{"type":50,"value":1661},{"type":44,"tag":100,"props":33523,"children":33524},{"style":390},[33525],{"type":50,"value":33340},{"type":44,"tag":100,"props":33527,"children":33528},{"style":400},[33529],{"type":50,"value":427},{"type":44,"tag":100,"props":33531,"children":33532},{"style":113},[33533],{"type":50,"value":33349},{"type":44,"tag":100,"props":33535,"children":33536},{"style":400},[33537],{"type":50,"value":33354},{"type":44,"tag":100,"props":33539,"children":33540},{"style":113},[33541],{"type":50,"value":689},{"type":44,"tag":100,"props":33543,"children":33544},{"style":400},[33545],{"type":50,"value":9633},{"type":44,"tag":100,"props":33547,"children":33548},{"style":390},[33549],{"type":50,"value":408},{"type":44,"tag":100,"props":33551,"children":33552},{"style":400},[33553],{"type":50,"value":33554}," discount_amount,\n",{"type":44,"tag":100,"props":33556,"children":33557},{"class":102,"line":2769},[33558,33562,33566,33571],{"type":44,"tag":100,"props":33559,"children":33560},{"style":113},[33561],{"type":50,"value":33176},{"type":44,"tag":100,"props":33563,"children":33564},{"style":400},[33565],{"type":50,"value":786},{"type":44,"tag":100,"props":33567,"children":33568},{"style":113},[33569],{"type":50,"value":33570},"currency",{"type":44,"tag":100,"props":33572,"children":33573},{"style":400},[33574],{"type":50,"value":2431},{"type":44,"tag":100,"props":33576,"children":33577},{"class":102,"line":2791},[33578,33582,33586,33591],{"type":44,"tag":100,"props":33579,"children":33580},{"style":113},[33581],{"type":50,"value":33176},{"type":44,"tag":100,"props":33583,"children":33584},{"style":400},[33585],{"type":50,"value":786},{"type":44,"tag":100,"props":33587,"children":33588},{"style":113},[33589],{"type":50,"value":33590},"cancel_reason",{"type":44,"tag":100,"props":33592,"children":33593},{"style":400},[33594],{"type":50,"value":2431},{"type":44,"tag":100,"props":33596,"children":33597},{"class":102,"line":2856},[33598,33602,33606,33611],{"type":44,"tag":100,"props":33599,"children":33600},{"style":113},[33601],{"type":50,"value":33176},{"type":44,"tag":100,"props":33603,"children":33604},{"style":400},[33605],{"type":50,"value":786},{"type":44,"tag":100,"props":33607,"children":33608},{"style":113},[33609],{"type":50,"value":33610},"cancelled_at",{"type":44,"tag":100,"props":33612,"children":33613},{"style":400},[33614],{"type":50,"value":2431},{"type":44,"tag":100,"props":33616,"children":33617},{"class":102,"line":2898},[33618,33623,33627,33632,33636,33640,33644,33648,33652],{"type":44,"tag":100,"props":33619,"children":33620},{"style":113},[33621],{"type":50,"value":33622},"    c",{"type":44,"tag":100,"props":33624,"children":33625},{"style":400},[33626],{"type":50,"value":786},{"type":44,"tag":100,"props":33628,"children":33629},{"style":113},[33630],{"type":50,"value":33631},"amount",{"type":44,"tag":100,"props":33633,"children":33634},{"style":390},[33635],{"type":50,"value":6319},{"type":44,"tag":100,"props":33637,"children":33638},{"style":113},[33639],{"type":50,"value":745},{"type":44,"tag":100,"props":33641,"children":33642},{"style":400},[33643],{"type":50,"value":786},{"type":44,"tag":100,"props":33645,"children":33646},{"style":113},[33647],{"type":50,"value":679},{"type":44,"tag":100,"props":33649,"children":33650},{"style":390},[33651],{"type":50,"value":1661},{"type":44,"tag":100,"props":33653,"children":33654},{"style":400},[33655],{"type":50,"value":33656}," stripe_charge_amount,\n",{"type":44,"tag":100,"props":33658,"children":33659},{"class":102,"line":2977},[33660,33664,33668,33673,33677],{"type":44,"tag":100,"props":33661,"children":33662},{"style":113},[33663],{"type":50,"value":33622},{"type":44,"tag":100,"props":33665,"children":33666},{"style":400},[33667],{"type":50,"value":786},{"type":44,"tag":100,"props":33669,"children":33670},{"style":113},[33671],{"type":50,"value":33672},"status",{"type":44,"tag":100,"props":33674,"children":33675},{"style":390},[33676],{"type":50,"value":1661},{"type":44,"tag":100,"props":33678,"children":33679},{"style":400},[33680],{"type":50,"value":33681}," stripe_status,\n",{"type":44,"tag":100,"props":33683,"children":33684},{"class":102,"line":3015},[33685,33689,33693,33698,33702],{"type":44,"tag":100,"props":33686,"children":33687},{"style":113},[33688],{"type":50,"value":33622},{"type":44,"tag":100,"props":33690,"children":33691},{"style":400},[33692],{"type":50,"value":786},{"type":44,"tag":100,"props":33694,"children":33695},{"style":113},[33696],{"type":50,"value":33697},"paid",{"type":44,"tag":100,"props":33699,"children":33700},{"style":390},[33701],{"type":50,"value":1661},{"type":44,"tag":100,"props":33703,"children":33704},{"style":400},[33705],{"type":50,"value":33706}," stripe_paid\n",{"type":44,"tag":100,"props":33708,"children":33709},{"class":102,"line":3081},[33710,33714,33719,33723,33728],{"type":44,"tag":100,"props":33711,"children":33712},{"style":390},[33713],{"type":50,"value":776},{"type":44,"tag":100,"props":33715,"children":33716},{"style":113},[33717],{"type":50,"value":33718}," raw",{"type":44,"tag":100,"props":33720,"children":33721},{"style":400},[33722],{"type":50,"value":786},{"type":44,"tag":100,"props":33724,"children":33725},{"style":113},[33726],{"type":50,"value":33727},"shopify_orders",{"type":44,"tag":100,"props":33729,"children":33730},{"style":400},[33731],{"type":50,"value":1413},{"type":44,"tag":100,"props":33733,"children":33734},{"class":102,"line":3094},[33735,33739,33743,33747,33752],{"type":44,"tag":100,"props":33736,"children":33737},{"style":390},[33738],{"type":50,"value":6556},{"type":44,"tag":100,"props":33740,"children":33741},{"style":113},[33742],{"type":50,"value":33718},{"type":44,"tag":100,"props":33744,"children":33745},{"style":400},[33746],{"type":50,"value":786},{"type":44,"tag":100,"props":33748,"children":33749},{"style":113},[33750],{"type":50,"value":33751},"stripe_charges",{"type":44,"tag":100,"props":33753,"children":33754},{"style":400},[33755],{"type":50,"value":2566},{"type":44,"tag":100,"props":33757,"children":33758},{"class":102,"line":3108},[33759,33763,33767,33771,33775,33779,33783,33787],{"type":44,"tag":100,"props":33760,"children":33761},{"style":390},[33762],{"type":50,"value":3114},{"type":44,"tag":100,"props":33764,"children":33765},{"style":113},[33766],{"type":50,"value":1426},{"type":44,"tag":100,"props":33768,"children":33769},{"style":400},[33770],{"type":50,"value":786},{"type":44,"tag":100,"props":33772,"children":33773},{"style":113},[33774],{"type":50,"value":33230},{"type":44,"tag":100,"props":33776,"children":33777},{"style":390},[33778],{"type":50,"value":2591},{"type":44,"tag":100,"props":33780,"children":33781},{"style":113},[33782],{"type":50,"value":2596},{"type":44,"tag":100,"props":33784,"children":33785},{"style":400},[33786],{"type":50,"value":786},{"type":44,"tag":100,"props":33788,"children":33789},{"style":113},[33790],{"type":50,"value":33791},"receipt_email\n",{"type":44,"tag":100,"props":33793,"children":33794},{"class":102,"line":3147},[33795,33799,33803,33807,33811,33815,33819,33823,33827,33831,33835,33840],{"type":44,"tag":100,"props":33796,"children":33797},{"style":390},[33798],{"type":50,"value":6607},{"type":44,"tag":100,"props":33800,"children":33801},{"style":400},[33802],{"type":50,"value":5990},{"type":44,"tag":100,"props":33804,"children":33805},{"style":113},[33806],{"type":50,"value":2478},{"type":44,"tag":100,"props":33808,"children":33809},{"style":400},[33810],{"type":50,"value":786},{"type":44,"tag":100,"props":33812,"children":33813},{"style":113},[33814],{"type":50,"value":33255},{"type":44,"tag":100,"props":33816,"children":33817},{"style":400},[33818],{"type":50,"value":437},{"type":44,"tag":100,"props":33820,"children":33821},{"style":390},[33822],{"type":50,"value":460},{"type":44,"tag":100,"props":33824,"children":33825},{"style":400},[33826],{"type":50,"value":5990},{"type":44,"tag":100,"props":33828,"children":33829},{"style":113},[33830],{"type":50,"value":2444},{"type":44,"tag":100,"props":33832,"children":33833},{"style":400},[33834],{"type":50,"value":786},{"type":44,"tag":100,"props":33836,"children":33837},{"style":113},[33838],{"type":50,"value":33839},"created",{"type":44,"tag":100,"props":33841,"children":33842},{"style":400},[33843],{"type":50,"value":1464},{"type":44,"tag":203,"props":33845,"children":33846},{"v-slot:bigquery":7},[33847],{"type":44,"tag":90,"props":33848,"children":33850},{"className":208,"code":33849,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_orders\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.shopify_orders\n  - raw.stripe_charges\ncolumns:\n  - name: order_id\n    type: varchar\n    checks:\n      - name: not_null\n      - name: unique\n  - name: order_date\n    type: timestamp\n    checks:\n      - name: not_null\ncustom_checks:\n  - name: has_rows\n    query: \"SELECT count(*) > 0 FROM staging.stg_orders\"\n    value: 1\n@bruin *\u002F\n\nSELECT\n    o.id AS order_id,\n    o.order_number,\n    o.email AS customer_email,\n    o.created_at AS order_date,\n    o.financial_status AS payment_status,\n    o.fulfillment_status,\n    SAFE_CAST(o.total_price AS DECIMAL(12,2)) AS order_total,\n    SAFE_CAST(o.subtotal_price AS DECIMAL(12,2)) AS subtotal,\n    SAFE_CAST(o.total_tax AS DECIMAL(12,2)) AS tax_amount,\n    SAFE_CAST(o.total_discounts AS DECIMAL(12,2)) AS discount_amount,\n    o.currency,\n    o.cancel_reason,\n    o.cancelled_at,\n    c.amount \u002F 100.0 AS stripe_charge_amount,\n    c.status AS stripe_status,\n    c.paid AS stripe_paid\nFROM raw.shopify_orders o\nLEFT JOIN raw.stripe_charges c\n    ON o.email = c.receipt_email\n    AND DATE(o.created_at) = DATE(c.created)\nWHERE o.test IS NOT TRUE AND o.financial_status IS NOT NULL\nQUALIFY ROW_NUMBER() OVER (PARTITION BY o.id ORDER BY o.updated_at DESC) = 1\n",[33851],{"type":44,"tag":81,"props":33852,"children":33853},{"__ignoreMap":7},[33854,33861,33868,33875,33882,33889,33896,33903,33910,33917,33924,33931,33938,33945,33952,33959,33966,33973,33980,33987,33994,34001,34008,34015,34022,34029,34052,34071,34094,34117,34140,34159,34215,34270,34325,34380,34399,34418,34437,34476,34499,34522,34545,34568,34603,34662,34719],{"type":44,"tag":100,"props":33855,"children":33856},{"class":102,"line":103},[33857],{"type":44,"tag":100,"props":33858,"children":33859},{"style":220},[33860],{"type":50,"value":223},{"type":44,"tag":100,"props":33862,"children":33863},{"class":102,"line":226},[33864],{"type":44,"tag":100,"props":33865,"children":33866},{"style":220},[33867],{"type":50,"value":33002},{"type":44,"tag":100,"props":33869,"children":33870},{"class":102,"line":235},[33871],{"type":44,"tag":100,"props":33872,"children":33873},{"style":220},[33874],{"type":50,"value":241},{"type":44,"tag":100,"props":33876,"children":33877},{"class":102,"line":24},[33878],{"type":44,"tag":100,"props":33879,"children":33880},{"style":220},[33881],{"type":50,"value":249},{"type":44,"tag":100,"props":33883,"children":33884},{"class":102,"line":252},[33885],{"type":44,"tag":100,"props":33886,"children":33887},{"style":220},[33888],{"type":50,"value":258},{"type":44,"tag":100,"props":33890,"children":33891},{"class":102,"line":261},[33892],{"type":44,"tag":100,"props":33893,"children":33894},{"style":220},[33895],{"type":50,"value":267},{"type":44,"tag":100,"props":33897,"children":33898},{"class":102,"line":270},[33899],{"type":44,"tag":100,"props":33900,"children":33901},{"style":220},[33902],{"type":50,"value":33038},{"type":44,"tag":100,"props":33904,"children":33905},{"class":102,"line":279},[33906],{"type":44,"tag":100,"props":33907,"children":33908},{"style":220},[33909],{"type":50,"value":33046},{"type":44,"tag":100,"props":33911,"children":33912},{"class":102,"line":288},[33913],{"type":44,"tag":100,"props":33914,"children":33915},{"style":220},[33916],{"type":50,"value":285},{"type":44,"tag":100,"props":33918,"children":33919},{"class":102,"line":297},[33920],{"type":44,"tag":100,"props":33921,"children":33922},{"style":220},[33923],{"type":50,"value":33061},{"type":44,"tag":100,"props":33925,"children":33926},{"class":102,"line":306},[33927],{"type":44,"tag":100,"props":33928,"children":33929},{"style":220},[33930],{"type":50,"value":5225},{"type":44,"tag":100,"props":33932,"children":33933},{"class":102,"line":315},[33934],{"type":44,"tag":100,"props":33935,"children":33936},{"style":220},[33937],{"type":50,"value":312},{"type":44,"tag":100,"props":33939,"children":33940},{"class":102,"line":324},[33941],{"type":44,"tag":100,"props":33942,"children":33943},{"style":220},[33944],{"type":50,"value":321},{"type":44,"tag":100,"props":33946,"children":33947},{"class":102,"line":333},[33948],{"type":44,"tag":100,"props":33949,"children":33950},{"style":220},[33951],{"type":50,"value":330},{"type":44,"tag":100,"props":33953,"children":33954},{"class":102,"line":11},[33955],{"type":44,"tag":100,"props":33956,"children":33957},{"style":220},[33958],{"type":50,"value":294},{"type":44,"tag":100,"props":33960,"children":33961},{"class":102,"line":350},[33962],{"type":44,"tag":100,"props":33963,"children":33964},{"style":220},[33965],{"type":50,"value":33104},{"type":44,"tag":100,"props":33967,"children":33968},{"class":102,"line":359},[33969],{"type":44,"tag":100,"props":33970,"children":33971},{"style":220},[33972],{"type":50,"value":312},{"type":44,"tag":100,"props":33974,"children":33975},{"class":102,"line":368},[33976],{"type":44,"tag":100,"props":33977,"children":33978},{"style":220},[33979],{"type":50,"value":321},{"type":44,"tag":100,"props":33981,"children":33982},{"class":102,"line":377},[33983],{"type":44,"tag":100,"props":33984,"children":33985},{"style":220},[33986],{"type":50,"value":339},{"type":44,"tag":100,"props":33988,"children":33989},{"class":102,"line":386},[33990],{"type":44,"tag":100,"props":33991,"children":33992},{"style":220},[33993],{"type":50,"value":347},{"type":44,"tag":100,"props":33995,"children":33996},{"class":102,"line":396},[33997],{"type":44,"tag":100,"props":33998,"children":33999},{"style":220},[34000],{"type":50,"value":33140},{"type":44,"tag":100,"props":34002,"children":34003},{"class":102,"line":416},[34004],{"type":44,"tag":100,"props":34005,"children":34006},{"style":220},[34007],{"type":50,"value":365},{"type":44,"tag":100,"props":34009,"children":34010},{"class":102,"line":449},[34011],{"type":44,"tag":100,"props":34012,"children":34013},{"style":220},[34014],{"type":50,"value":374},{"type":44,"tag":100,"props":34016,"children":34017},{"class":102,"line":481},[34018],{"type":44,"tag":100,"props":34019,"children":34020},{"emptyLinePlaceholder":23},[34021],{"type":50,"value":383},{"type":44,"tag":100,"props":34023,"children":34024},{"class":102,"line":508},[34025],{"type":44,"tag":100,"props":34026,"children":34027},{"style":390},[34028],{"type":50,"value":393},{"type":44,"tag":100,"props":34030,"children":34031},{"class":102,"line":531},[34032,34036,34040,34044,34048],{"type":44,"tag":100,"props":34033,"children":34034},{"style":113},[34035],{"type":50,"value":33176},{"type":44,"tag":100,"props":34037,"children":34038},{"style":400},[34039],{"type":50,"value":786},{"type":44,"tag":100,"props":34041,"children":34042},{"style":113},[34043],{"type":50,"value":33185},{"type":44,"tag":100,"props":34045,"children":34046},{"style":390},[34047],{"type":50,"value":1661},{"type":44,"tag":100,"props":34049,"children":34050},{"style":400},[34051],{"type":50,"value":33194},{"type":44,"tag":100,"props":34053,"children":34054},{"class":102,"line":604},[34055,34059,34063,34067],{"type":44,"tag":100,"props":34056,"children":34057},{"style":113},[34058],{"type":50,"value":33176},{"type":44,"tag":100,"props":34060,"children":34061},{"style":400},[34062],{"type":50,"value":786},{"type":44,"tag":100,"props":34064,"children":34065},{"style":113},[34066],{"type":50,"value":33210},{"type":44,"tag":100,"props":34068,"children":34069},{"style":400},[34070],{"type":50,"value":2431},{"type":44,"tag":100,"props":34072,"children":34073},{"class":102,"line":626},[34074,34078,34082,34086,34090],{"type":44,"tag":100,"props":34075,"children":34076},{"style":113},[34077],{"type":50,"value":33176},{"type":44,"tag":100,"props":34079,"children":34080},{"style":400},[34081],{"type":50,"value":786},{"type":44,"tag":100,"props":34083,"children":34084},{"style":113},[34085],{"type":50,"value":33230},{"type":44,"tag":100,"props":34087,"children":34088},{"style":390},[34089],{"type":50,"value":1661},{"type":44,"tag":100,"props":34091,"children":34092},{"style":400},[34093],{"type":50,"value":33239},{"type":44,"tag":100,"props":34095,"children":34096},{"class":102,"line":648},[34097,34101,34105,34109,34113],{"type":44,"tag":100,"props":34098,"children":34099},{"style":113},[34100],{"type":50,"value":33176},{"type":44,"tag":100,"props":34102,"children":34103},{"style":400},[34104],{"type":50,"value":786},{"type":44,"tag":100,"props":34106,"children":34107},{"style":113},[34108],{"type":50,"value":33255},{"type":44,"tag":100,"props":34110,"children":34111},{"style":390},[34112],{"type":50,"value":1661},{"type":44,"tag":100,"props":34114,"children":34115},{"style":400},[34116],{"type":50,"value":413},{"type":44,"tag":100,"props":34118,"children":34119},{"class":102,"line":705},[34120,34124,34128,34132,34136],{"type":44,"tag":100,"props":34121,"children":34122},{"style":113},[34123],{"type":50,"value":33176},{"type":44,"tag":100,"props":34125,"children":34126},{"style":400},[34127],{"type":50,"value":786},{"type":44,"tag":100,"props":34129,"children":34130},{"style":113},[34131],{"type":50,"value":1435},{"type":44,"tag":100,"props":34133,"children":34134},{"style":390},[34135],{"type":50,"value":1661},{"type":44,"tag":100,"props":34137,"children":34138},{"style":400},[34139],{"type":50,"value":33287},{"type":44,"tag":100,"props":34141,"children":34142},{"class":102,"line":770},[34143,34147,34151,34155],{"type":44,"tag":100,"props":34144,"children":34145},{"style":113},[34146],{"type":50,"value":33176},{"type":44,"tag":100,"props":34148,"children":34149},{"style":400},[34150],{"type":50,"value":786},{"type":44,"tag":100,"props":34152,"children":34153},{"style":113},[34154],{"type":50,"value":33303},{"type":44,"tag":100,"props":34156,"children":34157},{"style":400},[34158],{"type":50,"value":2431},{"type":44,"tag":100,"props":34160,"children":34161},{"class":102,"line":794},[34162,34167,34171,34175,34179,34183,34187,34191,34195,34199,34203,34207,34211],{"type":44,"tag":100,"props":34163,"children":34164},{"style":400},[34165],{"type":50,"value":34166},"    SAFE_CAST(",{"type":44,"tag":100,"props":34168,"children":34169},{"style":113},[34170],{"type":50,"value":2478},{"type":44,"tag":100,"props":34172,"children":34173},{"style":400},[34174],{"type":50,"value":786},{"type":44,"tag":100,"props":34176,"children":34177},{"style":113},[34178],{"type":50,"value":28991},{"type":44,"tag":100,"props":34180,"children":34181},{"style":390},[34182],{"type":50,"value":1661},{"type":44,"tag":100,"props":34184,"children":34185},{"style":390},[34186],{"type":50,"value":33340},{"type":44,"tag":100,"props":34188,"children":34189},{"style":400},[34190],{"type":50,"value":427},{"type":44,"tag":100,"props":34192,"children":34193},{"style":113},[34194],{"type":50,"value":33349},{"type":44,"tag":100,"props":34196,"children":34197},{"style":400},[34198],{"type":50,"value":33354},{"type":44,"tag":100,"props":34200,"children":34201},{"style":113},[34202],{"type":50,"value":689},{"type":44,"tag":100,"props":34204,"children":34205},{"style":400},[34206],{"type":50,"value":9633},{"type":44,"tag":100,"props":34208,"children":34209},{"style":390},[34210],{"type":50,"value":408},{"type":44,"tag":100,"props":34212,"children":34213},{"style":400},[34214],{"type":50,"value":33371},{"type":44,"tag":100,"props":34216,"children":34217},{"class":102,"line":808},[34218,34222,34226,34230,34234,34238,34242,34246,34250,34254,34258,34262,34266],{"type":44,"tag":100,"props":34219,"children":34220},{"style":400},[34221],{"type":50,"value":34166},{"type":44,"tag":100,"props":34223,"children":34224},{"style":113},[34225],{"type":50,"value":2478},{"type":44,"tag":100,"props":34227,"children":34228},{"style":400},[34229],{"type":50,"value":786},{"type":44,"tag":100,"props":34231,"children":34232},{"style":113},[34233],{"type":50,"value":33395},{"type":44,"tag":100,"props":34235,"children":34236},{"style":390},[34237],{"type":50,"value":1661},{"type":44,"tag":100,"props":34239,"children":34240},{"style":390},[34241],{"type":50,"value":33340},{"type":44,"tag":100,"props":34243,"children":34244},{"style":400},[34245],{"type":50,"value":427},{"type":44,"tag":100,"props":34247,"children":34248},{"style":113},[34249],{"type":50,"value":33349},{"type":44,"tag":100,"props":34251,"children":34252},{"style":400},[34253],{"type":50,"value":33354},{"type":44,"tag":100,"props":34255,"children":34256},{"style":113},[34257],{"type":50,"value":689},{"type":44,"tag":100,"props":34259,"children":34260},{"style":400},[34261],{"type":50,"value":9633},{"type":44,"tag":100,"props":34263,"children":34264},{"style":390},[34265],{"type":50,"value":408},{"type":44,"tag":100,"props":34267,"children":34268},{"style":400},[34269],{"type":50,"value":33432},{"type":44,"tag":100,"props":34271,"children":34272},{"class":102,"line":1484},[34273,34277,34281,34285,34289,34293,34297,34301,34305,34309,34313,34317,34321],{"type":44,"tag":100,"props":34274,"children":34275},{"style":400},[34276],{"type":50,"value":34166},{"type":44,"tag":100,"props":34278,"children":34279},{"style":113},[34280],{"type":50,"value":2478},{"type":44,"tag":100,"props":34282,"children":34283},{"style":400},[34284],{"type":50,"value":786},{"type":44,"tag":100,"props":34286,"children":34287},{"style":113},[34288],{"type":50,"value":33456},{"type":44,"tag":100,"props":34290,"children":34291},{"style":390},[34292],{"type":50,"value":1661},{"type":44,"tag":100,"props":34294,"children":34295},{"style":390},[34296],{"type":50,"value":33340},{"type":44,"tag":100,"props":34298,"children":34299},{"style":400},[34300],{"type":50,"value":427},{"type":44,"tag":100,"props":34302,"children":34303},{"style":113},[34304],{"type":50,"value":33349},{"type":44,"tag":100,"props":34306,"children":34307},{"style":400},[34308],{"type":50,"value":33354},{"type":44,"tag":100,"props":34310,"children":34311},{"style":113},[34312],{"type":50,"value":689},{"type":44,"tag":100,"props":34314,"children":34315},{"style":400},[34316],{"type":50,"value":9633},{"type":44,"tag":100,"props":34318,"children":34319},{"style":390},[34320],{"type":50,"value":408},{"type":44,"tag":100,"props":34322,"children":34323},{"style":400},[34324],{"type":50,"value":33493},{"type":44,"tag":100,"props":34326,"children":34327},{"class":102,"line":2747},[34328,34332,34336,34340,34344,34348,34352,34356,34360,34364,34368,34372,34376],{"type":44,"tag":100,"props":34329,"children":34330},{"style":400},[34331],{"type":50,"value":34166},{"type":44,"tag":100,"props":34333,"children":34334},{"style":113},[34335],{"type":50,"value":2478},{"type":44,"tag":100,"props":34337,"children":34338},{"style":400},[34339],{"type":50,"value":786},{"type":44,"tag":100,"props":34341,"children":34342},{"style":113},[34343],{"type":50,"value":33517},{"type":44,"tag":100,"props":34345,"children":34346},{"style":390},[34347],{"type":50,"value":1661},{"type":44,"tag":100,"props":34349,"children":34350},{"style":390},[34351],{"type":50,"value":33340},{"type":44,"tag":100,"props":34353,"children":34354},{"style":400},[34355],{"type":50,"value":427},{"type":44,"tag":100,"props":34357,"children":34358},{"style":113},[34359],{"type":50,"value":33349},{"type":44,"tag":100,"props":34361,"children":34362},{"style":400},[34363],{"type":50,"value":33354},{"type":44,"tag":100,"props":34365,"children":34366},{"style":113},[34367],{"type":50,"value":689},{"type":44,"tag":100,"props":34369,"children":34370},{"style":400},[34371],{"type":50,"value":9633},{"type":44,"tag":100,"props":34373,"children":34374},{"style":390},[34375],{"type":50,"value":408},{"type":44,"tag":100,"props":34377,"children":34378},{"style":400},[34379],{"type":50,"value":33554},{"type":44,"tag":100,"props":34381,"children":34382},{"class":102,"line":2769},[34383,34387,34391,34395],{"type":44,"tag":100,"props":34384,"children":34385},{"style":113},[34386],{"type":50,"value":33176},{"type":44,"tag":100,"props":34388,"children":34389},{"style":400},[34390],{"type":50,"value":786},{"type":44,"tag":100,"props":34392,"children":34393},{"style":113},[34394],{"type":50,"value":33570},{"type":44,"tag":100,"props":34396,"children":34397},{"style":400},[34398],{"type":50,"value":2431},{"type":44,"tag":100,"props":34400,"children":34401},{"class":102,"line":2791},[34402,34406,34410,34414],{"type":44,"tag":100,"props":34403,"children":34404},{"style":113},[34405],{"type":50,"value":33176},{"type":44,"tag":100,"props":34407,"children":34408},{"style":400},[34409],{"type":50,"value":786},{"type":44,"tag":100,"props":34411,"children":34412},{"style":113},[34413],{"type":50,"value":33590},{"type":44,"tag":100,"props":34415,"children":34416},{"style":400},[34417],{"type":50,"value":2431},{"type":44,"tag":100,"props":34419,"children":34420},{"class":102,"line":2856},[34421,34425,34429,34433],{"type":44,"tag":100,"props":34422,"children":34423},{"style":113},[34424],{"type":50,"value":33176},{"type":44,"tag":100,"props":34426,"children":34427},{"style":400},[34428],{"type":50,"value":786},{"type":44,"tag":100,"props":34430,"children":34431},{"style":113},[34432],{"type":50,"value":33610},{"type":44,"tag":100,"props":34434,"children":34435},{"style":400},[34436],{"type":50,"value":2431},{"type":44,"tag":100,"props":34438,"children":34439},{"class":102,"line":2898},[34440,34444,34448,34452,34456,34460,34464,34468,34472],{"type":44,"tag":100,"props":34441,"children":34442},{"style":113},[34443],{"type":50,"value":33622},{"type":44,"tag":100,"props":34445,"children":34446},{"style":400},[34447],{"type":50,"value":786},{"type":44,"tag":100,"props":34449,"children":34450},{"style":113},[34451],{"type":50,"value":33631},{"type":44,"tag":100,"props":34453,"children":34454},{"style":390},[34455],{"type":50,"value":6319},{"type":44,"tag":100,"props":34457,"children":34458},{"style":113},[34459],{"type":50,"value":745},{"type":44,"tag":100,"props":34461,"children":34462},{"style":400},[34463],{"type":50,"value":786},{"type":44,"tag":100,"props":34465,"children":34466},{"style":113},[34467],{"type":50,"value":679},{"type":44,"tag":100,"props":34469,"children":34470},{"style":390},[34471],{"type":50,"value":1661},{"type":44,"tag":100,"props":34473,"children":34474},{"style":400},[34475],{"type":50,"value":33656},{"type":44,"tag":100,"props":34477,"children":34478},{"class":102,"line":2977},[34479,34483,34487,34491,34495],{"type":44,"tag":100,"props":34480,"children":34481},{"style":113},[34482],{"type":50,"value":33622},{"type":44,"tag":100,"props":34484,"children":34485},{"style":400},[34486],{"type":50,"value":786},{"type":44,"tag":100,"props":34488,"children":34489},{"style":113},[34490],{"type":50,"value":33672},{"type":44,"tag":100,"props":34492,"children":34493},{"style":390},[34494],{"type":50,"value":1661},{"type":44,"tag":100,"props":34496,"children":34497},{"style":400},[34498],{"type":50,"value":33681},{"type":44,"tag":100,"props":34500,"children":34501},{"class":102,"line":3015},[34502,34506,34510,34514,34518],{"type":44,"tag":100,"props":34503,"children":34504},{"style":113},[34505],{"type":50,"value":33622},{"type":44,"tag":100,"props":34507,"children":34508},{"style":400},[34509],{"type":50,"value":786},{"type":44,"tag":100,"props":34511,"children":34512},{"style":113},[34513],{"type":50,"value":33697},{"type":44,"tag":100,"props":34515,"children":34516},{"style":390},[34517],{"type":50,"value":1661},{"type":44,"tag":100,"props":34519,"children":34520},{"style":400},[34521],{"type":50,"value":33706},{"type":44,"tag":100,"props":34523,"children":34524},{"class":102,"line":3081},[34525,34529,34533,34537,34541],{"type":44,"tag":100,"props":34526,"children":34527},{"style":390},[34528],{"type":50,"value":776},{"type":44,"tag":100,"props":34530,"children":34531},{"style":113},[34532],{"type":50,"value":33718},{"type":44,"tag":100,"props":34534,"children":34535},{"style":400},[34536],{"type":50,"value":786},{"type":44,"tag":100,"props":34538,"children":34539},{"style":113},[34540],{"type":50,"value":33727},{"type":44,"tag":100,"props":34542,"children":34543},{"style":400},[34544],{"type":50,"value":1413},{"type":44,"tag":100,"props":34546,"children":34547},{"class":102,"line":3094},[34548,34552,34556,34560,34564],{"type":44,"tag":100,"props":34549,"children":34550},{"style":390},[34551],{"type":50,"value":6556},{"type":44,"tag":100,"props":34553,"children":34554},{"style":113},[34555],{"type":50,"value":33718},{"type":44,"tag":100,"props":34557,"children":34558},{"style":400},[34559],{"type":50,"value":786},{"type":44,"tag":100,"props":34561,"children":34562},{"style":113},[34563],{"type":50,"value":33751},{"type":44,"tag":100,"props":34565,"children":34566},{"style":400},[34567],{"type":50,"value":2566},{"type":44,"tag":100,"props":34569,"children":34570},{"class":102,"line":3108},[34571,34575,34579,34583,34587,34591,34595,34599],{"type":44,"tag":100,"props":34572,"children":34573},{"style":390},[34574],{"type":50,"value":3114},{"type":44,"tag":100,"props":34576,"children":34577},{"style":113},[34578],{"type":50,"value":1426},{"type":44,"tag":100,"props":34580,"children":34581},{"style":400},[34582],{"type":50,"value":786},{"type":44,"tag":100,"props":34584,"children":34585},{"style":113},[34586],{"type":50,"value":33230},{"type":44,"tag":100,"props":34588,"children":34589},{"style":390},[34590],{"type":50,"value":2591},{"type":44,"tag":100,"props":34592,"children":34593},{"style":113},[34594],{"type":50,"value":2596},{"type":44,"tag":100,"props":34596,"children":34597},{"style":400},[34598],{"type":50,"value":786},{"type":44,"tag":100,"props":34600,"children":34601},{"style":113},[34602],{"type":50,"value":33791},{"type":44,"tag":100,"props":34604,"children":34605},{"class":102,"line":3147},[34606,34610,34614,34618,34622,34626,34630,34634,34638,34642,34646,34650,34654,34658],{"type":44,"tag":100,"props":34607,"children":34608},{"style":390},[34609],{"type":50,"value":6607},{"type":44,"tag":100,"props":34611,"children":34612},{"style":390},[34613],{"type":50,"value":1476},{"type":44,"tag":100,"props":34615,"children":34616},{"style":400},[34617],{"type":50,"value":427},{"type":44,"tag":100,"props":34619,"children":34620},{"style":113},[34621],{"type":50,"value":2478},{"type":44,"tag":100,"props":34623,"children":34624},{"style":400},[34625],{"type":50,"value":786},{"type":44,"tag":100,"props":34627,"children":34628},{"style":113},[34629],{"type":50,"value":33255},{"type":44,"tag":100,"props":34631,"children":34632},{"style":400},[34633],{"type":50,"value":437},{"type":44,"tag":100,"props":34635,"children":34636},{"style":390},[34637],{"type":50,"value":460},{"type":44,"tag":100,"props":34639,"children":34640},{"style":390},[34641],{"type":50,"value":1476},{"type":44,"tag":100,"props":34643,"children":34644},{"style":400},[34645],{"type":50,"value":427},{"type":44,"tag":100,"props":34647,"children":34648},{"style":113},[34649],{"type":50,"value":2444},{"type":44,"tag":100,"props":34651,"children":34652},{"style":400},[34653],{"type":50,"value":786},{"type":44,"tag":100,"props":34655,"children":34656},{"style":113},[34657],{"type":50,"value":33839},{"type":44,"tag":100,"props":34659,"children":34660},{"style":400},[34661],{"type":50,"value":1464},{"type":44,"tag":100,"props":34663,"children":34664},{"class":102,"line":3188},[34665,34669,34673,34677,34682,34687,34692,34697,34702,34706,34710,34714],{"type":44,"tag":100,"props":34666,"children":34667},{"style":390},[34668],{"type":50,"value":1421},{"type":44,"tag":100,"props":34670,"children":34671},{"style":113},[34672],{"type":50,"value":1426},{"type":44,"tag":100,"props":34674,"children":34675},{"style":400},[34676],{"type":50,"value":786},{"type":44,"tag":100,"props":34678,"children":34679},{"style":113},[34680],{"type":50,"value":34681},"test",{"type":44,"tag":100,"props":34683,"children":34684},{"style":390},[34685],{"type":50,"value":34686}," IS",{"type":44,"tag":100,"props":34688,"children":34689},{"style":390},[34690],{"type":50,"value":34691}," NOT",{"type":44,"tag":100,"props":34693,"children":34694},{"style":400},[34695],{"type":50,"value":34696}," TRUE ",{"type":44,"tag":100,"props":34698,"children":34699},{"style":390},[34700],{"type":50,"value":34701},"AND",{"type":44,"tag":100,"props":34703,"children":34704},{"style":113},[34705],{"type":50,"value":1426},{"type":44,"tag":100,"props":34707,"children":34708},{"style":400},[34709],{"type":50,"value":786},{"type":44,"tag":100,"props":34711,"children":34712},{"style":113},[34713],{"type":50,"value":1435},{"type":44,"tag":100,"props":34715,"children":34716},{"style":390},[34717],{"type":50,"value":34718}," IS NOT NULL\n",{"type":44,"tag":100,"props":34720,"children":34721},{"class":102,"line":6054},[34722,34727,34732,34737,34742,34746,34751,34756,34760,34764,34768,34773,34777,34781,34786,34790,34794,34798],{"type":44,"tag":100,"props":34723,"children":34724},{"style":400},[34725],{"type":50,"value":34726},"QUALIFY ",{"type":44,"tag":100,"props":34728,"children":34729},{"style":113},[34730],{"type":50,"value":34731},"ROW_NUMBER",{"type":44,"tag":100,"props":34733,"children":34734},{"style":400},[34735],{"type":50,"value":34736},"() ",{"type":44,"tag":100,"props":34738,"children":34739},{"style":390},[34740],{"type":50,"value":34741},"OVER",{"type":44,"tag":100,"props":34743,"children":34744},{"style":400},[34745],{"type":50,"value":1445},{"type":44,"tag":100,"props":34747,"children":34748},{"style":390},[34749],{"type":50,"value":34750},"PARTITION",{"type":44,"tag":100,"props":34752,"children":34753},{"style":390},[34754],{"type":50,"value":34755}," BY",{"type":44,"tag":100,"props":34757,"children":34758},{"style":113},[34759],{"type":50,"value":1426},{"type":44,"tag":100,"props":34761,"children":34762},{"style":400},[34763],{"type":50,"value":786},{"type":44,"tag":100,"props":34765,"children":34766},{"style":113},[34767],{"type":50,"value":33185},{"type":44,"tag":100,"props":34769,"children":34770},{"style":390},[34771],{"type":50,"value":34772}," ORDER BY",{"type":44,"tag":100,"props":34774,"children":34775},{"style":113},[34776],{"type":50,"value":1426},{"type":44,"tag":100,"props":34778,"children":34779},{"style":400},[34780],{"type":50,"value":786},{"type":44,"tag":100,"props":34782,"children":34783},{"style":113},[34784],{"type":50,"value":34785},"updated_at",{"type":44,"tag":100,"props":34787,"children":34788},{"style":390},[34789],{"type":50,"value":6747},{"type":44,"tag":100,"props":34791,"children":34792},{"style":400},[34793],{"type":50,"value":437},{"type":44,"tag":100,"props":34795,"children":34796},{"style":390},[34797],{"type":50,"value":460},{"type":44,"tag":100,"props":34799,"children":34800},{"style":113},[34801],{"type":50,"value":34802}," 1\n",{"type":44,"tag":203,"props":34804,"children":34805},{"v-slot:snowflake":7},[34806],{"type":44,"tag":90,"props":34807,"children":34809},{"className":208,"code":34808,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_orders\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.shopify_orders\n  - raw.stripe_charges\ncolumns:\n  - name: order_id\n    type: varchar\n    checks:\n      - name: not_null\n      - name: unique\n  - name: order_date\n    type: timestamp\n    checks:\n      - name: not_null\ncustom_checks:\n  - name: has_rows\n    query: \"SELECT count(*) > 0 FROM staging.stg_orders\"\n    value: 1\n@bruin *\u002F\n\nSELECT\n    o.id AS order_id,\n    o.order_number,\n    o.email AS customer_email,\n    o.created_at AS order_date,\n    o.financial_status AS payment_status,\n    o.fulfillment_status,\n    CAST(o.total_price AS DECIMAL(12,2)) AS order_total,\n    CAST(o.subtotal_price AS DECIMAL(12,2)) AS subtotal,\n    CAST(o.total_tax AS DECIMAL(12,2)) AS tax_amount,\n    CAST(o.total_discounts AS DECIMAL(12,2)) AS discount_amount,\n    o.currency,\n    o.cancel_reason,\n    o.cancelled_at,\n    c.amount \u002F 100.0 AS stripe_charge_amount,\n    c.status AS stripe_status,\n    c.paid AS stripe_paid\nFROM raw.shopify_orders o\nLEFT JOIN raw.stripe_charges c\n    ON o.email = c.receipt_email\n    AND o.created_at::DATE = c.created::DATE\n",[34810],{"type":44,"tag":81,"props":34811,"children":34812},{"__ignoreMap":7},[34813,34820,34827,34834,34841,34848,34855,34862,34869,34876,34883,34890,34897,34904,34911,34918,34925,34932,34939,34946,34953,34960,34967,34974,34981,34988,35011,35030,35053,35076,35099,35118,35177,35236,35295,35354,35373,35392,35411,35450,35473,35496,35519,35542,35577],{"type":44,"tag":100,"props":34814,"children":34815},{"class":102,"line":103},[34816],{"type":44,"tag":100,"props":34817,"children":34818},{"style":220},[34819],{"type":50,"value":223},{"type":44,"tag":100,"props":34821,"children":34822},{"class":102,"line":226},[34823],{"type":44,"tag":100,"props":34824,"children":34825},{"style":220},[34826],{"type":50,"value":33002},{"type":44,"tag":100,"props":34828,"children":34829},{"class":102,"line":235},[34830],{"type":44,"tag":100,"props":34831,"children":34832},{"style":220},[34833],{"type":50,"value":241},{"type":44,"tag":100,"props":34835,"children":34836},{"class":102,"line":24},[34837],{"type":44,"tag":100,"props":34838,"children":34839},{"style":220},[34840],{"type":50,"value":249},{"type":44,"tag":100,"props":34842,"children":34843},{"class":102,"line":252},[34844],{"type":44,"tag":100,"props":34845,"children":34846},{"style":220},[34847],{"type":50,"value":258},{"type":44,"tag":100,"props":34849,"children":34850},{"class":102,"line":261},[34851],{"type":44,"tag":100,"props":34852,"children":34853},{"style":220},[34854],{"type":50,"value":267},{"type":44,"tag":100,"props":34856,"children":34857},{"class":102,"line":270},[34858],{"type":44,"tag":100,"props":34859,"children":34860},{"style":220},[34861],{"type":50,"value":33038},{"type":44,"tag":100,"props":34863,"children":34864},{"class":102,"line":279},[34865],{"type":44,"tag":100,"props":34866,"children":34867},{"style":220},[34868],{"type":50,"value":33046},{"type":44,"tag":100,"props":34870,"children":34871},{"class":102,"line":288},[34872],{"type":44,"tag":100,"props":34873,"children":34874},{"style":220},[34875],{"type":50,"value":285},{"type":44,"tag":100,"props":34877,"children":34878},{"class":102,"line":297},[34879],{"type":44,"tag":100,"props":34880,"children":34881},{"style":220},[34882],{"type":50,"value":33061},{"type":44,"tag":100,"props":34884,"children":34885},{"class":102,"line":306},[34886],{"type":44,"tag":100,"props":34887,"children":34888},{"style":220},[34889],{"type":50,"value":5225},{"type":44,"tag":100,"props":34891,"children":34892},{"class":102,"line":315},[34893],{"type":44,"tag":100,"props":34894,"children":34895},{"style":220},[34896],{"type":50,"value":312},{"type":44,"tag":100,"props":34898,"children":34899},{"class":102,"line":324},[34900],{"type":44,"tag":100,"props":34901,"children":34902},{"style":220},[34903],{"type":50,"value":321},{"type":44,"tag":100,"props":34905,"children":34906},{"class":102,"line":333},[34907],{"type":44,"tag":100,"props":34908,"children":34909},{"style":220},[34910],{"type":50,"value":330},{"type":44,"tag":100,"props":34912,"children":34913},{"class":102,"line":11},[34914],{"type":44,"tag":100,"props":34915,"children":34916},{"style":220},[34917],{"type":50,"value":294},{"type":44,"tag":100,"props":34919,"children":34920},{"class":102,"line":350},[34921],{"type":44,"tag":100,"props":34922,"children":34923},{"style":220},[34924],{"type":50,"value":33104},{"type":44,"tag":100,"props":34926,"children":34927},{"class":102,"line":359},[34928],{"type":44,"tag":100,"props":34929,"children":34930},{"style":220},[34931],{"type":50,"value":312},{"type":44,"tag":100,"props":34933,"children":34934},{"class":102,"line":368},[34935],{"type":44,"tag":100,"props":34936,"children":34937},{"style":220},[34938],{"type":50,"value":321},{"type":44,"tag":100,"props":34940,"children":34941},{"class":102,"line":377},[34942],{"type":44,"tag":100,"props":34943,"children":34944},{"style":220},[34945],{"type":50,"value":339},{"type":44,"tag":100,"props":34947,"children":34948},{"class":102,"line":386},[34949],{"type":44,"tag":100,"props":34950,"children":34951},{"style":220},[34952],{"type":50,"value":347},{"type":44,"tag":100,"props":34954,"children":34955},{"class":102,"line":396},[34956],{"type":44,"tag":100,"props":34957,"children":34958},{"style":220},[34959],{"type":50,"value":33140},{"type":44,"tag":100,"props":34961,"children":34962},{"class":102,"line":416},[34963],{"type":44,"tag":100,"props":34964,"children":34965},{"style":220},[34966],{"type":50,"value":365},{"type":44,"tag":100,"props":34968,"children":34969},{"class":102,"line":449},[34970],{"type":44,"tag":100,"props":34971,"children":34972},{"style":220},[34973],{"type":50,"value":374},{"type":44,"tag":100,"props":34975,"children":34976},{"class":102,"line":481},[34977],{"type":44,"tag":100,"props":34978,"children":34979},{"emptyLinePlaceholder":23},[34980],{"type":50,"value":383},{"type":44,"tag":100,"props":34982,"children":34983},{"class":102,"line":508},[34984],{"type":44,"tag":100,"props":34985,"children":34986},{"style":390},[34987],{"type":50,"value":393},{"type":44,"tag":100,"props":34989,"children":34990},{"class":102,"line":531},[34991,34995,34999,35003,35007],{"type":44,"tag":100,"props":34992,"children":34993},{"style":113},[34994],{"type":50,"value":33176},{"type":44,"tag":100,"props":34996,"children":34997},{"style":400},[34998],{"type":50,"value":786},{"type":44,"tag":100,"props":35000,"children":35001},{"style":113},[35002],{"type":50,"value":33185},{"type":44,"tag":100,"props":35004,"children":35005},{"style":390},[35006],{"type":50,"value":1661},{"type":44,"tag":100,"props":35008,"children":35009},{"style":400},[35010],{"type":50,"value":33194},{"type":44,"tag":100,"props":35012,"children":35013},{"class":102,"line":604},[35014,35018,35022,35026],{"type":44,"tag":100,"props":35015,"children":35016},{"style":113},[35017],{"type":50,"value":33176},{"type":44,"tag":100,"props":35019,"children":35020},{"style":400},[35021],{"type":50,"value":786},{"type":44,"tag":100,"props":35023,"children":35024},{"style":113},[35025],{"type":50,"value":33210},{"type":44,"tag":100,"props":35027,"children":35028},{"style":400},[35029],{"type":50,"value":2431},{"type":44,"tag":100,"props":35031,"children":35032},{"class":102,"line":626},[35033,35037,35041,35045,35049],{"type":44,"tag":100,"props":35034,"children":35035},{"style":113},[35036],{"type":50,"value":33176},{"type":44,"tag":100,"props":35038,"children":35039},{"style":400},[35040],{"type":50,"value":786},{"type":44,"tag":100,"props":35042,"children":35043},{"style":113},[35044],{"type":50,"value":33230},{"type":44,"tag":100,"props":35046,"children":35047},{"style":390},[35048],{"type":50,"value":1661},{"type":44,"tag":100,"props":35050,"children":35051},{"style":400},[35052],{"type":50,"value":33239},{"type":44,"tag":100,"props":35054,"children":35055},{"class":102,"line":648},[35056,35060,35064,35068,35072],{"type":44,"tag":100,"props":35057,"children":35058},{"style":113},[35059],{"type":50,"value":33176},{"type":44,"tag":100,"props":35061,"children":35062},{"style":400},[35063],{"type":50,"value":786},{"type":44,"tag":100,"props":35065,"children":35066},{"style":113},[35067],{"type":50,"value":33255},{"type":44,"tag":100,"props":35069,"children":35070},{"style":390},[35071],{"type":50,"value":1661},{"type":44,"tag":100,"props":35073,"children":35074},{"style":400},[35075],{"type":50,"value":413},{"type":44,"tag":100,"props":35077,"children":35078},{"class":102,"line":705},[35079,35083,35087,35091,35095],{"type":44,"tag":100,"props":35080,"children":35081},{"style":113},[35082],{"type":50,"value":33176},{"type":44,"tag":100,"props":35084,"children":35085},{"style":400},[35086],{"type":50,"value":786},{"type":44,"tag":100,"props":35088,"children":35089},{"style":113},[35090],{"type":50,"value":1435},{"type":44,"tag":100,"props":35092,"children":35093},{"style":390},[35094],{"type":50,"value":1661},{"type":44,"tag":100,"props":35096,"children":35097},{"style":400},[35098],{"type":50,"value":33287},{"type":44,"tag":100,"props":35100,"children":35101},{"class":102,"line":770},[35102,35106,35110,35114],{"type":44,"tag":100,"props":35103,"children":35104},{"style":113},[35105],{"type":50,"value":33176},{"type":44,"tag":100,"props":35107,"children":35108},{"style":400},[35109],{"type":50,"value":786},{"type":44,"tag":100,"props":35111,"children":35112},{"style":113},[35113],{"type":50,"value":33303},{"type":44,"tag":100,"props":35115,"children":35116},{"style":400},[35117],{"type":50,"value":2431},{"type":44,"tag":100,"props":35119,"children":35120},{"class":102,"line":794},[35121,35125,35129,35133,35137,35141,35145,35149,35153,35157,35161,35165,35169,35173],{"type":44,"tag":100,"props":35122,"children":35123},{"style":113},[35124],{"type":50,"value":33315},{"type":44,"tag":100,"props":35126,"children":35127},{"style":400},[35128],{"type":50,"value":427},{"type":44,"tag":100,"props":35130,"children":35131},{"style":113},[35132],{"type":50,"value":2478},{"type":44,"tag":100,"props":35134,"children":35135},{"style":400},[35136],{"type":50,"value":786},{"type":44,"tag":100,"props":35138,"children":35139},{"style":113},[35140],{"type":50,"value":28991},{"type":44,"tag":100,"props":35142,"children":35143},{"style":390},[35144],{"type":50,"value":1661},{"type":44,"tag":100,"props":35146,"children":35147},{"style":390},[35148],{"type":50,"value":33340},{"type":44,"tag":100,"props":35150,"children":35151},{"style":400},[35152],{"type":50,"value":427},{"type":44,"tag":100,"props":35154,"children":35155},{"style":113},[35156],{"type":50,"value":33349},{"type":44,"tag":100,"props":35158,"children":35159},{"style":400},[35160],{"type":50,"value":33354},{"type":44,"tag":100,"props":35162,"children":35163},{"style":113},[35164],{"type":50,"value":689},{"type":44,"tag":100,"props":35166,"children":35167},{"style":400},[35168],{"type":50,"value":9633},{"type":44,"tag":100,"props":35170,"children":35171},{"style":390},[35172],{"type":50,"value":408},{"type":44,"tag":100,"props":35174,"children":35175},{"style":400},[35176],{"type":50,"value":33371},{"type":44,"tag":100,"props":35178,"children":35179},{"class":102,"line":808},[35180,35184,35188,35192,35196,35200,35204,35208,35212,35216,35220,35224,35228,35232],{"type":44,"tag":100,"props":35181,"children":35182},{"style":113},[35183],{"type":50,"value":33315},{"type":44,"tag":100,"props":35185,"children":35186},{"style":400},[35187],{"type":50,"value":427},{"type":44,"tag":100,"props":35189,"children":35190},{"style":113},[35191],{"type":50,"value":2478},{"type":44,"tag":100,"props":35193,"children":35194},{"style":400},[35195],{"type":50,"value":786},{"type":44,"tag":100,"props":35197,"children":35198},{"style":113},[35199],{"type":50,"value":33395},{"type":44,"tag":100,"props":35201,"children":35202},{"style":390},[35203],{"type":50,"value":1661},{"type":44,"tag":100,"props":35205,"children":35206},{"style":390},[35207],{"type":50,"value":33340},{"type":44,"tag":100,"props":35209,"children":35210},{"style":400},[35211],{"type":50,"value":427},{"type":44,"tag":100,"props":35213,"children":35214},{"style":113},[35215],{"type":50,"value":33349},{"type":44,"tag":100,"props":35217,"children":35218},{"style":400},[35219],{"type":50,"value":33354},{"type":44,"tag":100,"props":35221,"children":35222},{"style":113},[35223],{"type":50,"value":689},{"type":44,"tag":100,"props":35225,"children":35226},{"style":400},[35227],{"type":50,"value":9633},{"type":44,"tag":100,"props":35229,"children":35230},{"style":390},[35231],{"type":50,"value":408},{"type":44,"tag":100,"props":35233,"children":35234},{"style":400},[35235],{"type":50,"value":33432},{"type":44,"tag":100,"props":35237,"children":35238},{"class":102,"line":1484},[35239,35243,35247,35251,35255,35259,35263,35267,35271,35275,35279,35283,35287,35291],{"type":44,"tag":100,"props":35240,"children":35241},{"style":113},[35242],{"type":50,"value":33315},{"type":44,"tag":100,"props":35244,"children":35245},{"style":400},[35246],{"type":50,"value":427},{"type":44,"tag":100,"props":35248,"children":35249},{"style":113},[35250],{"type":50,"value":2478},{"type":44,"tag":100,"props":35252,"children":35253},{"style":400},[35254],{"type":50,"value":786},{"type":44,"tag":100,"props":35256,"children":35257},{"style":113},[35258],{"type":50,"value":33456},{"type":44,"tag":100,"props":35260,"children":35261},{"style":390},[35262],{"type":50,"value":1661},{"type":44,"tag":100,"props":35264,"children":35265},{"style":390},[35266],{"type":50,"value":33340},{"type":44,"tag":100,"props":35268,"children":35269},{"style":400},[35270],{"type":50,"value":427},{"type":44,"tag":100,"props":35272,"children":35273},{"style":113},[35274],{"type":50,"value":33349},{"type":44,"tag":100,"props":35276,"children":35277},{"style":400},[35278],{"type":50,"value":33354},{"type":44,"tag":100,"props":35280,"children":35281},{"style":113},[35282],{"type":50,"value":689},{"type":44,"tag":100,"props":35284,"children":35285},{"style":400},[35286],{"type":50,"value":9633},{"type":44,"tag":100,"props":35288,"children":35289},{"style":390},[35290],{"type":50,"value":408},{"type":44,"tag":100,"props":35292,"children":35293},{"style":400},[35294],{"type":50,"value":33493},{"type":44,"tag":100,"props":35296,"children":35297},{"class":102,"line":2747},[35298,35302,35306,35310,35314,35318,35322,35326,35330,35334,35338,35342,35346,35350],{"type":44,"tag":100,"props":35299,"children":35300},{"style":113},[35301],{"type":50,"value":33315},{"type":44,"tag":100,"props":35303,"children":35304},{"style":400},[35305],{"type":50,"value":427},{"type":44,"tag":100,"props":35307,"children":35308},{"style":113},[35309],{"type":50,"value":2478},{"type":44,"tag":100,"props":35311,"children":35312},{"style":400},[35313],{"type":50,"value":786},{"type":44,"tag":100,"props":35315,"children":35316},{"style":113},[35317],{"type":50,"value":33517},{"type":44,"tag":100,"props":35319,"children":35320},{"style":390},[35321],{"type":50,"value":1661},{"type":44,"tag":100,"props":35323,"children":35324},{"style":390},[35325],{"type":50,"value":33340},{"type":44,"tag":100,"props":35327,"children":35328},{"style":400},[35329],{"type":50,"value":427},{"type":44,"tag":100,"props":35331,"children":35332},{"style":113},[35333],{"type":50,"value":33349},{"type":44,"tag":100,"props":35335,"children":35336},{"style":400},[35337],{"type":50,"value":33354},{"type":44,"tag":100,"props":35339,"children":35340},{"style":113},[35341],{"type":50,"value":689},{"type":44,"tag":100,"props":35343,"children":35344},{"style":400},[35345],{"type":50,"value":9633},{"type":44,"tag":100,"props":35347,"children":35348},{"style":390},[35349],{"type":50,"value":408},{"type":44,"tag":100,"props":35351,"children":35352},{"style":400},[35353],{"type":50,"value":33554},{"type":44,"tag":100,"props":35355,"children":35356},{"class":102,"line":2769},[35357,35361,35365,35369],{"type":44,"tag":100,"props":35358,"children":35359},{"style":113},[35360],{"type":50,"value":33176},{"type":44,"tag":100,"props":35362,"children":35363},{"style":400},[35364],{"type":50,"value":786},{"type":44,"tag":100,"props":35366,"children":35367},{"style":113},[35368],{"type":50,"value":33570},{"type":44,"tag":100,"props":35370,"children":35371},{"style":400},[35372],{"type":50,"value":2431},{"type":44,"tag":100,"props":35374,"children":35375},{"class":102,"line":2791},[35376,35380,35384,35388],{"type":44,"tag":100,"props":35377,"children":35378},{"style":113},[35379],{"type":50,"value":33176},{"type":44,"tag":100,"props":35381,"children":35382},{"style":400},[35383],{"type":50,"value":786},{"type":44,"tag":100,"props":35385,"children":35386},{"style":113},[35387],{"type":50,"value":33590},{"type":44,"tag":100,"props":35389,"children":35390},{"style":400},[35391],{"type":50,"value":2431},{"type":44,"tag":100,"props":35393,"children":35394},{"class":102,"line":2856},[35395,35399,35403,35407],{"type":44,"tag":100,"props":35396,"children":35397},{"style":113},[35398],{"type":50,"value":33176},{"type":44,"tag":100,"props":35400,"children":35401},{"style":400},[35402],{"type":50,"value":786},{"type":44,"tag":100,"props":35404,"children":35405},{"style":113},[35406],{"type":50,"value":33610},{"type":44,"tag":100,"props":35408,"children":35409},{"style":400},[35410],{"type":50,"value":2431},{"type":44,"tag":100,"props":35412,"children":35413},{"class":102,"line":2898},[35414,35418,35422,35426,35430,35434,35438,35442,35446],{"type":44,"tag":100,"props":35415,"children":35416},{"style":113},[35417],{"type":50,"value":33622},{"type":44,"tag":100,"props":35419,"children":35420},{"style":400},[35421],{"type":50,"value":786},{"type":44,"tag":100,"props":35423,"children":35424},{"style":113},[35425],{"type":50,"value":33631},{"type":44,"tag":100,"props":35427,"children":35428},{"style":390},[35429],{"type":50,"value":6319},{"type":44,"tag":100,"props":35431,"children":35432},{"style":113},[35433],{"type":50,"value":745},{"type":44,"tag":100,"props":35435,"children":35436},{"style":400},[35437],{"type":50,"value":786},{"type":44,"tag":100,"props":35439,"children":35440},{"style":113},[35441],{"type":50,"value":679},{"type":44,"tag":100,"props":35443,"children":35444},{"style":390},[35445],{"type":50,"value":1661},{"type":44,"tag":100,"props":35447,"children":35448},{"style":400},[35449],{"type":50,"value":33656},{"type":44,"tag":100,"props":35451,"children":35452},{"class":102,"line":2977},[35453,35457,35461,35465,35469],{"type":44,"tag":100,"props":35454,"children":35455},{"style":113},[35456],{"type":50,"value":33622},{"type":44,"tag":100,"props":35458,"children":35459},{"style":400},[35460],{"type":50,"value":786},{"type":44,"tag":100,"props":35462,"children":35463},{"style":113},[35464],{"type":50,"value":33672},{"type":44,"tag":100,"props":35466,"children":35467},{"style":390},[35468],{"type":50,"value":1661},{"type":44,"tag":100,"props":35470,"children":35471},{"style":400},[35472],{"type":50,"value":33681},{"type":44,"tag":100,"props":35474,"children":35475},{"class":102,"line":3015},[35476,35480,35484,35488,35492],{"type":44,"tag":100,"props":35477,"children":35478},{"style":113},[35479],{"type":50,"value":33622},{"type":44,"tag":100,"props":35481,"children":35482},{"style":400},[35483],{"type":50,"value":786},{"type":44,"tag":100,"props":35485,"children":35486},{"style":113},[35487],{"type":50,"value":33697},{"type":44,"tag":100,"props":35489,"children":35490},{"style":390},[35491],{"type":50,"value":1661},{"type":44,"tag":100,"props":35493,"children":35494},{"style":400},[35495],{"type":50,"value":33706},{"type":44,"tag":100,"props":35497,"children":35498},{"class":102,"line":3081},[35499,35503,35507,35511,35515],{"type":44,"tag":100,"props":35500,"children":35501},{"style":390},[35502],{"type":50,"value":776},{"type":44,"tag":100,"props":35504,"children":35505},{"style":113},[35506],{"type":50,"value":33718},{"type":44,"tag":100,"props":35508,"children":35509},{"style":400},[35510],{"type":50,"value":786},{"type":44,"tag":100,"props":35512,"children":35513},{"style":113},[35514],{"type":50,"value":33727},{"type":44,"tag":100,"props":35516,"children":35517},{"style":400},[35518],{"type":50,"value":1413},{"type":44,"tag":100,"props":35520,"children":35521},{"class":102,"line":3094},[35522,35526,35530,35534,35538],{"type":44,"tag":100,"props":35523,"children":35524},{"style":390},[35525],{"type":50,"value":6556},{"type":44,"tag":100,"props":35527,"children":35528},{"style":113},[35529],{"type":50,"value":33718},{"type":44,"tag":100,"props":35531,"children":35532},{"style":400},[35533],{"type":50,"value":786},{"type":44,"tag":100,"props":35535,"children":35536},{"style":113},[35537],{"type":50,"value":33751},{"type":44,"tag":100,"props":35539,"children":35540},{"style":400},[35541],{"type":50,"value":2566},{"type":44,"tag":100,"props":35543,"children":35544},{"class":102,"line":3108},[35545,35549,35553,35557,35561,35565,35569,35573],{"type":44,"tag":100,"props":35546,"children":35547},{"style":390},[35548],{"type":50,"value":3114},{"type":44,"tag":100,"props":35550,"children":35551},{"style":113},[35552],{"type":50,"value":1426},{"type":44,"tag":100,"props":35554,"children":35555},{"style":400},[35556],{"type":50,"value":786},{"type":44,"tag":100,"props":35558,"children":35559},{"style":113},[35560],{"type":50,"value":33230},{"type":44,"tag":100,"props":35562,"children":35563},{"style":390},[35564],{"type":50,"value":2591},{"type":44,"tag":100,"props":35566,"children":35567},{"style":113},[35568],{"type":50,"value":2596},{"type":44,"tag":100,"props":35570,"children":35571},{"style":400},[35572],{"type":50,"value":786},{"type":44,"tag":100,"props":35574,"children":35575},{"style":113},[35576],{"type":50,"value":33791},{"type":44,"tag":100,"props":35578,"children":35579},{"class":102,"line":3147},[35580,35584,35588,35592,35596,35600,35604,35608,35612,35616,35620,35624],{"type":44,"tag":100,"props":35581,"children":35582},{"style":390},[35583],{"type":50,"value":6607},{"type":44,"tag":100,"props":35585,"children":35586},{"style":113},[35587],{"type":50,"value":1426},{"type":44,"tag":100,"props":35589,"children":35590},{"style":400},[35591],{"type":50,"value":786},{"type":44,"tag":100,"props":35593,"children":35594},{"style":113},[35595],{"type":50,"value":33255},{"type":44,"tag":100,"props":35597,"children":35598},{"style":400},[35599],{"type":50,"value":12078},{"type":44,"tag":100,"props":35601,"children":35602},{"style":390},[35603],{"type":50,"value":1656},{"type":44,"tag":100,"props":35605,"children":35606},{"style":390},[35607],{"type":50,"value":2591},{"type":44,"tag":100,"props":35609,"children":35610},{"style":113},[35611],{"type":50,"value":2596},{"type":44,"tag":100,"props":35613,"children":35614},{"style":400},[35615],{"type":50,"value":786},{"type":44,"tag":100,"props":35617,"children":35618},{"style":113},[35619],{"type":50,"value":33839},{"type":44,"tag":100,"props":35621,"children":35622},{"style":400},[35623],{"type":50,"value":12078},{"type":44,"tag":100,"props":35625,"children":35626},{"style":390},[35627],{"type":50,"value":2216},{"type":44,"tag":53,"props":35629,"children":35630},{},[35631,35633,35638,35640,35646],{"type":50,"value":35632},"The ",{"type":44,"tag":81,"props":35634,"children":35636},{"className":35635},[],[35637],{"type":50,"value":6556},{"type":50,"value":35639}," keeps all Shopify orders even if the Stripe charge hasn't synced yet. The ",{"type":44,"tag":81,"props":35641,"children":35643},{"className":35642},[],[35644],{"type":50,"value":35645},"\u002F 100.0",{"type":50,"value":35647}," converts Stripe's cent-based amounts to dollars.",{"type":44,"tag":124,"props":35649,"children":35651},{"id":35650},"_2-staged-customers-stg_customerssql",[35652,35654],{"type":50,"value":35653},"2) Staged customers - ",{"type":44,"tag":81,"props":35655,"children":35657},{"className":35656},[],[35658],{"type":50,"value":35659},"stg_customers.sql",{"type":44,"tag":53,"props":35661,"children":35662},{},[35663,35665,35671,35672,35678,35679,35685,35686,35692],{"type":50,"value":35664},"A unified customer table that merges Shopify and Stripe profiles. This query uses ",{"type":44,"tag":81,"props":35666,"children":35668},{"className":35667},[],[35669],{"type":50,"value":35670},"COALESCE",{"type":50,"value":750},{"type":44,"tag":81,"props":35673,"children":35675},{"className":35674},[],[35676],{"type":50,"value":35677},"LEAST",{"type":50,"value":750},{"type":44,"tag":81,"props":35680,"children":35682},{"className":35681},[],[35683],{"type":50,"value":35684},"FULL OUTER JOIN",{"type":50,"value":26593},{"type":44,"tag":81,"props":35687,"children":35689},{"className":35688},[],[35690],{"type":50,"value":35691},"lower()",{"type":50,"value":35693}," - all of which work the same across warehouses, so there is no warehouse-specific variant needed.",{"type":44,"tag":5108,"props":35695,"children":35696},{"type":32876},[35697],{"type":44,"tag":53,"props":35698,"children":35699},{},[35700,35702,35708,35710,35716,35717,35721,35722,35727,35728,35733,35735,35740,35742,35748,35750,35755,35757,35762],{"type":50,"value":35701},"The SQL below joins ",{"type":44,"tag":81,"props":35703,"children":35705},{"className":35704},[],[35706],{"type":50,"value":35707},"raw.shopify_customers",{"type":50,"value":35709}," with ",{"type":44,"tag":81,"props":35711,"children":35713},{"className":35712},[],[35714],{"type":50,"value":35715},"raw.stripe_customers",{"type":50,"value":32905},{"type":44,"tag":185,"props":35718,"children":35719},{},[35720],{"type":50,"value":28974},{"type":50,"value":32911},{"type":44,"tag":81,"props":35723,"children":35725},{"className":35724},[],[35726],{"type":50,"value":35715},{"type":50,"value":32918},{"type":44,"tag":81,"props":35729,"children":35731},{"className":35730},[],[35732],{"type":50,"value":32903},{"type":50,"value":35734}," list, replace the ",{"type":44,"tag":81,"props":35736,"children":35738},{"className":35737},[],[35739],{"type":50,"value":35684},{"type":50,"value":35741}," with a plain ",{"type":44,"tag":81,"props":35743,"children":35745},{"className":35744},[],[35746],{"type":50,"value":35747},"SELECT",{"type":50,"value":35749}," from ",{"type":44,"tag":81,"props":35751,"children":35753},{"className":35752},[],[35754],{"type":50,"value":35707},{"type":50,"value":35756},", and drop the ",{"type":44,"tag":81,"props":35758,"children":35760},{"className":35759},[],[35761],{"type":50,"value":32938},{"type":50,"value":35763}," columns. Ask Claude Code to adjust the query for you if needed.",{"type":44,"tag":53,"props":35765,"children":35766},{},[35767,35768,35777],{"type":50,"value":183},{"type":44,"tag":185,"props":35769,"children":35770},{},[35771],{"type":44,"tag":81,"props":35772,"children":35774},{"className":35773},[],[35775],{"type":50,"value":35776},"ecommerce\u002Fassets\u002Fstaging\u002Fstg_customers.sql",{"type":50,"value":195},{"type":44,"tag":90,"props":35779,"children":35781},{"className":208,"code":35780,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_customers\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.shopify_customers\n  - raw.stripe_customers\ncolumns:\n  - name: customer_email\n    type: varchar\n    checks:\n      - name: not_null\n      - name: unique\n@bruin *\u002F\n\nSELECT\n    COALESCE(sc.email, st.email) AS customer_email,\n    sc.id AS shopify_customer_id,\n    st.id AS stripe_customer_id,\n    sc.first_name,\n    sc.last_name,\n    sc.created_at AS shopify_created_at,\n    st.created AS stripe_created_at,\n    LEAST(sc.created_at, st.created) AS first_seen_at,\n    sc.orders_count,\n    CAST(sc.total_spent AS DECIMAL(12,2)) AS shopify_total_spent,\n    sc.tags AS customer_tags,\n    sc.state AS customer_state\nFROM raw.shopify_customers sc\nFULL OUTER JOIN raw.stripe_customers st\n    ON lower(sc.email) = lower(st.email)\nWHERE COALESCE(sc.email, st.email) IS NOT NULL\n",[35782],{"type":44,"tag":81,"props":35783,"children":35784},{"__ignoreMap":7},[35785,35792,35800,35807,35814,35821,35828,35836,35844,35851,35859,35866,35873,35880,35887,35894,35901,35908,35962,35987,36012,36032,36052,36076,36100,36153,36173,36234,36259,36284,36309,36334,36394],{"type":44,"tag":100,"props":35786,"children":35787},{"class":102,"line":103},[35788],{"type":44,"tag":100,"props":35789,"children":35790},{"style":220},[35791],{"type":50,"value":223},{"type":44,"tag":100,"props":35793,"children":35794},{"class":102,"line":226},[35795],{"type":44,"tag":100,"props":35796,"children":35797},{"style":220},[35798],{"type":50,"value":35799},"name: staging.stg_customers\n",{"type":44,"tag":100,"props":35801,"children":35802},{"class":102,"line":235},[35803],{"type":44,"tag":100,"props":35804,"children":35805},{"style":220},[35806],{"type":50,"value":241},{"type":44,"tag":100,"props":35808,"children":35809},{"class":102,"line":24},[35810],{"type":44,"tag":100,"props":35811,"children":35812},{"style":220},[35813],{"type":50,"value":249},{"type":44,"tag":100,"props":35815,"children":35816},{"class":102,"line":252},[35817],{"type":44,"tag":100,"props":35818,"children":35819},{"style":220},[35820],{"type":50,"value":258},{"type":44,"tag":100,"props":35822,"children":35823},{"class":102,"line":261},[35824],{"type":44,"tag":100,"props":35825,"children":35826},{"style":220},[35827],{"type":50,"value":267},{"type":44,"tag":100,"props":35829,"children":35830},{"class":102,"line":270},[35831],{"type":44,"tag":100,"props":35832,"children":35833},{"style":220},[35834],{"type":50,"value":35835},"  - raw.shopify_customers\n",{"type":44,"tag":100,"props":35837,"children":35838},{"class":102,"line":279},[35839],{"type":44,"tag":100,"props":35840,"children":35841},{"style":220},[35842],{"type":50,"value":35843},"  - raw.stripe_customers\n",{"type":44,"tag":100,"props":35845,"children":35846},{"class":102,"line":288},[35847],{"type":44,"tag":100,"props":35848,"children":35849},{"style":220},[35850],{"type":50,"value":285},{"type":44,"tag":100,"props":35852,"children":35853},{"class":102,"line":297},[35854],{"type":44,"tag":100,"props":35855,"children":35856},{"style":220},[35857],{"type":50,"value":35858},"  - name: customer_email\n",{"type":44,"tag":100,"props":35860,"children":35861},{"class":102,"line":306},[35862],{"type":44,"tag":100,"props":35863,"children":35864},{"style":220},[35865],{"type":50,"value":5225},{"type":44,"tag":100,"props":35867,"children":35868},{"class":102,"line":315},[35869],{"type":44,"tag":100,"props":35870,"children":35871},{"style":220},[35872],{"type":50,"value":312},{"type":44,"tag":100,"props":35874,"children":35875},{"class":102,"line":324},[35876],{"type":44,"tag":100,"props":35877,"children":35878},{"style":220},[35879],{"type":50,"value":321},{"type":44,"tag":100,"props":35881,"children":35882},{"class":102,"line":333},[35883],{"type":44,"tag":100,"props":35884,"children":35885},{"style":220},[35886],{"type":50,"value":330},{"type":44,"tag":100,"props":35888,"children":35889},{"class":102,"line":11},[35890],{"type":44,"tag":100,"props":35891,"children":35892},{"style":220},[35893],{"type":50,"value":374},{"type":44,"tag":100,"props":35895,"children":35896},{"class":102,"line":350},[35897],{"type":44,"tag":100,"props":35898,"children":35899},{"emptyLinePlaceholder":23},[35900],{"type":50,"value":383},{"type":44,"tag":100,"props":35902,"children":35903},{"class":102,"line":359},[35904],{"type":44,"tag":100,"props":35905,"children":35906},{"style":390},[35907],{"type":50,"value":393},{"type":44,"tag":100,"props":35909,"children":35910},{"class":102,"line":368},[35911,35916,35920,35925,35929,35933,35937,35942,35946,35950,35954,35958],{"type":44,"tag":100,"props":35912,"children":35913},{"style":113},[35914],{"type":50,"value":35915},"    COALESCE",{"type":44,"tag":100,"props":35917,"children":35918},{"style":400},[35919],{"type":50,"value":427},{"type":44,"tag":100,"props":35921,"children":35922},{"style":113},[35923],{"type":50,"value":35924},"sc",{"type":44,"tag":100,"props":35926,"children":35927},{"style":400},[35928],{"type":50,"value":786},{"type":44,"tag":100,"props":35930,"children":35931},{"style":113},[35932],{"type":50,"value":33230},{"type":44,"tag":100,"props":35934,"children":35935},{"style":400},[35936],{"type":50,"value":750},{"type":44,"tag":100,"props":35938,"children":35939},{"style":113},[35940],{"type":50,"value":35941},"st",{"type":44,"tag":100,"props":35943,"children":35944},{"style":400},[35945],{"type":50,"value":786},{"type":44,"tag":100,"props":35947,"children":35948},{"style":113},[35949],{"type":50,"value":33230},{"type":44,"tag":100,"props":35951,"children":35952},{"style":400},[35953],{"type":50,"value":437},{"type":44,"tag":100,"props":35955,"children":35956},{"style":390},[35957],{"type":50,"value":408},{"type":44,"tag":100,"props":35959,"children":35960},{"style":400},[35961],{"type":50,"value":33239},{"type":44,"tag":100,"props":35963,"children":35964},{"class":102,"line":377},[35965,35970,35974,35978,35982],{"type":44,"tag":100,"props":35966,"children":35967},{"style":113},[35968],{"type":50,"value":35969},"    sc",{"type":44,"tag":100,"props":35971,"children":35972},{"style":400},[35973],{"type":50,"value":786},{"type":44,"tag":100,"props":35975,"children":35976},{"style":113},[35977],{"type":50,"value":33185},{"type":44,"tag":100,"props":35979,"children":35980},{"style":390},[35981],{"type":50,"value":1661},{"type":44,"tag":100,"props":35983,"children":35984},{"style":400},[35985],{"type":50,"value":35986}," shopify_customer_id,\n",{"type":44,"tag":100,"props":35988,"children":35989},{"class":102,"line":386},[35990,35995,35999,36003,36007],{"type":44,"tag":100,"props":35991,"children":35992},{"style":113},[35993],{"type":50,"value":35994},"    st",{"type":44,"tag":100,"props":35996,"children":35997},{"style":400},[35998],{"type":50,"value":786},{"type":44,"tag":100,"props":36000,"children":36001},{"style":113},[36002],{"type":50,"value":33185},{"type":44,"tag":100,"props":36004,"children":36005},{"style":390},[36006],{"type":50,"value":1661},{"type":44,"tag":100,"props":36008,"children":36009},{"style":400},[36010],{"type":50,"value":36011}," stripe_customer_id,\n",{"type":44,"tag":100,"props":36013,"children":36014},{"class":102,"line":396},[36015,36019,36023,36028],{"type":44,"tag":100,"props":36016,"children":36017},{"style":113},[36018],{"type":50,"value":35969},{"type":44,"tag":100,"props":36020,"children":36021},{"style":400},[36022],{"type":50,"value":786},{"type":44,"tag":100,"props":36024,"children":36025},{"style":113},[36026],{"type":50,"value":36027},"first_name",{"type":44,"tag":100,"props":36029,"children":36030},{"style":400},[36031],{"type":50,"value":2431},{"type":44,"tag":100,"props":36033,"children":36034},{"class":102,"line":416},[36035,36039,36043,36048],{"type":44,"tag":100,"props":36036,"children":36037},{"style":113},[36038],{"type":50,"value":35969},{"type":44,"tag":100,"props":36040,"children":36041},{"style":400},[36042],{"type":50,"value":786},{"type":44,"tag":100,"props":36044,"children":36045},{"style":113},[36046],{"type":50,"value":36047},"last_name",{"type":44,"tag":100,"props":36049,"children":36050},{"style":400},[36051],{"type":50,"value":2431},{"type":44,"tag":100,"props":36053,"children":36054},{"class":102,"line":449},[36055,36059,36063,36067,36071],{"type":44,"tag":100,"props":36056,"children":36057},{"style":113},[36058],{"type":50,"value":35969},{"type":44,"tag":100,"props":36060,"children":36061},{"style":400},[36062],{"type":50,"value":786},{"type":44,"tag":100,"props":36064,"children":36065},{"style":113},[36066],{"type":50,"value":33255},{"type":44,"tag":100,"props":36068,"children":36069},{"style":390},[36070],{"type":50,"value":1661},{"type":44,"tag":100,"props":36072,"children":36073},{"style":400},[36074],{"type":50,"value":36075}," shopify_created_at,\n",{"type":44,"tag":100,"props":36077,"children":36078},{"class":102,"line":481},[36079,36083,36087,36091,36095],{"type":44,"tag":100,"props":36080,"children":36081},{"style":113},[36082],{"type":50,"value":35994},{"type":44,"tag":100,"props":36084,"children":36085},{"style":400},[36086],{"type":50,"value":786},{"type":44,"tag":100,"props":36088,"children":36089},{"style":113},[36090],{"type":50,"value":33839},{"type":44,"tag":100,"props":36092,"children":36093},{"style":390},[36094],{"type":50,"value":1661},{"type":44,"tag":100,"props":36096,"children":36097},{"style":400},[36098],{"type":50,"value":36099}," stripe_created_at,\n",{"type":44,"tag":100,"props":36101,"children":36102},{"class":102,"line":508},[36103,36108,36112,36116,36120,36124,36128,36132,36136,36140,36144,36148],{"type":44,"tag":100,"props":36104,"children":36105},{"style":113},[36106],{"type":50,"value":36107},"    LEAST",{"type":44,"tag":100,"props":36109,"children":36110},{"style":400},[36111],{"type":50,"value":427},{"type":44,"tag":100,"props":36113,"children":36114},{"style":113},[36115],{"type":50,"value":35924},{"type":44,"tag":100,"props":36117,"children":36118},{"style":400},[36119],{"type":50,"value":786},{"type":44,"tag":100,"props":36121,"children":36122},{"style":113},[36123],{"type":50,"value":33255},{"type":44,"tag":100,"props":36125,"children":36126},{"style":400},[36127],{"type":50,"value":750},{"type":44,"tag":100,"props":36129,"children":36130},{"style":113},[36131],{"type":50,"value":35941},{"type":44,"tag":100,"props":36133,"children":36134},{"style":400},[36135],{"type":50,"value":786},{"type":44,"tag":100,"props":36137,"children":36138},{"style":113},[36139],{"type":50,"value":33839},{"type":44,"tag":100,"props":36141,"children":36142},{"style":400},[36143],{"type":50,"value":437},{"type":44,"tag":100,"props":36145,"children":36146},{"style":390},[36147],{"type":50,"value":408},{"type":44,"tag":100,"props":36149,"children":36150},{"style":400},[36151],{"type":50,"value":36152}," first_seen_at,\n",{"type":44,"tag":100,"props":36154,"children":36155},{"class":102,"line":531},[36156,36160,36164,36169],{"type":44,"tag":100,"props":36157,"children":36158},{"style":113},[36159],{"type":50,"value":35969},{"type":44,"tag":100,"props":36161,"children":36162},{"style":400},[36163],{"type":50,"value":786},{"type":44,"tag":100,"props":36165,"children":36166},{"style":113},[36167],{"type":50,"value":36168},"orders_count",{"type":44,"tag":100,"props":36170,"children":36171},{"style":400},[36172],{"type":50,"value":2431},{"type":44,"tag":100,"props":36174,"children":36175},{"class":102,"line":604},[36176,36180,36184,36188,36192,36197,36201,36205,36209,36213,36217,36221,36225,36229],{"type":44,"tag":100,"props":36177,"children":36178},{"style":113},[36179],{"type":50,"value":33315},{"type":44,"tag":100,"props":36181,"children":36182},{"style":400},[36183],{"type":50,"value":427},{"type":44,"tag":100,"props":36185,"children":36186},{"style":113},[36187],{"type":50,"value":35924},{"type":44,"tag":100,"props":36189,"children":36190},{"style":400},[36191],{"type":50,"value":786},{"type":44,"tag":100,"props":36193,"children":36194},{"style":113},[36195],{"type":50,"value":36196},"total_spent",{"type":44,"tag":100,"props":36198,"children":36199},{"style":390},[36200],{"type":50,"value":1661},{"type":44,"tag":100,"props":36202,"children":36203},{"style":390},[36204],{"type":50,"value":33340},{"type":44,"tag":100,"props":36206,"children":36207},{"style":400},[36208],{"type":50,"value":427},{"type":44,"tag":100,"props":36210,"children":36211},{"style":113},[36212],{"type":50,"value":33349},{"type":44,"tag":100,"props":36214,"children":36215},{"style":400},[36216],{"type":50,"value":33354},{"type":44,"tag":100,"props":36218,"children":36219},{"style":113},[36220],{"type":50,"value":689},{"type":44,"tag":100,"props":36222,"children":36223},{"style":400},[36224],{"type":50,"value":9633},{"type":44,"tag":100,"props":36226,"children":36227},{"style":390},[36228],{"type":50,"value":408},{"type":44,"tag":100,"props":36230,"children":36231},{"style":400},[36232],{"type":50,"value":36233}," shopify_total_spent,\n",{"type":44,"tag":100,"props":36235,"children":36236},{"class":102,"line":626},[36237,36241,36245,36250,36254],{"type":44,"tag":100,"props":36238,"children":36239},{"style":113},[36240],{"type":50,"value":35969},{"type":44,"tag":100,"props":36242,"children":36243},{"style":400},[36244],{"type":50,"value":786},{"type":44,"tag":100,"props":36246,"children":36247},{"style":113},[36248],{"type":50,"value":36249},"tags",{"type":44,"tag":100,"props":36251,"children":36252},{"style":390},[36253],{"type":50,"value":1661},{"type":44,"tag":100,"props":36255,"children":36256},{"style":400},[36257],{"type":50,"value":36258}," customer_tags,\n",{"type":44,"tag":100,"props":36260,"children":36261},{"class":102,"line":648},[36262,36266,36270,36275,36279],{"type":44,"tag":100,"props":36263,"children":36264},{"style":113},[36265],{"type":50,"value":35969},{"type":44,"tag":100,"props":36267,"children":36268},{"style":400},[36269],{"type":50,"value":786},{"type":44,"tag":100,"props":36271,"children":36272},{"style":113},[36273],{"type":50,"value":36274},"state",{"type":44,"tag":100,"props":36276,"children":36277},{"style":390},[36278],{"type":50,"value":1661},{"type":44,"tag":100,"props":36280,"children":36281},{"style":400},[36282],{"type":50,"value":36283}," customer_state\n",{"type":44,"tag":100,"props":36285,"children":36286},{"class":102,"line":705},[36287,36291,36295,36299,36304],{"type":44,"tag":100,"props":36288,"children":36289},{"style":390},[36290],{"type":50,"value":776},{"type":44,"tag":100,"props":36292,"children":36293},{"style":113},[36294],{"type":50,"value":33718},{"type":44,"tag":100,"props":36296,"children":36297},{"style":400},[36298],{"type":50,"value":786},{"type":44,"tag":100,"props":36300,"children":36301},{"style":113},[36302],{"type":50,"value":36303},"shopify_customers",{"type":44,"tag":100,"props":36305,"children":36306},{"style":400},[36307],{"type":50,"value":36308}," sc\n",{"type":44,"tag":100,"props":36310,"children":36311},{"class":102,"line":770},[36312,36316,36320,36324,36329],{"type":44,"tag":100,"props":36313,"children":36314},{"style":390},[36315],{"type":50,"value":35684},{"type":44,"tag":100,"props":36317,"children":36318},{"style":113},[36319],{"type":50,"value":33718},{"type":44,"tag":100,"props":36321,"children":36322},{"style":400},[36323],{"type":50,"value":786},{"type":44,"tag":100,"props":36325,"children":36326},{"style":113},[36327],{"type":50,"value":36328},"stripe_customers",{"type":44,"tag":100,"props":36330,"children":36331},{"style":400},[36332],{"type":50,"value":36333}," st\n",{"type":44,"tag":100,"props":36335,"children":36336},{"class":102,"line":794},[36337,36341,36346,36350,36354,36358,36362,36366,36370,36374,36378,36382,36386,36390],{"type":44,"tag":100,"props":36338,"children":36339},{"style":390},[36340],{"type":50,"value":3114},{"type":44,"tag":100,"props":36342,"children":36343},{"style":113},[36344],{"type":50,"value":36345}," lower",{"type":44,"tag":100,"props":36347,"children":36348},{"style":400},[36349],{"type":50,"value":427},{"type":44,"tag":100,"props":36351,"children":36352},{"style":113},[36353],{"type":50,"value":35924},{"type":44,"tag":100,"props":36355,"children":36356},{"style":400},[36357],{"type":50,"value":786},{"type":44,"tag":100,"props":36359,"children":36360},{"style":113},[36361],{"type":50,"value":33230},{"type":44,"tag":100,"props":36363,"children":36364},{"style":400},[36365],{"type":50,"value":437},{"type":44,"tag":100,"props":36367,"children":36368},{"style":390},[36369],{"type":50,"value":460},{"type":44,"tag":100,"props":36371,"children":36372},{"style":113},[36373],{"type":50,"value":36345},{"type":44,"tag":100,"props":36375,"children":36376},{"style":400},[36377],{"type":50,"value":427},{"type":44,"tag":100,"props":36379,"children":36380},{"style":113},[36381],{"type":50,"value":35941},{"type":44,"tag":100,"props":36383,"children":36384},{"style":400},[36385],{"type":50,"value":786},{"type":44,"tag":100,"props":36387,"children":36388},{"style":113},[36389],{"type":50,"value":33230},{"type":44,"tag":100,"props":36391,"children":36392},{"style":400},[36393],{"type":50,"value":1464},{"type":44,"tag":100,"props":36395,"children":36396},{"class":102,"line":808},[36397,36401,36406,36410,36414,36418,36422,36426,36430,36434,36438,36442],{"type":44,"tag":100,"props":36398,"children":36399},{"style":390},[36400],{"type":50,"value":1421},{"type":44,"tag":100,"props":36402,"children":36403},{"style":113},[36404],{"type":50,"value":36405}," COALESCE",{"type":44,"tag":100,"props":36407,"children":36408},{"style":400},[36409],{"type":50,"value":427},{"type":44,"tag":100,"props":36411,"children":36412},{"style":113},[36413],{"type":50,"value":35924},{"type":44,"tag":100,"props":36415,"children":36416},{"style":400},[36417],{"type":50,"value":786},{"type":44,"tag":100,"props":36419,"children":36420},{"style":113},[36421],{"type":50,"value":33230},{"type":44,"tag":100,"props":36423,"children":36424},{"style":400},[36425],{"type":50,"value":750},{"type":44,"tag":100,"props":36427,"children":36428},{"style":113},[36429],{"type":50,"value":35941},{"type":44,"tag":100,"props":36431,"children":36432},{"style":400},[36433],{"type":50,"value":786},{"type":44,"tag":100,"props":36435,"children":36436},{"style":113},[36437],{"type":50,"value":33230},{"type":44,"tag":100,"props":36439,"children":36440},{"style":400},[36441],{"type":50,"value":437},{"type":44,"tag":100,"props":36443,"children":36444},{"style":390},[36445],{"type":50,"value":36446},"IS NOT NULL\n",{"type":44,"tag":53,"props":36448,"children":36449},{},[36450,36451,36456,36458,36463],{"type":50,"value":35632},{"type":44,"tag":81,"props":36452,"children":36454},{"className":36453},[],[36455],{"type":50,"value":35684},{"type":50,"value":36457}," catches customers who only exist in one system. ",{"type":44,"tag":81,"props":36459,"children":36461},{"className":36460},[],[36462],{"type":50,"value":35670},{"type":50,"value":36464}," gives priority to Shopify's email since it's the primary ecommerce platform.",{"type":44,"tag":124,"props":36466,"children":36468},{"id":36467},"_3-staged-products-stg_productssql",[36469,36471],{"type":50,"value":36470},"3) Staged products - ",{"type":44,"tag":81,"props":36472,"children":36474},{"className":36473},[],[36475],{"type":50,"value":36476},"stg_products.sql",{"type":44,"tag":53,"props":36478,"children":36479},{},[36480,36482,36488,36489,36494],{"type":50,"value":36481},"A clean product catalog. This query uses only standard SQL (",{"type":44,"tag":81,"props":36483,"children":36485},{"className":36484},[],[36486],{"type":50,"value":36487},"CAST",{"type":50,"value":750},{"type":44,"tag":81,"props":36490,"children":36492},{"className":36491},[],[36493],{"type":50,"value":1421},{"type":50,"value":36495},"), so it works identically on every warehouse.",{"type":44,"tag":5108,"props":36497,"children":36499},{"type":36498},"info",[36500],{"type":44,"tag":53,"props":36501,"children":36502},{},[36503,36505,36510,36512,36517,36519,36524],{"type":50,"value":36504},"Shopify product IDs are in GID format (e.g. ",{"type":44,"tag":81,"props":36506,"children":36508},{"className":36507},[],[36509],{"type":50,"value":32816},{"type":50,"value":36511},"). Depending on how your Shopify data lands in the warehouse, the raw ",{"type":44,"tag":81,"props":36513,"children":36515},{"className":36514},[],[36516],{"type":50,"value":33185},{"type":50,"value":36518}," column may need parsing with ",{"type":44,"tag":81,"props":36520,"children":36522},{"className":36521},[],[36523],{"type":50,"value":32824},{"type":50,"value":36525}," to extract the numeric ID.",{"type":44,"tag":53,"props":36527,"children":36528},{},[36529,36530,36539],{"type":50,"value":183},{"type":44,"tag":185,"props":36531,"children":36532},{},[36533],{"type":44,"tag":81,"props":36534,"children":36536},{"className":36535},[],[36537],{"type":50,"value":36538},"ecommerce\u002Fassets\u002Fstaging\u002Fstg_products.sql",{"type":50,"value":195},{"type":44,"tag":90,"props":36541,"children":36543},{"className":208,"code":36542,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_products\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.shopify_products\ncolumns:\n  - name: product_id\n    type: varchar\n    checks:\n      - name: not_null\n      - name: unique\n@bruin *\u002F\n\nSELECT\n    id AS product_id,\n    title AS product_name,\n    product_type AS category,\n    vendor,\n    status AS product_status,\n    CAST(price AS DECIMAL(12,2)) AS price,  -- column name depends on how your Shopify data is structured; ask Claude Code to check raw.shopify_products\n    tags,\n    created_at,\n    updated_at\nFROM raw.shopify_products\nWHERE status = 'active'\n",[36544],{"type":44,"tag":81,"props":36545,"children":36546},{"__ignoreMap":7},[36547,36554,36562,36569,36576,36583,36590,36598,36605,36612,36619,36626,36633,36640,36647,36654,36661,36678,36695,36712,36719,36736,36790,36798,36805,36812,36832],{"type":44,"tag":100,"props":36548,"children":36549},{"class":102,"line":103},[36550],{"type":44,"tag":100,"props":36551,"children":36552},{"style":220},[36553],{"type":50,"value":223},{"type":44,"tag":100,"props":36555,"children":36556},{"class":102,"line":226},[36557],{"type":44,"tag":100,"props":36558,"children":36559},{"style":220},[36560],{"type":50,"value":36561},"name: staging.stg_products\n",{"type":44,"tag":100,"props":36563,"children":36564},{"class":102,"line":235},[36565],{"type":44,"tag":100,"props":36566,"children":36567},{"style":220},[36568],{"type":50,"value":241},{"type":44,"tag":100,"props":36570,"children":36571},{"class":102,"line":24},[36572],{"type":44,"tag":100,"props":36573,"children":36574},{"style":220},[36575],{"type":50,"value":249},{"type":44,"tag":100,"props":36577,"children":36578},{"class":102,"line":252},[36579],{"type":44,"tag":100,"props":36580,"children":36581},{"style":220},[36582],{"type":50,"value":258},{"type":44,"tag":100,"props":36584,"children":36585},{"class":102,"line":261},[36586],{"type":44,"tag":100,"props":36587,"children":36588},{"style":220},[36589],{"type":50,"value":267},{"type":44,"tag":100,"props":36591,"children":36592},{"class":102,"line":270},[36593],{"type":44,"tag":100,"props":36594,"children":36595},{"style":220},[36596],{"type":50,"value":36597},"  - raw.shopify_products\n",{"type":44,"tag":100,"props":36599,"children":36600},{"class":102,"line":279},[36601],{"type":44,"tag":100,"props":36602,"children":36603},{"style":220},[36604],{"type":50,"value":285},{"type":44,"tag":100,"props":36606,"children":36607},{"class":102,"line":288},[36608],{"type":44,"tag":100,"props":36609,"children":36610},{"style":220},[36611],{"type":50,"value":5217},{"type":44,"tag":100,"props":36613,"children":36614},{"class":102,"line":297},[36615],{"type":44,"tag":100,"props":36616,"children":36617},{"style":220},[36618],{"type":50,"value":5225},{"type":44,"tag":100,"props":36620,"children":36621},{"class":102,"line":306},[36622],{"type":44,"tag":100,"props":36623,"children":36624},{"style":220},[36625],{"type":50,"value":312},{"type":44,"tag":100,"props":36627,"children":36628},{"class":102,"line":315},[36629],{"type":44,"tag":100,"props":36630,"children":36631},{"style":220},[36632],{"type":50,"value":321},{"type":44,"tag":100,"props":36634,"children":36635},{"class":102,"line":324},[36636],{"type":44,"tag":100,"props":36637,"children":36638},{"style":220},[36639],{"type":50,"value":330},{"type":44,"tag":100,"props":36641,"children":36642},{"class":102,"line":333},[36643],{"type":44,"tag":100,"props":36644,"children":36645},{"style":220},[36646],{"type":50,"value":374},{"type":44,"tag":100,"props":36648,"children":36649},{"class":102,"line":11},[36650],{"type":44,"tag":100,"props":36651,"children":36652},{"emptyLinePlaceholder":23},[36653],{"type":50,"value":383},{"type":44,"tag":100,"props":36655,"children":36656},{"class":102,"line":350},[36657],{"type":44,"tag":100,"props":36658,"children":36659},{"style":390},[36660],{"type":50,"value":393},{"type":44,"tag":100,"props":36662,"children":36663},{"class":102,"line":359},[36664,36669,36673],{"type":44,"tag":100,"props":36665,"children":36666},{"style":400},[36667],{"type":50,"value":36668},"    id ",{"type":44,"tag":100,"props":36670,"children":36671},{"style":390},[36672],{"type":50,"value":408},{"type":44,"tag":100,"props":36674,"children":36675},{"style":400},[36676],{"type":50,"value":36677}," product_id,\n",{"type":44,"tag":100,"props":36679,"children":36680},{"class":102,"line":368},[36681,36686,36690],{"type":44,"tag":100,"props":36682,"children":36683},{"style":400},[36684],{"type":50,"value":36685},"    title ",{"type":44,"tag":100,"props":36687,"children":36688},{"style":390},[36689],{"type":50,"value":408},{"type":44,"tag":100,"props":36691,"children":36692},{"style":400},[36693],{"type":50,"value":36694}," product_name,\n",{"type":44,"tag":100,"props":36696,"children":36697},{"class":102,"line":377},[36698,36703,36707],{"type":44,"tag":100,"props":36699,"children":36700},{"style":400},[36701],{"type":50,"value":36702},"    product_type ",{"type":44,"tag":100,"props":36704,"children":36705},{"style":390},[36706],{"type":50,"value":408},{"type":44,"tag":100,"props":36708,"children":36709},{"style":400},[36710],{"type":50,"value":36711}," category,\n",{"type":44,"tag":100,"props":36713,"children":36714},{"class":102,"line":386},[36715],{"type":44,"tag":100,"props":36716,"children":36717},{"style":400},[36718],{"type":50,"value":5299},{"type":44,"tag":100,"props":36720,"children":36721},{"class":102,"line":396},[36722,36727,36731],{"type":44,"tag":100,"props":36723,"children":36724},{"style":390},[36725],{"type":50,"value":36726},"    status",{"type":44,"tag":100,"props":36728,"children":36729},{"style":390},[36730],{"type":50,"value":1661},{"type":44,"tag":100,"props":36732,"children":36733},{"style":400},[36734],{"type":50,"value":36735}," product_status,\n",{"type":44,"tag":100,"props":36737,"children":36738},{"class":102,"line":416},[36739,36743,36748,36752,36756,36760,36764,36768,36772,36776,36780,36785],{"type":44,"tag":100,"props":36740,"children":36741},{"style":113},[36742],{"type":50,"value":33315},{"type":44,"tag":100,"props":36744,"children":36745},{"style":400},[36746],{"type":50,"value":36747},"(price ",{"type":44,"tag":100,"props":36749,"children":36750},{"style":390},[36751],{"type":50,"value":408},{"type":44,"tag":100,"props":36753,"children":36754},{"style":390},[36755],{"type":50,"value":33340},{"type":44,"tag":100,"props":36757,"children":36758},{"style":400},[36759],{"type":50,"value":427},{"type":44,"tag":100,"props":36761,"children":36762},{"style":113},[36763],{"type":50,"value":33349},{"type":44,"tag":100,"props":36765,"children":36766},{"style":400},[36767],{"type":50,"value":33354},{"type":44,"tag":100,"props":36769,"children":36770},{"style":113},[36771],{"type":50,"value":689},{"type":44,"tag":100,"props":36773,"children":36774},{"style":400},[36775],{"type":50,"value":9633},{"type":44,"tag":100,"props":36777,"children":36778},{"style":390},[36779],{"type":50,"value":408},{"type":44,"tag":100,"props":36781,"children":36782},{"style":400},[36783],{"type":50,"value":36784}," price,  ",{"type":44,"tag":100,"props":36786,"children":36787},{"style":220},[36788],{"type":50,"value":36789},"-- column name depends on how your Shopify data is structured; ask Claude Code to check raw.shopify_products\n",{"type":44,"tag":100,"props":36791,"children":36792},{"class":102,"line":449},[36793],{"type":44,"tag":100,"props":36794,"children":36795},{"style":400},[36796],{"type":50,"value":36797},"    tags,\n",{"type":44,"tag":100,"props":36799,"children":36800},{"class":102,"line":481},[36801],{"type":44,"tag":100,"props":36802,"children":36803},{"style":400},[36804],{"type":50,"value":5323},{"type":44,"tag":100,"props":36806,"children":36807},{"class":102,"line":508},[36808],{"type":44,"tag":100,"props":36809,"children":36810},{"style":400},[36811],{"type":50,"value":5331},{"type":44,"tag":100,"props":36813,"children":36814},{"class":102,"line":531},[36815,36819,36823,36827],{"type":44,"tag":100,"props":36816,"children":36817},{"style":390},[36818],{"type":50,"value":776},{"type":44,"tag":100,"props":36820,"children":36821},{"style":113},[36822],{"type":50,"value":33718},{"type":44,"tag":100,"props":36824,"children":36825},{"style":400},[36826],{"type":50,"value":786},{"type":44,"tag":100,"props":36828,"children":36829},{"style":113},[36830],{"type":50,"value":36831},"shopify_products\n",{"type":44,"tag":100,"props":36833,"children":36834},{"class":102,"line":604},[36835,36839,36844,36848],{"type":44,"tag":100,"props":36836,"children":36837},{"style":390},[36838],{"type":50,"value":1421},{"type":44,"tag":100,"props":36840,"children":36841},{"style":390},[36842],{"type":50,"value":36843}," status",{"type":44,"tag":100,"props":36845,"children":36846},{"style":390},[36847],{"type":50,"value":2591},{"type":44,"tag":100,"props":36849,"children":36850},{"style":119},[36851],{"type":50,"value":36852}," 'active'\n",{"type":44,"tag":124,"props":36854,"children":36856},{"id":36855},"_4-staged-marketing-spend-stg_marketing_spendsql",[36857,36859],{"type":50,"value":36858},"4) Staged marketing spend - ",{"type":44,"tag":81,"props":36860,"children":36862},{"className":36861},[],[36863],{"type":50,"value":36864},"stg_marketing_spend.sql",{"type":44,"tag":53,"props":36866,"children":36867},{},[36868],{"type":50,"value":36869},"A unified marketing performance table that combines your ad platform and email marketing data into a common format. This query varies by warehouse (date functions), by marketing tool (email side), and by ads platform (ads side).",{"type":44,"tag":53,"props":36871,"children":36872},{},[36873,36874,36883],{"type":50,"value":183},{"type":44,"tag":185,"props":36875,"children":36876},{},[36877],{"type":44,"tag":81,"props":36878,"children":36880},{"className":36879},[],[36881],{"type":50,"value":36882},"ecommerce\u002Fassets\u002Fstaging\u002Fstg_marketing_spend.sql",{"type":50,"value":195},{"type":44,"tag":53,"props":36885,"children":36886},{},[36887,36889,36895,36897,36903,36904,36910],{"type":50,"value":36888},"The ads portion of this query depends on which ad platform you connected in Step 2. Each platform uses its own table name and date column, so select the tab that matches your ad platform. The date casting also differs by warehouse - adjust the ",{"type":44,"tag":81,"props":36890,"children":36892},{"className":36891},[],[36893],{"type":50,"value":36894},"toDate()",{"type":50,"value":36896}," \u002F ",{"type":44,"tag":81,"props":36898,"children":36900},{"className":36899},[],[36901],{"type":50,"value":36902},"DATE()",{"type":50,"value":36896},{"type":44,"tag":81,"props":36905,"children":36907},{"className":36906},[],[36908],{"type":50,"value":36909},"::DATE",{"type":50,"value":36911}," wrapper to match yours (see the warehouse tabs in the web sessions section below for examples).",{"type":44,"tag":28301,"props":36913,"children":36915},{"id":36914},"ads-portion",[36916],{"type":50,"value":36917},"Ads portion",{"type":44,"tag":197,"props":36919,"children":36920},{":variants":30566,"group":30567},[36921,37267,37606],{"type":44,"tag":203,"props":36922,"children":36923},{"v-slot:facebook-ads":7},[36924],{"type":44,"tag":90,"props":36925,"children":36927},{"className":208,"code":36926,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_marketing_spend\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.facebook_ad_insights\ncolumns:\n  - name: spend_date\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\n-- Facebook Ads spend\nSELECT\n    DATE(date_start) AS spend_date,       -- use toDate() for ClickHouse, ::DATE for Snowflake\n    'paid_ads' AS channel,\n    campaign_name,\n    CAST(spend AS DECIMAL(12,2)) AS spend,\n    CAST(impressions AS INTEGER) AS impressions,\n    CAST(clicks AS INTEGER) AS clicks,\n    CAST(conversions AS INTEGER) AS conversions\nFROM raw.facebook_ad_insights\n",[36928],{"type":44,"tag":81,"props":36929,"children":36930},{"__ignoreMap":7},[36931,36938,36946,36953,36960,36967,36974,36982,36989,36997,37004,37011,37018,37025,37032,37040,37047,37073,37090,37098,37147,37181,37214,37247],{"type":44,"tag":100,"props":36932,"children":36933},{"class":102,"line":103},[36934],{"type":44,"tag":100,"props":36935,"children":36936},{"style":220},[36937],{"type":50,"value":223},{"type":44,"tag":100,"props":36939,"children":36940},{"class":102,"line":226},[36941],{"type":44,"tag":100,"props":36942,"children":36943},{"style":220},[36944],{"type":50,"value":36945},"name: staging.stg_marketing_spend\n",{"type":44,"tag":100,"props":36947,"children":36948},{"class":102,"line":235},[36949],{"type":44,"tag":100,"props":36950,"children":36951},{"style":220},[36952],{"type":50,"value":241},{"type":44,"tag":100,"props":36954,"children":36955},{"class":102,"line":24},[36956],{"type":44,"tag":100,"props":36957,"children":36958},{"style":220},[36959],{"type":50,"value":249},{"type":44,"tag":100,"props":36961,"children":36962},{"class":102,"line":252},[36963],{"type":44,"tag":100,"props":36964,"children":36965},{"style":220},[36966],{"type":50,"value":258},{"type":44,"tag":100,"props":36968,"children":36969},{"class":102,"line":261},[36970],{"type":44,"tag":100,"props":36971,"children":36972},{"style":220},[36973],{"type":50,"value":267},{"type":44,"tag":100,"props":36975,"children":36976},{"class":102,"line":270},[36977],{"type":44,"tag":100,"props":36978,"children":36979},{"style":220},[36980],{"type":50,"value":36981},"  - raw.facebook_ad_insights\n",{"type":44,"tag":100,"props":36983,"children":36984},{"class":102,"line":279},[36985],{"type":44,"tag":100,"props":36986,"children":36987},{"style":220},[36988],{"type":50,"value":285},{"type":44,"tag":100,"props":36990,"children":36991},{"class":102,"line":288},[36992],{"type":44,"tag":100,"props":36993,"children":36994},{"style":220},[36995],{"type":50,"value":36996},"  - name: spend_date\n",{"type":44,"tag":100,"props":36998,"children":36999},{"class":102,"line":297},[37000],{"type":44,"tag":100,"props":37001,"children":37002},{"style":220},[37003],{"type":50,"value":303},{"type":44,"tag":100,"props":37005,"children":37006},{"class":102,"line":306},[37007],{"type":44,"tag":100,"props":37008,"children":37009},{"style":220},[37010],{"type":50,"value":312},{"type":44,"tag":100,"props":37012,"children":37013},{"class":102,"line":315},[37014],{"type":44,"tag":100,"props":37015,"children":37016},{"style":220},[37017],{"type":50,"value":321},{"type":44,"tag":100,"props":37019,"children":37020},{"class":102,"line":324},[37021],{"type":44,"tag":100,"props":37022,"children":37023},{"style":220},[37024],{"type":50,"value":374},{"type":44,"tag":100,"props":37026,"children":37027},{"class":102,"line":333},[37028],{"type":44,"tag":100,"props":37029,"children":37030},{"emptyLinePlaceholder":23},[37031],{"type":50,"value":383},{"type":44,"tag":100,"props":37033,"children":37034},{"class":102,"line":11},[37035],{"type":44,"tag":100,"props":37036,"children":37037},{"style":220},[37038],{"type":50,"value":37039},"-- Facebook Ads spend\n",{"type":44,"tag":100,"props":37041,"children":37042},{"class":102,"line":350},[37043],{"type":44,"tag":100,"props":37044,"children":37045},{"style":390},[37046],{"type":50,"value":393},{"type":44,"tag":100,"props":37048,"children":37049},{"class":102,"line":359},[37050,37054,37059,37063,37068],{"type":44,"tag":100,"props":37051,"children":37052},{"style":390},[37053],{"type":50,"value":977},{"type":44,"tag":100,"props":37055,"children":37056},{"style":400},[37057],{"type":50,"value":37058},"(date_start) ",{"type":44,"tag":100,"props":37060,"children":37061},{"style":390},[37062],{"type":50,"value":408},{"type":44,"tag":100,"props":37064,"children":37065},{"style":400},[37066],{"type":50,"value":37067}," spend_date,       ",{"type":44,"tag":100,"props":37069,"children":37070},{"style":220},[37071],{"type":50,"value":37072},"-- use toDate() for ClickHouse, ::DATE for Snowflake\n",{"type":44,"tag":100,"props":37074,"children":37075},{"class":102,"line":368},[37076,37081,37085],{"type":44,"tag":100,"props":37077,"children":37078},{"style":119},[37079],{"type":50,"value":37080},"    'paid_ads'",{"type":44,"tag":100,"props":37082,"children":37083},{"style":390},[37084],{"type":50,"value":1661},{"type":44,"tag":100,"props":37086,"children":37087},{"style":400},[37088],{"type":50,"value":37089}," channel,\n",{"type":44,"tag":100,"props":37091,"children":37092},{"class":102,"line":377},[37093],{"type":44,"tag":100,"props":37094,"children":37095},{"style":400},[37096],{"type":50,"value":37097},"    campaign_name,\n",{"type":44,"tag":100,"props":37099,"children":37100},{"class":102,"line":386},[37101,37105,37110,37114,37118,37122,37126,37130,37134,37138,37142],{"type":44,"tag":100,"props":37102,"children":37103},{"style":113},[37104],{"type":50,"value":33315},{"type":44,"tag":100,"props":37106,"children":37107},{"style":400},[37108],{"type":50,"value":37109},"(spend ",{"type":44,"tag":100,"props":37111,"children":37112},{"style":390},[37113],{"type":50,"value":408},{"type":44,"tag":100,"props":37115,"children":37116},{"style":390},[37117],{"type":50,"value":33340},{"type":44,"tag":100,"props":37119,"children":37120},{"style":400},[37121],{"type":50,"value":427},{"type":44,"tag":100,"props":37123,"children":37124},{"style":113},[37125],{"type":50,"value":33349},{"type":44,"tag":100,"props":37127,"children":37128},{"style":400},[37129],{"type":50,"value":33354},{"type":44,"tag":100,"props":37131,"children":37132},{"style":113},[37133],{"type":50,"value":689},{"type":44,"tag":100,"props":37135,"children":37136},{"style":400},[37137],{"type":50,"value":9633},{"type":44,"tag":100,"props":37139,"children":37140},{"style":390},[37141],{"type":50,"value":408},{"type":44,"tag":100,"props":37143,"children":37144},{"style":400},[37145],{"type":50,"value":37146}," spend,\n",{"type":44,"tag":100,"props":37148,"children":37149},{"class":102,"line":396},[37150,37154,37159,37163,37168,37172,37176],{"type":44,"tag":100,"props":37151,"children":37152},{"style":113},[37153],{"type":50,"value":33315},{"type":44,"tag":100,"props":37155,"children":37156},{"style":400},[37157],{"type":50,"value":37158},"(impressions ",{"type":44,"tag":100,"props":37160,"children":37161},{"style":390},[37162],{"type":50,"value":408},{"type":44,"tag":100,"props":37164,"children":37165},{"style":390},[37166],{"type":50,"value":37167}," INTEGER",{"type":44,"tag":100,"props":37169,"children":37170},{"style":400},[37171],{"type":50,"value":437},{"type":44,"tag":100,"props":37173,"children":37174},{"style":390},[37175],{"type":50,"value":408},{"type":44,"tag":100,"props":37177,"children":37178},{"style":400},[37179],{"type":50,"value":37180}," impressions,\n",{"type":44,"tag":100,"props":37182,"children":37183},{"class":102,"line":416},[37184,37188,37193,37197,37201,37205,37209],{"type":44,"tag":100,"props":37185,"children":37186},{"style":113},[37187],{"type":50,"value":33315},{"type":44,"tag":100,"props":37189,"children":37190},{"style":400},[37191],{"type":50,"value":37192},"(clicks ",{"type":44,"tag":100,"props":37194,"children":37195},{"style":390},[37196],{"type":50,"value":408},{"type":44,"tag":100,"props":37198,"children":37199},{"style":390},[37200],{"type":50,"value":37167},{"type":44,"tag":100,"props":37202,"children":37203},{"style":400},[37204],{"type":50,"value":437},{"type":44,"tag":100,"props":37206,"children":37207},{"style":390},[37208],{"type":50,"value":408},{"type":44,"tag":100,"props":37210,"children":37211},{"style":400},[37212],{"type":50,"value":37213}," clicks,\n",{"type":44,"tag":100,"props":37215,"children":37216},{"class":102,"line":449},[37217,37221,37226,37230,37234,37238,37242],{"type":44,"tag":100,"props":37218,"children":37219},{"style":113},[37220],{"type":50,"value":33315},{"type":44,"tag":100,"props":37222,"children":37223},{"style":400},[37224],{"type":50,"value":37225},"(conversions ",{"type":44,"tag":100,"props":37227,"children":37228},{"style":390},[37229],{"type":50,"value":408},{"type":44,"tag":100,"props":37231,"children":37232},{"style":390},[37233],{"type":50,"value":37167},{"type":44,"tag":100,"props":37235,"children":37236},{"style":400},[37237],{"type":50,"value":437},{"type":44,"tag":100,"props":37239,"children":37240},{"style":390},[37241],{"type":50,"value":408},{"type":44,"tag":100,"props":37243,"children":37244},{"style":400},[37245],{"type":50,"value":37246}," conversions\n",{"type":44,"tag":100,"props":37248,"children":37249},{"class":102,"line":481},[37250,37254,37258,37262],{"type":44,"tag":100,"props":37251,"children":37252},{"style":390},[37253],{"type":50,"value":776},{"type":44,"tag":100,"props":37255,"children":37256},{"style":113},[37257],{"type":50,"value":33718},{"type":44,"tag":100,"props":37259,"children":37260},{"style":400},[37261],{"type":50,"value":786},{"type":44,"tag":100,"props":37263,"children":37264},{"style":113},[37265],{"type":50,"value":37266},"facebook_ad_insights\n",{"type":44,"tag":203,"props":37268,"children":37269},{"v-slot:google-ads":7},[37270],{"type":44,"tag":90,"props":37271,"children":37273},{"className":208,"code":37272,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_marketing_spend\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.google_ad_insights\ncolumns:\n  - name: spend_date\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\n-- Google Ads spend\nSELECT\n    DATE(date) AS spend_date,             -- use toDate() for ClickHouse, ::DATE for Snowflake\n    'paid_ads' AS channel,\n    campaign_name,\n    CAST(spend AS DECIMAL(12,2)) AS spend,\n    CAST(impressions AS INTEGER) AS impressions,\n    CAST(clicks AS INTEGER) AS clicks,\n    CAST(conversions AS INTEGER) AS conversions\nFROM raw.google_ad_insights\n",[37274],{"type":44,"tag":81,"props":37275,"children":37276},{"__ignoreMap":7},[37277,37284,37291,37298,37305,37312,37319,37327,37334,37341,37348,37355,37362,37369,37376,37384,37391,37424,37439,37446,37493,37524,37555,37586],{"type":44,"tag":100,"props":37278,"children":37279},{"class":102,"line":103},[37280],{"type":44,"tag":100,"props":37281,"children":37282},{"style":220},[37283],{"type":50,"value":223},{"type":44,"tag":100,"props":37285,"children":37286},{"class":102,"line":226},[37287],{"type":44,"tag":100,"props":37288,"children":37289},{"style":220},[37290],{"type":50,"value":36945},{"type":44,"tag":100,"props":37292,"children":37293},{"class":102,"line":235},[37294],{"type":44,"tag":100,"props":37295,"children":37296},{"style":220},[37297],{"type":50,"value":241},{"type":44,"tag":100,"props":37299,"children":37300},{"class":102,"line":24},[37301],{"type":44,"tag":100,"props":37302,"children":37303},{"style":220},[37304],{"type":50,"value":249},{"type":44,"tag":100,"props":37306,"children":37307},{"class":102,"line":252},[37308],{"type":44,"tag":100,"props":37309,"children":37310},{"style":220},[37311],{"type":50,"value":258},{"type":44,"tag":100,"props":37313,"children":37314},{"class":102,"line":261},[37315],{"type":44,"tag":100,"props":37316,"children":37317},{"style":220},[37318],{"type":50,"value":267},{"type":44,"tag":100,"props":37320,"children":37321},{"class":102,"line":270},[37322],{"type":44,"tag":100,"props":37323,"children":37324},{"style":220},[37325],{"type":50,"value":37326},"  - raw.google_ad_insights\n",{"type":44,"tag":100,"props":37328,"children":37329},{"class":102,"line":279},[37330],{"type":44,"tag":100,"props":37331,"children":37332},{"style":220},[37333],{"type":50,"value":285},{"type":44,"tag":100,"props":37335,"children":37336},{"class":102,"line":288},[37337],{"type":44,"tag":100,"props":37338,"children":37339},{"style":220},[37340],{"type":50,"value":36996},{"type":44,"tag":100,"props":37342,"children":37343},{"class":102,"line":297},[37344],{"type":44,"tag":100,"props":37345,"children":37346},{"style":220},[37347],{"type":50,"value":303},{"type":44,"tag":100,"props":37349,"children":37350},{"class":102,"line":306},[37351],{"type":44,"tag":100,"props":37352,"children":37353},{"style":220},[37354],{"type":50,"value":312},{"type":44,"tag":100,"props":37356,"children":37357},{"class":102,"line":315},[37358],{"type":44,"tag":100,"props":37359,"children":37360},{"style":220},[37361],{"type":50,"value":321},{"type":44,"tag":100,"props":37363,"children":37364},{"class":102,"line":324},[37365],{"type":44,"tag":100,"props":37366,"children":37367},{"style":220},[37368],{"type":50,"value":374},{"type":44,"tag":100,"props":37370,"children":37371},{"class":102,"line":333},[37372],{"type":44,"tag":100,"props":37373,"children":37374},{"emptyLinePlaceholder":23},[37375],{"type":50,"value":383},{"type":44,"tag":100,"props":37377,"children":37378},{"class":102,"line":11},[37379],{"type":44,"tag":100,"props":37380,"children":37381},{"style":220},[37382],{"type":50,"value":37383},"-- Google Ads spend\n",{"type":44,"tag":100,"props":37385,"children":37386},{"class":102,"line":350},[37387],{"type":44,"tag":100,"props":37388,"children":37389},{"style":390},[37390],{"type":50,"value":393},{"type":44,"tag":100,"props":37392,"children":37393},{"class":102,"line":359},[37394,37398,37402,37407,37411,37415,37420],{"type":44,"tag":100,"props":37395,"children":37396},{"style":390},[37397],{"type":50,"value":977},{"type":44,"tag":100,"props":37399,"children":37400},{"style":400},[37401],{"type":50,"value":427},{"type":44,"tag":100,"props":37403,"children":37404},{"style":390},[37405],{"type":50,"value":37406},"date",{"type":44,"tag":100,"props":37408,"children":37409},{"style":400},[37410],{"type":50,"value":437},{"type":44,"tag":100,"props":37412,"children":37413},{"style":390},[37414],{"type":50,"value":408},{"type":44,"tag":100,"props":37416,"children":37417},{"style":400},[37418],{"type":50,"value":37419}," spend_date,             ",{"type":44,"tag":100,"props":37421,"children":37422},{"style":220},[37423],{"type":50,"value":37072},{"type":44,"tag":100,"props":37425,"children":37426},{"class":102,"line":368},[37427,37431,37435],{"type":44,"tag":100,"props":37428,"children":37429},{"style":119},[37430],{"type":50,"value":37080},{"type":44,"tag":100,"props":37432,"children":37433},{"style":390},[37434],{"type":50,"value":1661},{"type":44,"tag":100,"props":37436,"children":37437},{"style":400},[37438],{"type":50,"value":37089},{"type":44,"tag":100,"props":37440,"children":37441},{"class":102,"line":377},[37442],{"type":44,"tag":100,"props":37443,"children":37444},{"style":400},[37445],{"type":50,"value":37097},{"type":44,"tag":100,"props":37447,"children":37448},{"class":102,"line":386},[37449,37453,37457,37461,37465,37469,37473,37477,37481,37485,37489],{"type":44,"tag":100,"props":37450,"children":37451},{"style":113},[37452],{"type":50,"value":33315},{"type":44,"tag":100,"props":37454,"children":37455},{"style":400},[37456],{"type":50,"value":37109},{"type":44,"tag":100,"props":37458,"children":37459},{"style":390},[37460],{"type":50,"value":408},{"type":44,"tag":100,"props":37462,"children":37463},{"style":390},[37464],{"type":50,"value":33340},{"type":44,"tag":100,"props":37466,"children":37467},{"style":400},[37468],{"type":50,"value":427},{"type":44,"tag":100,"props":37470,"children":37471},{"style":113},[37472],{"type":50,"value":33349},{"type":44,"tag":100,"props":37474,"children":37475},{"style":400},[37476],{"type":50,"value":33354},{"type":44,"tag":100,"props":37478,"children":37479},{"style":113},[37480],{"type":50,"value":689},{"type":44,"tag":100,"props":37482,"children":37483},{"style":400},[37484],{"type":50,"value":9633},{"type":44,"tag":100,"props":37486,"children":37487},{"style":390},[37488],{"type":50,"value":408},{"type":44,"tag":100,"props":37490,"children":37491},{"style":400},[37492],{"type":50,"value":37146},{"type":44,"tag":100,"props":37494,"children":37495},{"class":102,"line":396},[37496,37500,37504,37508,37512,37516,37520],{"type":44,"tag":100,"props":37497,"children":37498},{"style":113},[37499],{"type":50,"value":33315},{"type":44,"tag":100,"props":37501,"children":37502},{"style":400},[37503],{"type":50,"value":37158},{"type":44,"tag":100,"props":37505,"children":37506},{"style":390},[37507],{"type":50,"value":408},{"type":44,"tag":100,"props":37509,"children":37510},{"style":390},[37511],{"type":50,"value":37167},{"type":44,"tag":100,"props":37513,"children":37514},{"style":400},[37515],{"type":50,"value":437},{"type":44,"tag":100,"props":37517,"children":37518},{"style":390},[37519],{"type":50,"value":408},{"type":44,"tag":100,"props":37521,"children":37522},{"style":400},[37523],{"type":50,"value":37180},{"type":44,"tag":100,"props":37525,"children":37526},{"class":102,"line":416},[37527,37531,37535,37539,37543,37547,37551],{"type":44,"tag":100,"props":37528,"children":37529},{"style":113},[37530],{"type":50,"value":33315},{"type":44,"tag":100,"props":37532,"children":37533},{"style":400},[37534],{"type":50,"value":37192},{"type":44,"tag":100,"props":37536,"children":37537},{"style":390},[37538],{"type":50,"value":408},{"type":44,"tag":100,"props":37540,"children":37541},{"style":390},[37542],{"type":50,"value":37167},{"type":44,"tag":100,"props":37544,"children":37545},{"style":400},[37546],{"type":50,"value":437},{"type":44,"tag":100,"props":37548,"children":37549},{"style":390},[37550],{"type":50,"value":408},{"type":44,"tag":100,"props":37552,"children":37553},{"style":400},[37554],{"type":50,"value":37213},{"type":44,"tag":100,"props":37556,"children":37557},{"class":102,"line":449},[37558,37562,37566,37570,37574,37578,37582],{"type":44,"tag":100,"props":37559,"children":37560},{"style":113},[37561],{"type":50,"value":33315},{"type":44,"tag":100,"props":37563,"children":37564},{"style":400},[37565],{"type":50,"value":37225},{"type":44,"tag":100,"props":37567,"children":37568},{"style":390},[37569],{"type":50,"value":408},{"type":44,"tag":100,"props":37571,"children":37572},{"style":390},[37573],{"type":50,"value":37167},{"type":44,"tag":100,"props":37575,"children":37576},{"style":400},[37577],{"type":50,"value":437},{"type":44,"tag":100,"props":37579,"children":37580},{"style":390},[37581],{"type":50,"value":408},{"type":44,"tag":100,"props":37583,"children":37584},{"style":400},[37585],{"type":50,"value":37246},{"type":44,"tag":100,"props":37587,"children":37588},{"class":102,"line":481},[37589,37593,37597,37601],{"type":44,"tag":100,"props":37590,"children":37591},{"style":390},[37592],{"type":50,"value":776},{"type":44,"tag":100,"props":37594,"children":37595},{"style":113},[37596],{"type":50,"value":33718},{"type":44,"tag":100,"props":37598,"children":37599},{"style":400},[37600],{"type":50,"value":786},{"type":44,"tag":100,"props":37602,"children":37603},{"style":113},[37604],{"type":50,"value":37605},"google_ad_insights\n",{"type":44,"tag":203,"props":37607,"children":37608},{"v-slot:tiktok-ads":7},[37609],{"type":44,"tag":90,"props":37610,"children":37612},{"className":208,"code":37611,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_marketing_spend\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.tiktok_ad_insights\ncolumns:\n  - name: spend_date\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\n-- TikTok Ads spend\nSELECT\n    DATE(stat_datetime) AS spend_date,    -- use toDate() for ClickHouse, ::DATE for Snowflake\n    'paid_ads' AS channel,\n    campaign_name,\n    CAST(spend AS DECIMAL(12,2)) AS spend,\n    CAST(impressions AS INTEGER) AS impressions,\n    CAST(clicks AS INTEGER) AS clicks,\n    CAST(conversions AS INTEGER) AS conversions\nFROM raw.tiktok_ad_insights\n",[37613],{"type":44,"tag":81,"props":37614,"children":37615},{"__ignoreMap":7},[37616,37623,37630,37637,37644,37651,37658,37666,37673,37680,37687,37694,37701,37708,37715,37723,37730,37755,37770,37777,37824,37855,37886,37917],{"type":44,"tag":100,"props":37617,"children":37618},{"class":102,"line":103},[37619],{"type":44,"tag":100,"props":37620,"children":37621},{"style":220},[37622],{"type":50,"value":223},{"type":44,"tag":100,"props":37624,"children":37625},{"class":102,"line":226},[37626],{"type":44,"tag":100,"props":37627,"children":37628},{"style":220},[37629],{"type":50,"value":36945},{"type":44,"tag":100,"props":37631,"children":37632},{"class":102,"line":235},[37633],{"type":44,"tag":100,"props":37634,"children":37635},{"style":220},[37636],{"type":50,"value":241},{"type":44,"tag":100,"props":37638,"children":37639},{"class":102,"line":24},[37640],{"type":44,"tag":100,"props":37641,"children":37642},{"style":220},[37643],{"type":50,"value":249},{"type":44,"tag":100,"props":37645,"children":37646},{"class":102,"line":252},[37647],{"type":44,"tag":100,"props":37648,"children":37649},{"style":220},[37650],{"type":50,"value":258},{"type":44,"tag":100,"props":37652,"children":37653},{"class":102,"line":261},[37654],{"type":44,"tag":100,"props":37655,"children":37656},{"style":220},[37657],{"type":50,"value":267},{"type":44,"tag":100,"props":37659,"children":37660},{"class":102,"line":270},[37661],{"type":44,"tag":100,"props":37662,"children":37663},{"style":220},[37664],{"type":50,"value":37665},"  - raw.tiktok_ad_insights\n",{"type":44,"tag":100,"props":37667,"children":37668},{"class":102,"line":279},[37669],{"type":44,"tag":100,"props":37670,"children":37671},{"style":220},[37672],{"type":50,"value":285},{"type":44,"tag":100,"props":37674,"children":37675},{"class":102,"line":288},[37676],{"type":44,"tag":100,"props":37677,"children":37678},{"style":220},[37679],{"type":50,"value":36996},{"type":44,"tag":100,"props":37681,"children":37682},{"class":102,"line":297},[37683],{"type":44,"tag":100,"props":37684,"children":37685},{"style":220},[37686],{"type":50,"value":303},{"type":44,"tag":100,"props":37688,"children":37689},{"class":102,"line":306},[37690],{"type":44,"tag":100,"props":37691,"children":37692},{"style":220},[37693],{"type":50,"value":312},{"type":44,"tag":100,"props":37695,"children":37696},{"class":102,"line":315},[37697],{"type":44,"tag":100,"props":37698,"children":37699},{"style":220},[37700],{"type":50,"value":321},{"type":44,"tag":100,"props":37702,"children":37703},{"class":102,"line":324},[37704],{"type":44,"tag":100,"props":37705,"children":37706},{"style":220},[37707],{"type":50,"value":374},{"type":44,"tag":100,"props":37709,"children":37710},{"class":102,"line":333},[37711],{"type":44,"tag":100,"props":37712,"children":37713},{"emptyLinePlaceholder":23},[37714],{"type":50,"value":383},{"type":44,"tag":100,"props":37716,"children":37717},{"class":102,"line":11},[37718],{"type":44,"tag":100,"props":37719,"children":37720},{"style":220},[37721],{"type":50,"value":37722},"-- TikTok Ads spend\n",{"type":44,"tag":100,"props":37724,"children":37725},{"class":102,"line":350},[37726],{"type":44,"tag":100,"props":37727,"children":37728},{"style":390},[37729],{"type":50,"value":393},{"type":44,"tag":100,"props":37731,"children":37732},{"class":102,"line":359},[37733,37737,37742,37746,37751],{"type":44,"tag":100,"props":37734,"children":37735},{"style":390},[37736],{"type":50,"value":977},{"type":44,"tag":100,"props":37738,"children":37739},{"style":400},[37740],{"type":50,"value":37741},"(stat_datetime) ",{"type":44,"tag":100,"props":37743,"children":37744},{"style":390},[37745],{"type":50,"value":408},{"type":44,"tag":100,"props":37747,"children":37748},{"style":400},[37749],{"type":50,"value":37750}," spend_date,    ",{"type":44,"tag":100,"props":37752,"children":37753},{"style":220},[37754],{"type":50,"value":37072},{"type":44,"tag":100,"props":37756,"children":37757},{"class":102,"line":368},[37758,37762,37766],{"type":44,"tag":100,"props":37759,"children":37760},{"style":119},[37761],{"type":50,"value":37080},{"type":44,"tag":100,"props":37763,"children":37764},{"style":390},[37765],{"type":50,"value":1661},{"type":44,"tag":100,"props":37767,"children":37768},{"style":400},[37769],{"type":50,"value":37089},{"type":44,"tag":100,"props":37771,"children":37772},{"class":102,"line":377},[37773],{"type":44,"tag":100,"props":37774,"children":37775},{"style":400},[37776],{"type":50,"value":37097},{"type":44,"tag":100,"props":37778,"children":37779},{"class":102,"line":386},[37780,37784,37788,37792,37796,37800,37804,37808,37812,37816,37820],{"type":44,"tag":100,"props":37781,"children":37782},{"style":113},[37783],{"type":50,"value":33315},{"type":44,"tag":100,"props":37785,"children":37786},{"style":400},[37787],{"type":50,"value":37109},{"type":44,"tag":100,"props":37789,"children":37790},{"style":390},[37791],{"type":50,"value":408},{"type":44,"tag":100,"props":37793,"children":37794},{"style":390},[37795],{"type":50,"value":33340},{"type":44,"tag":100,"props":37797,"children":37798},{"style":400},[37799],{"type":50,"value":427},{"type":44,"tag":100,"props":37801,"children":37802},{"style":113},[37803],{"type":50,"value":33349},{"type":44,"tag":100,"props":37805,"children":37806},{"style":400},[37807],{"type":50,"value":33354},{"type":44,"tag":100,"props":37809,"children":37810},{"style":113},[37811],{"type":50,"value":689},{"type":44,"tag":100,"props":37813,"children":37814},{"style":400},[37815],{"type":50,"value":9633},{"type":44,"tag":100,"props":37817,"children":37818},{"style":390},[37819],{"type":50,"value":408},{"type":44,"tag":100,"props":37821,"children":37822},{"style":400},[37823],{"type":50,"value":37146},{"type":44,"tag":100,"props":37825,"children":37826},{"class":102,"line":396},[37827,37831,37835,37839,37843,37847,37851],{"type":44,"tag":100,"props":37828,"children":37829},{"style":113},[37830],{"type":50,"value":33315},{"type":44,"tag":100,"props":37832,"children":37833},{"style":400},[37834],{"type":50,"value":37158},{"type":44,"tag":100,"props":37836,"children":37837},{"style":390},[37838],{"type":50,"value":408},{"type":44,"tag":100,"props":37840,"children":37841},{"style":390},[37842],{"type":50,"value":37167},{"type":44,"tag":100,"props":37844,"children":37845},{"style":400},[37846],{"type":50,"value":437},{"type":44,"tag":100,"props":37848,"children":37849},{"style":390},[37850],{"type":50,"value":408},{"type":44,"tag":100,"props":37852,"children":37853},{"style":400},[37854],{"type":50,"value":37180},{"type":44,"tag":100,"props":37856,"children":37857},{"class":102,"line":416},[37858,37862,37866,37870,37874,37878,37882],{"type":44,"tag":100,"props":37859,"children":37860},{"style":113},[37861],{"type":50,"value":33315},{"type":44,"tag":100,"props":37863,"children":37864},{"style":400},[37865],{"type":50,"value":37192},{"type":44,"tag":100,"props":37867,"children":37868},{"style":390},[37869],{"type":50,"value":408},{"type":44,"tag":100,"props":37871,"children":37872},{"style":390},[37873],{"type":50,"value":37167},{"type":44,"tag":100,"props":37875,"children":37876},{"style":400},[37877],{"type":50,"value":437},{"type":44,"tag":100,"props":37879,"children":37880},{"style":390},[37881],{"type":50,"value":408},{"type":44,"tag":100,"props":37883,"children":37884},{"style":400},[37885],{"type":50,"value":37213},{"type":44,"tag":100,"props":37887,"children":37888},{"class":102,"line":449},[37889,37893,37897,37901,37905,37909,37913],{"type":44,"tag":100,"props":37890,"children":37891},{"style":113},[37892],{"type":50,"value":33315},{"type":44,"tag":100,"props":37894,"children":37895},{"style":400},[37896],{"type":50,"value":37225},{"type":44,"tag":100,"props":37898,"children":37899},{"style":390},[37900],{"type":50,"value":408},{"type":44,"tag":100,"props":37902,"children":37903},{"style":390},[37904],{"type":50,"value":37167},{"type":44,"tag":100,"props":37906,"children":37907},{"style":400},[37908],{"type":50,"value":437},{"type":44,"tag":100,"props":37910,"children":37911},{"style":390},[37912],{"type":50,"value":408},{"type":44,"tag":100,"props":37914,"children":37915},{"style":400},[37916],{"type":50,"value":37246},{"type":44,"tag":100,"props":37918,"children":37919},{"class":102,"line":481},[37920,37924,37928,37932],{"type":44,"tag":100,"props":37921,"children":37922},{"style":390},[37923],{"type":50,"value":776},{"type":44,"tag":100,"props":37925,"children":37926},{"style":113},[37927],{"type":50,"value":33718},{"type":44,"tag":100,"props":37929,"children":37930},{"style":400},[37931],{"type":50,"value":786},{"type":44,"tag":100,"props":37933,"children":37934},{"style":113},[37935],{"type":50,"value":37936},"tiktok_ad_insights\n",{"type":44,"tag":28301,"props":37938,"children":37940},{"id":37939},"email-marketing-portion",[37941],{"type":50,"value":37942},"Email marketing portion",{"type":44,"tag":53,"props":37944,"children":37945},{},[37946,37948,37954],{"type":50,"value":37947},"The email side of the query uses ",{"type":44,"tag":81,"props":37949,"children":37951},{"className":37950},[],[37952],{"type":50,"value":37953},"UNION ALL",{"type":50,"value":37955}," to append email campaign data below the ads data. The columns and table names differ by email platform:",{"type":44,"tag":197,"props":37957,"children":37958},{":variants":29712,"group":29713},[37959,38305],{"type":44,"tag":203,"props":37960,"children":37961},{"v-slot:klaviyo":7},[37962,37973,38278],{"type":44,"tag":53,"props":37963,"children":37964},{},[37965,37967,37972],{"type":50,"value":37966},"Append this to the ads query above with ",{"type":44,"tag":81,"props":37968,"children":37970},{"className":37969},[],[37971],{"type":50,"value":37953},{"type":50,"value":195},{"type":44,"tag":90,"props":37974,"children":37976},{"className":208,"code":37975,"language":210,"meta":7,"style":7},"UNION ALL\n\n-- Klaviyo email campaigns (no direct spend, but track engagement)\nSELECT\n    send_time::date AS spend_date,   -- adjust cast for your warehouse\n    'email' AS channel,\n    name AS campaign_name,\n    0.00 AS spend,\n    num_recipients AS impressions,\n    CAST(click_count AS INTEGER) AS clicks,\n    CAST(conversion_count AS INTEGER) AS conversions\nFROM raw.klaviyo_campaigns kc\nLEFT JOIN raw.klaviyo_metrics km\n    ON kc.id = km.campaign_id\nWHERE send_time IS NOT NULL\n",[37977],{"type":44,"tag":81,"props":37978,"children":37979},{"__ignoreMap":7},[37980,37988,37995,38003,38010,38036,38052,38069,38094,38110,38142,38174,38199,38224,38262],{"type":44,"tag":100,"props":37981,"children":37982},{"class":102,"line":103},[37983],{"type":44,"tag":100,"props":37984,"children":37985},{"style":390},[37986],{"type":50,"value":37987},"UNION ALL\n",{"type":44,"tag":100,"props":37989,"children":37990},{"class":102,"line":226},[37991],{"type":44,"tag":100,"props":37992,"children":37993},{"emptyLinePlaceholder":23},[37994],{"type":50,"value":383},{"type":44,"tag":100,"props":37996,"children":37997},{"class":102,"line":235},[37998],{"type":44,"tag":100,"props":37999,"children":38000},{"style":220},[38001],{"type":50,"value":38002},"-- Klaviyo email campaigns (no direct spend, but track engagement)\n",{"type":44,"tag":100,"props":38004,"children":38005},{"class":102,"line":24},[38006],{"type":44,"tag":100,"props":38007,"children":38008},{"style":390},[38009],{"type":50,"value":393},{"type":44,"tag":100,"props":38011,"children":38012},{"class":102,"line":252},[38013,38018,38022,38026,38031],{"type":44,"tag":100,"props":38014,"children":38015},{"style":400},[38016],{"type":50,"value":38017},"    send_time::",{"type":44,"tag":100,"props":38019,"children":38020},{"style":390},[38021],{"type":50,"value":37406},{"type":44,"tag":100,"props":38023,"children":38024},{"style":390},[38025],{"type":50,"value":1661},{"type":44,"tag":100,"props":38027,"children":38028},{"style":400},[38029],{"type":50,"value":38030}," spend_date,   ",{"type":44,"tag":100,"props":38032,"children":38033},{"style":220},[38034],{"type":50,"value":38035},"-- adjust cast for your warehouse\n",{"type":44,"tag":100,"props":38037,"children":38038},{"class":102,"line":261},[38039,38044,38048],{"type":44,"tag":100,"props":38040,"children":38041},{"style":119},[38042],{"type":50,"value":38043},"    'email'",{"type":44,"tag":100,"props":38045,"children":38046},{"style":390},[38047],{"type":50,"value":1661},{"type":44,"tag":100,"props":38049,"children":38050},{"style":400},[38051],{"type":50,"value":37089},{"type":44,"tag":100,"props":38053,"children":38054},{"class":102,"line":270},[38055,38060,38064],{"type":44,"tag":100,"props":38056,"children":38057},{"style":390},[38058],{"type":50,"value":38059},"    name",{"type":44,"tag":100,"props":38061,"children":38062},{"style":390},[38063],{"type":50,"value":1661},{"type":44,"tag":100,"props":38065,"children":38066},{"style":400},[38067],{"type":50,"value":38068}," campaign_name,\n",{"type":44,"tag":100,"props":38070,"children":38071},{"class":102,"line":279},[38072,38077,38081,38086,38090],{"type":44,"tag":100,"props":38073,"children":38074},{"style":113},[38075],{"type":50,"value":38076},"    0",{"type":44,"tag":100,"props":38078,"children":38079},{"style":400},[38080],{"type":50,"value":786},{"type":44,"tag":100,"props":38082,"children":38083},{"style":113},[38084],{"type":50,"value":38085},"00",{"type":44,"tag":100,"props":38087,"children":38088},{"style":390},[38089],{"type":50,"value":1661},{"type":44,"tag":100,"props":38091,"children":38092},{"style":400},[38093],{"type":50,"value":37146},{"type":44,"tag":100,"props":38095,"children":38096},{"class":102,"line":288},[38097,38102,38106],{"type":44,"tag":100,"props":38098,"children":38099},{"style":400},[38100],{"type":50,"value":38101},"    num_recipients ",{"type":44,"tag":100,"props":38103,"children":38104},{"style":390},[38105],{"type":50,"value":408},{"type":44,"tag":100,"props":38107,"children":38108},{"style":400},[38109],{"type":50,"value":37180},{"type":44,"tag":100,"props":38111,"children":38112},{"class":102,"line":297},[38113,38117,38122,38126,38130,38134,38138],{"type":44,"tag":100,"props":38114,"children":38115},{"style":113},[38116],{"type":50,"value":33315},{"type":44,"tag":100,"props":38118,"children":38119},{"style":400},[38120],{"type":50,"value":38121},"(click_count ",{"type":44,"tag":100,"props":38123,"children":38124},{"style":390},[38125],{"type":50,"value":408},{"type":44,"tag":100,"props":38127,"children":38128},{"style":390},[38129],{"type":50,"value":37167},{"type":44,"tag":100,"props":38131,"children":38132},{"style":400},[38133],{"type":50,"value":437},{"type":44,"tag":100,"props":38135,"children":38136},{"style":390},[38137],{"type":50,"value":408},{"type":44,"tag":100,"props":38139,"children":38140},{"style":400},[38141],{"type":50,"value":37213},{"type":44,"tag":100,"props":38143,"children":38144},{"class":102,"line":306},[38145,38149,38154,38158,38162,38166,38170],{"type":44,"tag":100,"props":38146,"children":38147},{"style":113},[38148],{"type":50,"value":33315},{"type":44,"tag":100,"props":38150,"children":38151},{"style":400},[38152],{"type":50,"value":38153},"(conversion_count ",{"type":44,"tag":100,"props":38155,"children":38156},{"style":390},[38157],{"type":50,"value":408},{"type":44,"tag":100,"props":38159,"children":38160},{"style":390},[38161],{"type":50,"value":37167},{"type":44,"tag":100,"props":38163,"children":38164},{"style":400},[38165],{"type":50,"value":437},{"type":44,"tag":100,"props":38167,"children":38168},{"style":390},[38169],{"type":50,"value":408},{"type":44,"tag":100,"props":38171,"children":38172},{"style":400},[38173],{"type":50,"value":37246},{"type":44,"tag":100,"props":38175,"children":38176},{"class":102,"line":315},[38177,38181,38185,38189,38194],{"type":44,"tag":100,"props":38178,"children":38179},{"style":390},[38180],{"type":50,"value":776},{"type":44,"tag":100,"props":38182,"children":38183},{"style":113},[38184],{"type":50,"value":33718},{"type":44,"tag":100,"props":38186,"children":38187},{"style":400},[38188],{"type":50,"value":786},{"type":44,"tag":100,"props":38190,"children":38191},{"style":113},[38192],{"type":50,"value":38193},"klaviyo_campaigns",{"type":44,"tag":100,"props":38195,"children":38196},{"style":400},[38197],{"type":50,"value":38198}," kc\n",{"type":44,"tag":100,"props":38200,"children":38201},{"class":102,"line":324},[38202,38206,38210,38214,38219],{"type":44,"tag":100,"props":38203,"children":38204},{"style":390},[38205],{"type":50,"value":6556},{"type":44,"tag":100,"props":38207,"children":38208},{"style":113},[38209],{"type":50,"value":33718},{"type":44,"tag":100,"props":38211,"children":38212},{"style":400},[38213],{"type":50,"value":786},{"type":44,"tag":100,"props":38215,"children":38216},{"style":113},[38217],{"type":50,"value":38218},"klaviyo_metrics",{"type":44,"tag":100,"props":38220,"children":38221},{"style":400},[38222],{"type":50,"value":38223}," km\n",{"type":44,"tag":100,"props":38225,"children":38226},{"class":102,"line":333},[38227,38231,38236,38240,38244,38248,38253,38257],{"type":44,"tag":100,"props":38228,"children":38229},{"style":390},[38230],{"type":50,"value":3114},{"type":44,"tag":100,"props":38232,"children":38233},{"style":113},[38234],{"type":50,"value":38235}," kc",{"type":44,"tag":100,"props":38237,"children":38238},{"style":400},[38239],{"type":50,"value":786},{"type":44,"tag":100,"props":38241,"children":38242},{"style":113},[38243],{"type":50,"value":33185},{"type":44,"tag":100,"props":38245,"children":38246},{"style":390},[38247],{"type":50,"value":2591},{"type":44,"tag":100,"props":38249,"children":38250},{"style":113},[38251],{"type":50,"value":38252}," km",{"type":44,"tag":100,"props":38254,"children":38255},{"style":400},[38256],{"type":50,"value":786},{"type":44,"tag":100,"props":38258,"children":38259},{"style":113},[38260],{"type":50,"value":38261},"campaign_id\n",{"type":44,"tag":100,"props":38263,"children":38264},{"class":102,"line":11},[38265,38269,38274],{"type":44,"tag":100,"props":38266,"children":38267},{"style":390},[38268],{"type":50,"value":1421},{"type":44,"tag":100,"props":38270,"children":38271},{"style":400},[38272],{"type":50,"value":38273}," send_time ",{"type":44,"tag":100,"props":38275,"children":38276},{"style":390},[38277],{"type":50,"value":36446},{"type":44,"tag":53,"props":38279,"children":38280},{},[38281,38283,38289,38290,38296,38298,38303],{"type":50,"value":38282},"Add ",{"type":44,"tag":81,"props":38284,"children":38286},{"className":38285},[],[38287],{"type":50,"value":38288},"raw.klaviyo_campaigns",{"type":50,"value":32393},{"type":44,"tag":81,"props":38291,"children":38293},{"className":38292},[],[38294],{"type":50,"value":38295},"raw.klaviyo_metrics",{"type":50,"value":38297}," to the ",{"type":44,"tag":81,"props":38299,"children":38301},{"className":38300},[],[38302],{"type":50,"value":32903},{"type":50,"value":38304}," list in the Bruin asset header.",{"type":44,"tag":203,"props":38306,"children":38307},{"v-slot:hubspot":7},[38308,38318,38546],{"type":44,"tag":53,"props":38309,"children":38310},{},[38311,38312,38317],{"type":50,"value":37966},{"type":44,"tag":81,"props":38313,"children":38315},{"className":38314},[],[38316],{"type":50,"value":37953},{"type":50,"value":195},{"type":44,"tag":90,"props":38319,"children":38321},{"className":208,"code":38320,"language":210,"meta":7,"style":7},"UNION ALL\n\n-- HubSpot email campaigns (no direct spend, but track engagement)\nSELECT\n    updated_at::date AS spend_date,   -- adjust cast for your warehouse\n    'email' AS channel,\n    name AS campaign_name,\n    0.00 AS spend,\n    CAST(num_included AS INTEGER) AS impressions,\n    CAST(num_clicks AS INTEGER) AS clicks,\n    0 AS conversions\nFROM raw.hubspot_campaigns\nWHERE name IS NOT NULL\n",[38322],{"type":44,"tag":81,"props":38323,"children":38324},{"__ignoreMap":7},[38325,38332,38339,38347,38354,38378,38393,38408,38431,38463,38495,38510,38530],{"type":44,"tag":100,"props":38326,"children":38327},{"class":102,"line":103},[38328],{"type":44,"tag":100,"props":38329,"children":38330},{"style":390},[38331],{"type":50,"value":37987},{"type":44,"tag":100,"props":38333,"children":38334},{"class":102,"line":226},[38335],{"type":44,"tag":100,"props":38336,"children":38337},{"emptyLinePlaceholder":23},[38338],{"type":50,"value":383},{"type":44,"tag":100,"props":38340,"children":38341},{"class":102,"line":235},[38342],{"type":44,"tag":100,"props":38343,"children":38344},{"style":220},[38345],{"type":50,"value":38346},"-- HubSpot email campaigns (no direct spend, but track engagement)\n",{"type":44,"tag":100,"props":38348,"children":38349},{"class":102,"line":24},[38350],{"type":44,"tag":100,"props":38351,"children":38352},{"style":390},[38353],{"type":50,"value":393},{"type":44,"tag":100,"props":38355,"children":38356},{"class":102,"line":252},[38357,38362,38366,38370,38374],{"type":44,"tag":100,"props":38358,"children":38359},{"style":400},[38360],{"type":50,"value":38361},"    updated_at::",{"type":44,"tag":100,"props":38363,"children":38364},{"style":390},[38365],{"type":50,"value":37406},{"type":44,"tag":100,"props":38367,"children":38368},{"style":390},[38369],{"type":50,"value":1661},{"type":44,"tag":100,"props":38371,"children":38372},{"style":400},[38373],{"type":50,"value":38030},{"type":44,"tag":100,"props":38375,"children":38376},{"style":220},[38377],{"type":50,"value":38035},{"type":44,"tag":100,"props":38379,"children":38380},{"class":102,"line":261},[38381,38385,38389],{"type":44,"tag":100,"props":38382,"children":38383},{"style":119},[38384],{"type":50,"value":38043},{"type":44,"tag":100,"props":38386,"children":38387},{"style":390},[38388],{"type":50,"value":1661},{"type":44,"tag":100,"props":38390,"children":38391},{"style":400},[38392],{"type":50,"value":37089},{"type":44,"tag":100,"props":38394,"children":38395},{"class":102,"line":270},[38396,38400,38404],{"type":44,"tag":100,"props":38397,"children":38398},{"style":390},[38399],{"type":50,"value":38059},{"type":44,"tag":100,"props":38401,"children":38402},{"style":390},[38403],{"type":50,"value":1661},{"type":44,"tag":100,"props":38405,"children":38406},{"style":400},[38407],{"type":50,"value":38068},{"type":44,"tag":100,"props":38409,"children":38410},{"class":102,"line":279},[38411,38415,38419,38423,38427],{"type":44,"tag":100,"props":38412,"children":38413},{"style":113},[38414],{"type":50,"value":38076},{"type":44,"tag":100,"props":38416,"children":38417},{"style":400},[38418],{"type":50,"value":786},{"type":44,"tag":100,"props":38420,"children":38421},{"style":113},[38422],{"type":50,"value":38085},{"type":44,"tag":100,"props":38424,"children":38425},{"style":390},[38426],{"type":50,"value":1661},{"type":44,"tag":100,"props":38428,"children":38429},{"style":400},[38430],{"type":50,"value":37146},{"type":44,"tag":100,"props":38432,"children":38433},{"class":102,"line":288},[38434,38438,38443,38447,38451,38455,38459],{"type":44,"tag":100,"props":38435,"children":38436},{"style":113},[38437],{"type":50,"value":33315},{"type":44,"tag":100,"props":38439,"children":38440},{"style":400},[38441],{"type":50,"value":38442},"(num_included ",{"type":44,"tag":100,"props":38444,"children":38445},{"style":390},[38446],{"type":50,"value":408},{"type":44,"tag":100,"props":38448,"children":38449},{"style":390},[38450],{"type":50,"value":37167},{"type":44,"tag":100,"props":38452,"children":38453},{"style":400},[38454],{"type":50,"value":437},{"type":44,"tag":100,"props":38456,"children":38457},{"style":390},[38458],{"type":50,"value":408},{"type":44,"tag":100,"props":38460,"children":38461},{"style":400},[38462],{"type":50,"value":37180},{"type":44,"tag":100,"props":38464,"children":38465},{"class":102,"line":297},[38466,38470,38475,38479,38483,38487,38491],{"type":44,"tag":100,"props":38467,"children":38468},{"style":113},[38469],{"type":50,"value":33315},{"type":44,"tag":100,"props":38471,"children":38472},{"style":400},[38473],{"type":50,"value":38474},"(num_clicks ",{"type":44,"tag":100,"props":38476,"children":38477},{"style":390},[38478],{"type":50,"value":408},{"type":44,"tag":100,"props":38480,"children":38481},{"style":390},[38482],{"type":50,"value":37167},{"type":44,"tag":100,"props":38484,"children":38485},{"style":400},[38486],{"type":50,"value":437},{"type":44,"tag":100,"props":38488,"children":38489},{"style":390},[38490],{"type":50,"value":408},{"type":44,"tag":100,"props":38492,"children":38493},{"style":400},[38494],{"type":50,"value":37213},{"type":44,"tag":100,"props":38496,"children":38497},{"class":102,"line":306},[38498,38502,38506],{"type":44,"tag":100,"props":38499,"children":38500},{"style":113},[38501],{"type":50,"value":38076},{"type":44,"tag":100,"props":38503,"children":38504},{"style":390},[38505],{"type":50,"value":1661},{"type":44,"tag":100,"props":38507,"children":38508},{"style":400},[38509],{"type":50,"value":37246},{"type":44,"tag":100,"props":38511,"children":38512},{"class":102,"line":315},[38513,38517,38521,38525],{"type":44,"tag":100,"props":38514,"children":38515},{"style":390},[38516],{"type":50,"value":776},{"type":44,"tag":100,"props":38518,"children":38519},{"style":113},[38520],{"type":50,"value":33718},{"type":44,"tag":100,"props":38522,"children":38523},{"style":400},[38524],{"type":50,"value":786},{"type":44,"tag":100,"props":38526,"children":38527},{"style":113},[38528],{"type":50,"value":38529},"hubspot_campaigns\n",{"type":44,"tag":100,"props":38531,"children":38532},{"class":102,"line":324},[38533,38537,38542],{"type":44,"tag":100,"props":38534,"children":38535},{"style":390},[38536],{"type":50,"value":1421},{"type":44,"tag":100,"props":38538,"children":38539},{"style":390},[38540],{"type":50,"value":38541}," name",{"type":44,"tag":100,"props":38543,"children":38544},{"style":390},[38545],{"type":50,"value":34718},{"type":44,"tag":53,"props":38547,"children":38548},{},[38549,38550,38556,38557,38562],{"type":50,"value":38282},{"type":44,"tag":81,"props":38551,"children":38553},{"className":38552},[],[38554],{"type":50,"value":38555},"raw.hubspot_campaigns",{"type":50,"value":38297},{"type":44,"tag":81,"props":38558,"children":38560},{"className":38559},[],[38561],{"type":50,"value":32903},{"type":50,"value":38304},{"type":44,"tag":5108,"props":38564,"children":38565},{},[38566],{"type":44,"tag":53,"props":38567,"children":38568},{},[38569,38571,38577,38579,38584,38586,38591],{"type":50,"value":38570},"The email portion needs both the right source columns (Klaviyo vs HubSpot) and the right date cast for your warehouse. The ",{"type":44,"tag":81,"props":38572,"children":38574},{"className":38573},[],[38575],{"type":50,"value":38576},"::date",{"type":50,"value":38578}," cast above is Snowflake syntax - ClickHouse uses ",{"type":44,"tag":81,"props":38580,"children":38582},{"className":38581},[],[38583],{"type":50,"value":36894},{"type":50,"value":38585},", BigQuery uses ",{"type":44,"tag":81,"props":38587,"children":38589},{"className":38588},[],[38590],{"type":50,"value":36902},{"type":50,"value":38592},". Ask Claude Code to generate the combined SQL for your specific stack.",{"type":44,"tag":124,"props":38594,"children":38596},{"id":38595},"_5-staged-web-sessions-stg_web_sessionssql",[38597,38599],{"type":50,"value":38598},"5) Staged web sessions - ",{"type":44,"tag":81,"props":38600,"children":38602},{"className":38601},[],[38603],{"type":50,"value":38604},"stg_web_sessions.sql",{"type":44,"tag":53,"props":38606,"children":38607},{},[38608],{"type":50,"value":38609},"Clean session data with traffic source mapping. The column names differ depending on whether you use GA4 or Mixpanel, and the date functions differ by warehouse.",{"type":44,"tag":53,"props":38611,"children":38612},{},[38613,38614,38623],{"type":50,"value":183},{"type":44,"tag":185,"props":38615,"children":38616},{},[38617],{"type":44,"tag":81,"props":38618,"children":38620},{"className":38619},[],[38621],{"type":50,"value":38622},"ecommerce\u002Fassets\u002Fstaging\u002Fstg_web_sessions.sql",{"type":50,"value":195},{"type":44,"tag":28301,"props":38625,"children":38627},{"id":38626},"source-specific-columns",[38628],{"type":50,"value":38629},"Source-specific columns",{"type":44,"tag":53,"props":38631,"children":38632},{},[38633,38635,38641,38642,38648,38650,38656],{"type":50,"value":38634},"The raw table names differ by analytics tool. GA4 creates ",{"type":44,"tag":81,"props":38636,"children":38638},{"className":38637},[],[38639],{"type":50,"value":38640},"raw.ga4_sessions",{"type":50,"value":32393},{"type":44,"tag":81,"props":38643,"children":38645},{"className":38644},[],[38646],{"type":50,"value":38647},"raw.ga4_events",{"type":50,"value":38649},"; Mixpanel creates ",{"type":44,"tag":81,"props":38651,"children":38653},{"className":38652},[],[38654],{"type":50,"value":38655},"raw.mixpanel_events",{"type":50,"value":38657}," (no separate sessions table). Select the tab that matches your analytics tool:",{"type":44,"tag":197,"props":38659,"children":38660},{":variants":31589,"group":31590},[38661,39159],{"type":44,"tag":203,"props":38662,"children":38663},{"v-slot:ga4":7},[38664,38684],{"type":44,"tag":53,"props":38665,"children":38666},{},[38667,38669,38674,38676,38682],{"type":50,"value":38668},"GA4 gives you sessions and events as separate tables. The ",{"type":44,"tag":81,"props":38670,"children":38672},{"className":38671},[],[38673],{"type":50,"value":545},{"type":50,"value":38675}," statement maps GA4 traffic sources to the same channel names used in ",{"type":44,"tag":81,"props":38677,"children":38679},{"className":38678},[],[38680],{"type":50,"value":38681},"stg_marketing_spend",{"type":50,"value":38683},", so you can join them later for attribution.",{"type":44,"tag":90,"props":38685,"children":38687},{"className":208,"code":38686,"language":210,"meta":7,"style":7},"SELECT\n    s.date AS session_raw_date,       -- cast with your warehouse's date function\n    s.sessions AS total_sessions,\n    s.new_users,\n    s.engaged_sessions,\n    e.event_count AS purchase_events,\n    CASE\n        WHEN s.source = 'facebook' THEN 'paid_ads'\n        WHEN s.medium = 'email' THEN 'email'\n        WHEN s.medium = 'organic' THEN 'organic_search'\n        WHEN s.medium = 'cpc' THEN 'paid_search'\n        WHEN s.source = '(direct)' THEN 'direct'\n        ELSE 'other'\n    END AS channel\nFROM raw.ga4_sessions s\nLEFT JOIN raw.ga4_events e\n    ON s.date = e.date\n    AND e.event_name = 'purchase'\n",[38688],{"type":44,"tag":81,"props":38689,"children":38690},{"__ignoreMap":7},[38691,38698,38728,38752,38771,38791,38817,38825,38865,38903,38940,38977,39014,39027,39044,39069,39094,39130],{"type":44,"tag":100,"props":38692,"children":38693},{"class":102,"line":103},[38694],{"type":44,"tag":100,"props":38695,"children":38696},{"style":390},[38697],{"type":50,"value":393},{"type":44,"tag":100,"props":38699,"children":38700},{"class":102,"line":226},[38701,38706,38710,38714,38718,38723],{"type":44,"tag":100,"props":38702,"children":38703},{"style":113},[38704],{"type":50,"value":38705},"    s",{"type":44,"tag":100,"props":38707,"children":38708},{"style":400},[38709],{"type":50,"value":786},{"type":44,"tag":100,"props":38711,"children":38712},{"style":113},[38713],{"type":50,"value":37406},{"type":44,"tag":100,"props":38715,"children":38716},{"style":390},[38717],{"type":50,"value":1661},{"type":44,"tag":100,"props":38719,"children":38720},{"style":400},[38721],{"type":50,"value":38722}," session_raw_date,       ",{"type":44,"tag":100,"props":38724,"children":38725},{"style":220},[38726],{"type":50,"value":38727},"-- cast with your warehouse's date function\n",{"type":44,"tag":100,"props":38729,"children":38730},{"class":102,"line":235},[38731,38735,38739,38743,38747],{"type":44,"tag":100,"props":38732,"children":38733},{"style":113},[38734],{"type":50,"value":38705},{"type":44,"tag":100,"props":38736,"children":38737},{"style":400},[38738],{"type":50,"value":786},{"type":44,"tag":100,"props":38740,"children":38741},{"style":113},[38742],{"type":50,"value":6242},{"type":44,"tag":100,"props":38744,"children":38745},{"style":390},[38746],{"type":50,"value":1661},{"type":44,"tag":100,"props":38748,"children":38749},{"style":400},[38750],{"type":50,"value":38751}," total_sessions,\n",{"type":44,"tag":100,"props":38753,"children":38754},{"class":102,"line":24},[38755,38759,38763,38767],{"type":44,"tag":100,"props":38756,"children":38757},{"style":113},[38758],{"type":50,"value":38705},{"type":44,"tag":100,"props":38760,"children":38761},{"style":400},[38762],{"type":50,"value":786},{"type":44,"tag":100,"props":38764,"children":38765},{"style":113},[38766],{"type":50,"value":6263},{"type":44,"tag":100,"props":38768,"children":38769},{"style":400},[38770],{"type":50,"value":2431},{"type":44,"tag":100,"props":38772,"children":38773},{"class":102,"line":252},[38774,38778,38782,38787],{"type":44,"tag":100,"props":38775,"children":38776},{"style":113},[38777],{"type":50,"value":38705},{"type":44,"tag":100,"props":38779,"children":38780},{"style":400},[38781],{"type":50,"value":786},{"type":44,"tag":100,"props":38783,"children":38784},{"style":113},[38785],{"type":50,"value":38786},"engaged_sessions",{"type":44,"tag":100,"props":38788,"children":38789},{"style":400},[38790],{"type":50,"value":2431},{"type":44,"tag":100,"props":38792,"children":38793},{"class":102,"line":261},[38794,38799,38803,38808,38812],{"type":44,"tag":100,"props":38795,"children":38796},{"style":113},[38797],{"type":50,"value":38798},"    e",{"type":44,"tag":100,"props":38800,"children":38801},{"style":400},[38802],{"type":50,"value":786},{"type":44,"tag":100,"props":38804,"children":38805},{"style":113},[38806],{"type":50,"value":38807},"event_count",{"type":44,"tag":100,"props":38809,"children":38810},{"style":390},[38811],{"type":50,"value":1661},{"type":44,"tag":100,"props":38813,"children":38814},{"style":400},[38815],{"type":50,"value":38816}," purchase_events,\n",{"type":44,"tag":100,"props":38818,"children":38819},{"class":102,"line":270},[38820],{"type":44,"tag":100,"props":38821,"children":38822},{"style":390},[38823],{"type":50,"value":38824},"    CASE\n",{"type":44,"tag":100,"props":38826,"children":38827},{"class":102,"line":279},[38828,38833,38838,38842,38847,38851,38856,38860],{"type":44,"tag":100,"props":38829,"children":38830},{"style":390},[38831],{"type":50,"value":38832},"        WHEN",{"type":44,"tag":100,"props":38834,"children":38835},{"style":113},[38836],{"type":50,"value":38837}," s",{"type":44,"tag":100,"props":38839,"children":38840},{"style":400},[38841],{"type":50,"value":786},{"type":44,"tag":100,"props":38843,"children":38844},{"style":113},[38845],{"type":50,"value":38846},"source",{"type":44,"tag":100,"props":38848,"children":38849},{"style":390},[38850],{"type":50,"value":2591},{"type":44,"tag":100,"props":38852,"children":38853},{"style":119},[38854],{"type":50,"value":38855}," 'facebook'",{"type":44,"tag":100,"props":38857,"children":38858},{"style":390},[38859],{"type":50,"value":568},{"type":44,"tag":100,"props":38861,"children":38862},{"style":119},[38863],{"type":50,"value":38864}," 'paid_ads'\n",{"type":44,"tag":100,"props":38866,"children":38867},{"class":102,"line":288},[38868,38872,38876,38880,38885,38889,38894,38898],{"type":44,"tag":100,"props":38869,"children":38870},{"style":390},[38871],{"type":50,"value":38832},{"type":44,"tag":100,"props":38873,"children":38874},{"style":113},[38875],{"type":50,"value":38837},{"type":44,"tag":100,"props":38877,"children":38878},{"style":400},[38879],{"type":50,"value":786},{"type":44,"tag":100,"props":38881,"children":38882},{"style":113},[38883],{"type":50,"value":38884},"medium",{"type":44,"tag":100,"props":38886,"children":38887},{"style":390},[38888],{"type":50,"value":2591},{"type":44,"tag":100,"props":38890,"children":38891},{"style":119},[38892],{"type":50,"value":38893}," 'email'",{"type":44,"tag":100,"props":38895,"children":38896},{"style":390},[38897],{"type":50,"value":568},{"type":44,"tag":100,"props":38899,"children":38900},{"style":119},[38901],{"type":50,"value":38902}," 'email'\n",{"type":44,"tag":100,"props":38904,"children":38905},{"class":102,"line":297},[38906,38910,38914,38918,38922,38926,38931,38935],{"type":44,"tag":100,"props":38907,"children":38908},{"style":390},[38909],{"type":50,"value":38832},{"type":44,"tag":100,"props":38911,"children":38912},{"style":113},[38913],{"type":50,"value":38837},{"type":44,"tag":100,"props":38915,"children":38916},{"style":400},[38917],{"type":50,"value":786},{"type":44,"tag":100,"props":38919,"children":38920},{"style":113},[38921],{"type":50,"value":38884},{"type":44,"tag":100,"props":38923,"children":38924},{"style":390},[38925],{"type":50,"value":2591},{"type":44,"tag":100,"props":38927,"children":38928},{"style":119},[38929],{"type":50,"value":38930}," 'organic'",{"type":44,"tag":100,"props":38932,"children":38933},{"style":390},[38934],{"type":50,"value":568},{"type":44,"tag":100,"props":38936,"children":38937},{"style":119},[38938],{"type":50,"value":38939}," 'organic_search'\n",{"type":44,"tag":100,"props":38941,"children":38942},{"class":102,"line":306},[38943,38947,38951,38955,38959,38963,38968,38972],{"type":44,"tag":100,"props":38944,"children":38945},{"style":390},[38946],{"type":50,"value":38832},{"type":44,"tag":100,"props":38948,"children":38949},{"style":113},[38950],{"type":50,"value":38837},{"type":44,"tag":100,"props":38952,"children":38953},{"style":400},[38954],{"type":50,"value":786},{"type":44,"tag":100,"props":38956,"children":38957},{"style":113},[38958],{"type":50,"value":38884},{"type":44,"tag":100,"props":38960,"children":38961},{"style":390},[38962],{"type":50,"value":2591},{"type":44,"tag":100,"props":38964,"children":38965},{"style":119},[38966],{"type":50,"value":38967}," 'cpc'",{"type":44,"tag":100,"props":38969,"children":38970},{"style":390},[38971],{"type":50,"value":568},{"type":44,"tag":100,"props":38973,"children":38974},{"style":119},[38975],{"type":50,"value":38976}," 'paid_search'\n",{"type":44,"tag":100,"props":38978,"children":38979},{"class":102,"line":315},[38980,38984,38988,38992,38996,39000,39005,39009],{"type":44,"tag":100,"props":38981,"children":38982},{"style":390},[38983],{"type":50,"value":38832},{"type":44,"tag":100,"props":38985,"children":38986},{"style":113},[38987],{"type":50,"value":38837},{"type":44,"tag":100,"props":38989,"children":38990},{"style":400},[38991],{"type":50,"value":786},{"type":44,"tag":100,"props":38993,"children":38994},{"style":113},[38995],{"type":50,"value":38846},{"type":44,"tag":100,"props":38997,"children":38998},{"style":390},[38999],{"type":50,"value":2591},{"type":44,"tag":100,"props":39001,"children":39002},{"style":119},[39003],{"type":50,"value":39004}," '(direct)'",{"type":44,"tag":100,"props":39006,"children":39007},{"style":390},[39008],{"type":50,"value":568},{"type":44,"tag":100,"props":39010,"children":39011},{"style":119},[39012],{"type":50,"value":39013}," 'direct'\n",{"type":44,"tag":100,"props":39015,"children":39016},{"class":102,"line":324},[39017,39022],{"type":44,"tag":100,"props":39018,"children":39019},{"style":390},[39020],{"type":50,"value":39021},"        ELSE",{"type":44,"tag":100,"props":39023,"children":39024},{"style":119},[39025],{"type":50,"value":39026}," 'other'\n",{"type":44,"tag":100,"props":39028,"children":39029},{"class":102,"line":333},[39030,39035,39039],{"type":44,"tag":100,"props":39031,"children":39032},{"style":390},[39033],{"type":50,"value":39034},"    END",{"type":44,"tag":100,"props":39036,"children":39037},{"style":390},[39038],{"type":50,"value":1661},{"type":44,"tag":100,"props":39040,"children":39041},{"style":400},[39042],{"type":50,"value":39043}," channel\n",{"type":44,"tag":100,"props":39045,"children":39046},{"class":102,"line":11},[39047,39051,39055,39059,39064],{"type":44,"tag":100,"props":39048,"children":39049},{"style":390},[39050],{"type":50,"value":776},{"type":44,"tag":100,"props":39052,"children":39053},{"style":113},[39054],{"type":50,"value":33718},{"type":44,"tag":100,"props":39056,"children":39057},{"style":400},[39058],{"type":50,"value":786},{"type":44,"tag":100,"props":39060,"children":39061},{"style":113},[39062],{"type":50,"value":39063},"ga4_sessions",{"type":44,"tag":100,"props":39065,"children":39066},{"style":400},[39067],{"type":50,"value":39068}," s\n",{"type":44,"tag":100,"props":39070,"children":39071},{"class":102,"line":350},[39072,39076,39080,39084,39089],{"type":44,"tag":100,"props":39073,"children":39074},{"style":390},[39075],{"type":50,"value":6556},{"type":44,"tag":100,"props":39077,"children":39078},{"style":113},[39079],{"type":50,"value":33718},{"type":44,"tag":100,"props":39081,"children":39082},{"style":400},[39083],{"type":50,"value":786},{"type":44,"tag":100,"props":39085,"children":39086},{"style":113},[39087],{"type":50,"value":39088},"ga4_events",{"type":44,"tag":100,"props":39090,"children":39091},{"style":400},[39092],{"type":50,"value":39093}," e\n",{"type":44,"tag":100,"props":39095,"children":39096},{"class":102,"line":359},[39097,39101,39105,39109,39113,39117,39122,39126],{"type":44,"tag":100,"props":39098,"children":39099},{"style":390},[39100],{"type":50,"value":3114},{"type":44,"tag":100,"props":39102,"children":39103},{"style":113},[39104],{"type":50,"value":38837},{"type":44,"tag":100,"props":39106,"children":39107},{"style":400},[39108],{"type":50,"value":786},{"type":44,"tag":100,"props":39110,"children":39111},{"style":113},[39112],{"type":50,"value":37406},{"type":44,"tag":100,"props":39114,"children":39115},{"style":390},[39116],{"type":50,"value":2591},{"type":44,"tag":100,"props":39118,"children":39119},{"style":113},[39120],{"type":50,"value":39121}," e",{"type":44,"tag":100,"props":39123,"children":39124},{"style":400},[39125],{"type":50,"value":786},{"type":44,"tag":100,"props":39127,"children":39128},{"style":113},[39129],{"type":50,"value":31228},{"type":44,"tag":100,"props":39131,"children":39132},{"class":102,"line":368},[39133,39137,39141,39145,39150,39154],{"type":44,"tag":100,"props":39134,"children":39135},{"style":390},[39136],{"type":50,"value":6607},{"type":44,"tag":100,"props":39138,"children":39139},{"style":113},[39140],{"type":50,"value":39121},{"type":44,"tag":100,"props":39142,"children":39143},{"style":400},[39144],{"type":50,"value":786},{"type":44,"tag":100,"props":39146,"children":39147},{"style":113},[39148],{"type":50,"value":39149},"event_name",{"type":44,"tag":100,"props":39151,"children":39152},{"style":390},[39153],{"type":50,"value":2591},{"type":44,"tag":100,"props":39155,"children":39156},{"style":119},[39157],{"type":50,"value":39158}," 'purchase'\n",{"type":44,"tag":203,"props":39160,"children":39161},{"v-slot:mixpanel":7},[39162,39174],{"type":44,"tag":53,"props":39163,"children":39164},{},[39165,39167,39172],{"type":50,"value":39166},"Mixpanel stores everything as events - there is no separate sessions table. You aggregate session-like metrics from ",{"type":44,"tag":81,"props":39168,"children":39170},{"className":39169},[],[39171],{"type":50,"value":38655},{"type":50,"value":39173}," directly.",{"type":44,"tag":90,"props":39175,"children":39177},{"className":208,"code":39176,"language":210,"meta":7,"style":7},"SELECT\n    e.time AS session_raw_date,       -- cast with your warehouse's date function\n    COUNT(*) AS total_sessions,\n    COUNT(CASE WHEN e.is_new_user = true THEN 1 END) AS new_users,\n    COUNT(CASE WHEN e.session_duration > 10 THEN 1 END) AS engaged_sessions,\n    COUNT(CASE WHEN e.event_name = 'purchase' THEN 1 END) AS purchase_events,\n    CASE\n        WHEN e.utm_source = 'facebook' THEN 'paid_ads'\n        WHEN e.utm_medium = 'email' THEN 'email'\n        WHEN e.utm_medium = 'organic' THEN 'organic_search'\n        WHEN e.utm_medium = 'cpc' THEN 'paid_search'\n        ELSE 'other'\n    END AS channel\nFROM raw.mixpanel_events e\nWHERE e.event_name = 'session_start'\nGROUP BY session_raw_date, channel\n",[39178],{"type":44,"tag":81,"props":39179,"children":39180},{"__ignoreMap":7},[39181,39188,39216,39243,39309,39376,39440,39447,39483,39519,39554,39589,39600,39615,39639,39667],{"type":44,"tag":100,"props":39182,"children":39183},{"class":102,"line":103},[39184],{"type":44,"tag":100,"props":39185,"children":39186},{"style":390},[39187],{"type":50,"value":393},{"type":44,"tag":100,"props":39189,"children":39190},{"class":102,"line":226},[39191,39195,39199,39204,39208,39212],{"type":44,"tag":100,"props":39192,"children":39193},{"style":113},[39194],{"type":50,"value":38798},{"type":44,"tag":100,"props":39196,"children":39197},{"style":400},[39198],{"type":50,"value":786},{"type":44,"tag":100,"props":39200,"children":39201},{"style":113},[39202],{"type":50,"value":39203},"time",{"type":44,"tag":100,"props":39205,"children":39206},{"style":390},[39207],{"type":50,"value":1661},{"type":44,"tag":100,"props":39209,"children":39210},{"style":400},[39211],{"type":50,"value":38722},{"type":44,"tag":100,"props":39213,"children":39214},{"style":220},[39215],{"type":50,"value":38727},{"type":44,"tag":100,"props":39217,"children":39218},{"class":102,"line":235},[39219,39223,39227,39231,39235,39239],{"type":44,"tag":100,"props":39220,"children":39221},{"style":113},[39222],{"type":50,"value":1700},{"type":44,"tag":100,"props":39224,"children":39225},{"style":400},[39226],{"type":50,"value":427},{"type":44,"tag":100,"props":39228,"children":39229},{"style":390},[39230],{"type":50,"value":432},{"type":44,"tag":100,"props":39232,"children":39233},{"style":400},[39234],{"type":50,"value":437},{"type":44,"tag":100,"props":39236,"children":39237},{"style":390},[39238],{"type":50,"value":408},{"type":44,"tag":100,"props":39240,"children":39241},{"style":400},[39242],{"type":50,"value":38751},{"type":44,"tag":100,"props":39244,"children":39245},{"class":102,"line":24},[39246,39250,39254,39258,39262,39266,39270,39275,39279,39284,39289,39293,39297,39301,39305],{"type":44,"tag":100,"props":39247,"children":39248},{"style":113},[39249],{"type":50,"value":1700},{"type":44,"tag":100,"props":39251,"children":39252},{"style":400},[39253],{"type":50,"value":427},{"type":44,"tag":100,"props":39255,"children":39256},{"style":390},[39257],{"type":50,"value":545},{"type":44,"tag":100,"props":39259,"children":39260},{"style":390},[39261],{"type":50,"value":550},{"type":44,"tag":100,"props":39263,"children":39264},{"style":113},[39265],{"type":50,"value":39121},{"type":44,"tag":100,"props":39267,"children":39268},{"style":400},[39269],{"type":50,"value":786},{"type":44,"tag":100,"props":39271,"children":39272},{"style":113},[39273],{"type":50,"value":39274},"is_new_user",{"type":44,"tag":100,"props":39276,"children":39277},{"style":390},[39278],{"type":50,"value":2591},{"type":44,"tag":100,"props":39280,"children":39281},{"style":400},[39282],{"type":50,"value":39283}," true ",{"type":44,"tag":100,"props":39285,"children":39286},{"style":390},[39287],{"type":50,"value":39288},"THEN",{"type":44,"tag":100,"props":39290,"children":39291},{"style":113},[39292],{"type":50,"value":1733},{"type":44,"tag":100,"props":39294,"children":39295},{"style":390},[39296],{"type":50,"value":588},{"type":44,"tag":100,"props":39298,"children":39299},{"style":400},[39300],{"type":50,"value":437},{"type":44,"tag":100,"props":39302,"children":39303},{"style":390},[39304],{"type":50,"value":408},{"type":44,"tag":100,"props":39306,"children":39307},{"style":400},[39308],{"type":50,"value":5774},{"type":44,"tag":100,"props":39310,"children":39311},{"class":102,"line":252},[39312,39316,39320,39324,39328,39332,39336,39341,39346,39351,39355,39359,39363,39367,39371],{"type":44,"tag":100,"props":39313,"children":39314},{"style":113},[39315],{"type":50,"value":1700},{"type":44,"tag":100,"props":39317,"children":39318},{"style":400},[39319],{"type":50,"value":427},{"type":44,"tag":100,"props":39321,"children":39322},{"style":390},[39323],{"type":50,"value":545},{"type":44,"tag":100,"props":39325,"children":39326},{"style":390},[39327],{"type":50,"value":550},{"type":44,"tag":100,"props":39329,"children":39330},{"style":113},[39331],{"type":50,"value":39121},{"type":44,"tag":100,"props":39333,"children":39334},{"style":400},[39335],{"type":50,"value":786},{"type":44,"tag":100,"props":39337,"children":39338},{"style":113},[39339],{"type":50,"value":39340},"session_duration",{"type":44,"tag":100,"props":39342,"children":39343},{"style":390},[39344],{"type":50,"value":39345}," >",{"type":44,"tag":100,"props":39347,"children":39348},{"style":113},[39349],{"type":50,"value":39350}," 10",{"type":44,"tag":100,"props":39352,"children":39353},{"style":390},[39354],{"type":50,"value":568},{"type":44,"tag":100,"props":39356,"children":39357},{"style":113},[39358],{"type":50,"value":1733},{"type":44,"tag":100,"props":39360,"children":39361},{"style":390},[39362],{"type":50,"value":588},{"type":44,"tag":100,"props":39364,"children":39365},{"style":400},[39366],{"type":50,"value":437},{"type":44,"tag":100,"props":39368,"children":39369},{"style":390},[39370],{"type":50,"value":408},{"type":44,"tag":100,"props":39372,"children":39373},{"style":400},[39374],{"type":50,"value":39375}," engaged_sessions,\n",{"type":44,"tag":100,"props":39377,"children":39378},{"class":102,"line":261},[39379,39383,39387,39391,39395,39399,39403,39407,39411,39416,39420,39424,39428,39432,39436],{"type":44,"tag":100,"props":39380,"children":39381},{"style":113},[39382],{"type":50,"value":1700},{"type":44,"tag":100,"props":39384,"children":39385},{"style":400},[39386],{"type":50,"value":427},{"type":44,"tag":100,"props":39388,"children":39389},{"style":390},[39390],{"type":50,"value":545},{"type":44,"tag":100,"props":39392,"children":39393},{"style":390},[39394],{"type":50,"value":550},{"type":44,"tag":100,"props":39396,"children":39397},{"style":113},[39398],{"type":50,"value":39121},{"type":44,"tag":100,"props":39400,"children":39401},{"style":400},[39402],{"type":50,"value":786},{"type":44,"tag":100,"props":39404,"children":39405},{"style":113},[39406],{"type":50,"value":39149},{"type":44,"tag":100,"props":39408,"children":39409},{"style":390},[39410],{"type":50,"value":2591},{"type":44,"tag":100,"props":39412,"children":39413},{"style":119},[39414],{"type":50,"value":39415}," 'purchase'",{"type":44,"tag":100,"props":39417,"children":39418},{"style":390},[39419],{"type":50,"value":568},{"type":44,"tag":100,"props":39421,"children":39422},{"style":113},[39423],{"type":50,"value":1733},{"type":44,"tag":100,"props":39425,"children":39426},{"style":390},[39427],{"type":50,"value":588},{"type":44,"tag":100,"props":39429,"children":39430},{"style":400},[39431],{"type":50,"value":437},{"type":44,"tag":100,"props":39433,"children":39434},{"style":390},[39435],{"type":50,"value":408},{"type":44,"tag":100,"props":39437,"children":39438},{"style":400},[39439],{"type":50,"value":38816},{"type":44,"tag":100,"props":39441,"children":39442},{"class":102,"line":270},[39443],{"type":44,"tag":100,"props":39444,"children":39445},{"style":390},[39446],{"type":50,"value":38824},{"type":44,"tag":100,"props":39448,"children":39449},{"class":102,"line":279},[39450,39454,39458,39462,39467,39471,39475,39479],{"type":44,"tag":100,"props":39451,"children":39452},{"style":390},[39453],{"type":50,"value":38832},{"type":44,"tag":100,"props":39455,"children":39456},{"style":113},[39457],{"type":50,"value":39121},{"type":44,"tag":100,"props":39459,"children":39460},{"style":400},[39461],{"type":50,"value":786},{"type":44,"tag":100,"props":39463,"children":39464},{"style":113},[39465],{"type":50,"value":39466},"utm_source",{"type":44,"tag":100,"props":39468,"children":39469},{"style":390},[39470],{"type":50,"value":2591},{"type":44,"tag":100,"props":39472,"children":39473},{"style":119},[39474],{"type":50,"value":38855},{"type":44,"tag":100,"props":39476,"children":39477},{"style":390},[39478],{"type":50,"value":568},{"type":44,"tag":100,"props":39480,"children":39481},{"style":119},[39482],{"type":50,"value":38864},{"type":44,"tag":100,"props":39484,"children":39485},{"class":102,"line":288},[39486,39490,39494,39498,39503,39507,39511,39515],{"type":44,"tag":100,"props":39487,"children":39488},{"style":390},[39489],{"type":50,"value":38832},{"type":44,"tag":100,"props":39491,"children":39492},{"style":113},[39493],{"type":50,"value":39121},{"type":44,"tag":100,"props":39495,"children":39496},{"style":400},[39497],{"type":50,"value":786},{"type":44,"tag":100,"props":39499,"children":39500},{"style":113},[39501],{"type":50,"value":39502},"utm_medium",{"type":44,"tag":100,"props":39504,"children":39505},{"style":390},[39506],{"type":50,"value":2591},{"type":44,"tag":100,"props":39508,"children":39509},{"style":119},[39510],{"type":50,"value":38893},{"type":44,"tag":100,"props":39512,"children":39513},{"style":390},[39514],{"type":50,"value":568},{"type":44,"tag":100,"props":39516,"children":39517},{"style":119},[39518],{"type":50,"value":38902},{"type":44,"tag":100,"props":39520,"children":39521},{"class":102,"line":297},[39522,39526,39530,39534,39538,39542,39546,39550],{"type":44,"tag":100,"props":39523,"children":39524},{"style":390},[39525],{"type":50,"value":38832},{"type":44,"tag":100,"props":39527,"children":39528},{"style":113},[39529],{"type":50,"value":39121},{"type":44,"tag":100,"props":39531,"children":39532},{"style":400},[39533],{"type":50,"value":786},{"type":44,"tag":100,"props":39535,"children":39536},{"style":113},[39537],{"type":50,"value":39502},{"type":44,"tag":100,"props":39539,"children":39540},{"style":390},[39541],{"type":50,"value":2591},{"type":44,"tag":100,"props":39543,"children":39544},{"style":119},[39545],{"type":50,"value":38930},{"type":44,"tag":100,"props":39547,"children":39548},{"style":390},[39549],{"type":50,"value":568},{"type":44,"tag":100,"props":39551,"children":39552},{"style":119},[39553],{"type":50,"value":38939},{"type":44,"tag":100,"props":39555,"children":39556},{"class":102,"line":306},[39557,39561,39565,39569,39573,39577,39581,39585],{"type":44,"tag":100,"props":39558,"children":39559},{"style":390},[39560],{"type":50,"value":38832},{"type":44,"tag":100,"props":39562,"children":39563},{"style":113},[39564],{"type":50,"value":39121},{"type":44,"tag":100,"props":39566,"children":39567},{"style":400},[39568],{"type":50,"value":786},{"type":44,"tag":100,"props":39570,"children":39571},{"style":113},[39572],{"type":50,"value":39502},{"type":44,"tag":100,"props":39574,"children":39575},{"style":390},[39576],{"type":50,"value":2591},{"type":44,"tag":100,"props":39578,"children":39579},{"style":119},[39580],{"type":50,"value":38967},{"type":44,"tag":100,"props":39582,"children":39583},{"style":390},[39584],{"type":50,"value":568},{"type":44,"tag":100,"props":39586,"children":39587},{"style":119},[39588],{"type":50,"value":38976},{"type":44,"tag":100,"props":39590,"children":39591},{"class":102,"line":315},[39592,39596],{"type":44,"tag":100,"props":39593,"children":39594},{"style":390},[39595],{"type":50,"value":39021},{"type":44,"tag":100,"props":39597,"children":39598},{"style":119},[39599],{"type":50,"value":39026},{"type":44,"tag":100,"props":39601,"children":39602},{"class":102,"line":324},[39603,39607,39611],{"type":44,"tag":100,"props":39604,"children":39605},{"style":390},[39606],{"type":50,"value":39034},{"type":44,"tag":100,"props":39608,"children":39609},{"style":390},[39610],{"type":50,"value":1661},{"type":44,"tag":100,"props":39612,"children":39613},{"style":400},[39614],{"type":50,"value":39043},{"type":44,"tag":100,"props":39616,"children":39617},{"class":102,"line":333},[39618,39622,39626,39630,39635],{"type":44,"tag":100,"props":39619,"children":39620},{"style":390},[39621],{"type":50,"value":776},{"type":44,"tag":100,"props":39623,"children":39624},{"style":113},[39625],{"type":50,"value":33718},{"type":44,"tag":100,"props":39627,"children":39628},{"style":400},[39629],{"type":50,"value":786},{"type":44,"tag":100,"props":39631,"children":39632},{"style":113},[39633],{"type":50,"value":39634},"mixpanel_events",{"type":44,"tag":100,"props":39636,"children":39637},{"style":400},[39638],{"type":50,"value":39093},{"type":44,"tag":100,"props":39640,"children":39641},{"class":102,"line":11},[39642,39646,39650,39654,39658,39662],{"type":44,"tag":100,"props":39643,"children":39644},{"style":390},[39645],{"type":50,"value":1421},{"type":44,"tag":100,"props":39647,"children":39648},{"style":113},[39649],{"type":50,"value":39121},{"type":44,"tag":100,"props":39651,"children":39652},{"style":400},[39653],{"type":50,"value":786},{"type":44,"tag":100,"props":39655,"children":39656},{"style":113},[39657],{"type":50,"value":39149},{"type":44,"tag":100,"props":39659,"children":39660},{"style":390},[39661],{"type":50,"value":2591},{"type":44,"tag":100,"props":39663,"children":39664},{"style":119},[39665],{"type":50,"value":39666}," 'session_start'\n",{"type":44,"tag":100,"props":39668,"children":39669},{"class":102,"line":350},[39670,39674],{"type":44,"tag":100,"props":39671,"children":39672},{"style":390},[39673],{"type":50,"value":800},{"type":44,"tag":100,"props":39675,"children":39676},{"style":400},[39677],{"type":50,"value":39678}," session_raw_date, channel\n",{"type":44,"tag":28301,"props":39680,"children":39682},{"id":39681},"warehouse-date-casting",[39683],{"type":50,"value":39684},"Warehouse date casting",{"type":44,"tag":53,"props":39686,"children":39687},{},[39688,39690,39696,39698,39703,39704,39709,39711,39716],{"type":50,"value":39689},"Wrap the source query above in the Bruin asset header and apply the correct date function for your warehouse. Update the ",{"type":44,"tag":81,"props":39691,"children":39693},{"className":39692},[],[39694],{"type":50,"value":39695},"depends:",{"type":50,"value":39697}," list to match the analytics tool you chose above (GA4 uses ",{"type":44,"tag":81,"props":39699,"children":39701},{"className":39700},[],[39702],{"type":50,"value":38640},{"type":50,"value":32393},{"type":44,"tag":81,"props":39705,"children":39707},{"className":39706},[],[39708],{"type":50,"value":38647},{"type":50,"value":39710},"; Mixpanel uses ",{"type":44,"tag":81,"props":39712,"children":39714},{"className":39713},[],[39715],{"type":50,"value":38655},{"type":50,"value":39717},"):",{"type":44,"tag":197,"props":39719,"children":39720},{":variants":199,"group":200},[39721,39884,40043],{"type":44,"tag":203,"props":39722,"children":39723},{"v-slot:clickhouse":7},[39724,39736],{"type":44,"tag":53,"props":39725,"children":39726},{},[39727,39729,39734],{"type":50,"value":39728},"Use ",{"type":44,"tag":81,"props":39730,"children":39732},{"className":39731},[],[39733],{"type":50,"value":36894},{"type":50,"value":39735}," for the date column:",{"type":44,"tag":90,"props":39737,"children":39739},{"className":208,"code":39738,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_web_sessions\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.ga4_sessions       -- GA4: use raw.ga4_sessions and raw.ga4_events\n  - raw.ga4_events         -- Mixpanel: replace both with raw.mixpanel_events\ncolumns:\n  - name: session_date\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nSELECT\n    toDate(session_raw_date) AS session_date,\n    -- ... rest of columns from source query above\n",[39740],{"type":44,"tag":81,"props":39741,"children":39742},{"__ignoreMap":7},[39743,39750,39758,39765,39772,39779,39786,39794,39802,39809,39817,39824,39831,39838,39845,39852,39859,39876],{"type":44,"tag":100,"props":39744,"children":39745},{"class":102,"line":103},[39746],{"type":44,"tag":100,"props":39747,"children":39748},{"style":220},[39749],{"type":50,"value":223},{"type":44,"tag":100,"props":39751,"children":39752},{"class":102,"line":226},[39753],{"type":44,"tag":100,"props":39754,"children":39755},{"style":220},[39756],{"type":50,"value":39757},"name: staging.stg_web_sessions\n",{"type":44,"tag":100,"props":39759,"children":39760},{"class":102,"line":235},[39761],{"type":44,"tag":100,"props":39762,"children":39763},{"style":220},[39764],{"type":50,"value":241},{"type":44,"tag":100,"props":39766,"children":39767},{"class":102,"line":24},[39768],{"type":44,"tag":100,"props":39769,"children":39770},{"style":220},[39771],{"type":50,"value":249},{"type":44,"tag":100,"props":39773,"children":39774},{"class":102,"line":252},[39775],{"type":44,"tag":100,"props":39776,"children":39777},{"style":220},[39778],{"type":50,"value":258},{"type":44,"tag":100,"props":39780,"children":39781},{"class":102,"line":261},[39782],{"type":44,"tag":100,"props":39783,"children":39784},{"style":220},[39785],{"type":50,"value":267},{"type":44,"tag":100,"props":39787,"children":39788},{"class":102,"line":270},[39789],{"type":44,"tag":100,"props":39790,"children":39791},{"style":220},[39792],{"type":50,"value":39793},"  - raw.ga4_sessions       -- GA4: use raw.ga4_sessions and raw.ga4_events\n",{"type":44,"tag":100,"props":39795,"children":39796},{"class":102,"line":279},[39797],{"type":44,"tag":100,"props":39798,"children":39799},{"style":220},[39800],{"type":50,"value":39801},"  - raw.ga4_events         -- Mixpanel: replace both with raw.mixpanel_events\n",{"type":44,"tag":100,"props":39803,"children":39804},{"class":102,"line":288},[39805],{"type":44,"tag":100,"props":39806,"children":39807},{"style":220},[39808],{"type":50,"value":285},{"type":44,"tag":100,"props":39810,"children":39811},{"class":102,"line":297},[39812],{"type":44,"tag":100,"props":39813,"children":39814},{"style":220},[39815],{"type":50,"value":39816},"  - name: session_date\n",{"type":44,"tag":100,"props":39818,"children":39819},{"class":102,"line":306},[39820],{"type":44,"tag":100,"props":39821,"children":39822},{"style":220},[39823],{"type":50,"value":303},{"type":44,"tag":100,"props":39825,"children":39826},{"class":102,"line":315},[39827],{"type":44,"tag":100,"props":39828,"children":39829},{"style":220},[39830],{"type":50,"value":312},{"type":44,"tag":100,"props":39832,"children":39833},{"class":102,"line":324},[39834],{"type":44,"tag":100,"props":39835,"children":39836},{"style":220},[39837],{"type":50,"value":321},{"type":44,"tag":100,"props":39839,"children":39840},{"class":102,"line":333},[39841],{"type":44,"tag":100,"props":39842,"children":39843},{"style":220},[39844],{"type":50,"value":374},{"type":44,"tag":100,"props":39846,"children":39847},{"class":102,"line":11},[39848],{"type":44,"tag":100,"props":39849,"children":39850},{"emptyLinePlaceholder":23},[39851],{"type":50,"value":383},{"type":44,"tag":100,"props":39853,"children":39854},{"class":102,"line":350},[39855],{"type":44,"tag":100,"props":39856,"children":39857},{"style":390},[39858],{"type":50,"value":393},{"type":44,"tag":100,"props":39860,"children":39861},{"class":102,"line":359},[39862,39867,39871],{"type":44,"tag":100,"props":39863,"children":39864},{"style":400},[39865],{"type":50,"value":39866},"    toDate(session_raw_date) ",{"type":44,"tag":100,"props":39868,"children":39869},{"style":390},[39870],{"type":50,"value":408},{"type":44,"tag":100,"props":39872,"children":39873},{"style":400},[39874],{"type":50,"value":39875}," session_date,\n",{"type":44,"tag":100,"props":39877,"children":39878},{"class":102,"line":368},[39879],{"type":44,"tag":100,"props":39880,"children":39881},{"style":220},[39882],{"type":50,"value":39883},"    -- ... rest of columns from source query above\n",{"type":44,"tag":203,"props":39885,"children":39886},{"v-slot:bigquery":7},[39887,39897],{"type":44,"tag":53,"props":39888,"children":39889},{},[39890,39891,39896],{"type":50,"value":39728},{"type":44,"tag":81,"props":39892,"children":39894},{"className":39893},[],[39895],{"type":50,"value":36902},{"type":50,"value":39735},{"type":44,"tag":90,"props":39898,"children":39900},{"className":208,"code":39899,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_web_sessions\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.ga4_sessions       -- GA4: use raw.ga4_sessions and raw.ga4_events\n  - raw.ga4_events         -- Mixpanel: replace both with raw.mixpanel_events\ncolumns:\n  - name: session_date\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nSELECT\n    DATE(session_raw_date) AS session_date,\n    -- ... rest of columns from source query above\n",[39901],{"type":44,"tag":81,"props":39902,"children":39903},{"__ignoreMap":7},[39904,39911,39918,39925,39932,39939,39946,39953,39960,39967,39974,39981,39988,39995,40002,40009,40016,40036],{"type":44,"tag":100,"props":39905,"children":39906},{"class":102,"line":103},[39907],{"type":44,"tag":100,"props":39908,"children":39909},{"style":220},[39910],{"type":50,"value":223},{"type":44,"tag":100,"props":39912,"children":39913},{"class":102,"line":226},[39914],{"type":44,"tag":100,"props":39915,"children":39916},{"style":220},[39917],{"type":50,"value":39757},{"type":44,"tag":100,"props":39919,"children":39920},{"class":102,"line":235},[39921],{"type":44,"tag":100,"props":39922,"children":39923},{"style":220},[39924],{"type":50,"value":241},{"type":44,"tag":100,"props":39926,"children":39927},{"class":102,"line":24},[39928],{"type":44,"tag":100,"props":39929,"children":39930},{"style":220},[39931],{"type":50,"value":249},{"type":44,"tag":100,"props":39933,"children":39934},{"class":102,"line":252},[39935],{"type":44,"tag":100,"props":39936,"children":39937},{"style":220},[39938],{"type":50,"value":258},{"type":44,"tag":100,"props":39940,"children":39941},{"class":102,"line":261},[39942],{"type":44,"tag":100,"props":39943,"children":39944},{"style":220},[39945],{"type":50,"value":267},{"type":44,"tag":100,"props":39947,"children":39948},{"class":102,"line":270},[39949],{"type":44,"tag":100,"props":39950,"children":39951},{"style":220},[39952],{"type":50,"value":39793},{"type":44,"tag":100,"props":39954,"children":39955},{"class":102,"line":279},[39956],{"type":44,"tag":100,"props":39957,"children":39958},{"style":220},[39959],{"type":50,"value":39801},{"type":44,"tag":100,"props":39961,"children":39962},{"class":102,"line":288},[39963],{"type":44,"tag":100,"props":39964,"children":39965},{"style":220},[39966],{"type":50,"value":285},{"type":44,"tag":100,"props":39968,"children":39969},{"class":102,"line":297},[39970],{"type":44,"tag":100,"props":39971,"children":39972},{"style":220},[39973],{"type":50,"value":39816},{"type":44,"tag":100,"props":39975,"children":39976},{"class":102,"line":306},[39977],{"type":44,"tag":100,"props":39978,"children":39979},{"style":220},[39980],{"type":50,"value":303},{"type":44,"tag":100,"props":39982,"children":39983},{"class":102,"line":315},[39984],{"type":44,"tag":100,"props":39985,"children":39986},{"style":220},[39987],{"type":50,"value":312},{"type":44,"tag":100,"props":39989,"children":39990},{"class":102,"line":324},[39991],{"type":44,"tag":100,"props":39992,"children":39993},{"style":220},[39994],{"type":50,"value":321},{"type":44,"tag":100,"props":39996,"children":39997},{"class":102,"line":333},[39998],{"type":44,"tag":100,"props":39999,"children":40000},{"style":220},[40001],{"type":50,"value":374},{"type":44,"tag":100,"props":40003,"children":40004},{"class":102,"line":11},[40005],{"type":44,"tag":100,"props":40006,"children":40007},{"emptyLinePlaceholder":23},[40008],{"type":50,"value":383},{"type":44,"tag":100,"props":40010,"children":40011},{"class":102,"line":350},[40012],{"type":44,"tag":100,"props":40013,"children":40014},{"style":390},[40015],{"type":50,"value":393},{"type":44,"tag":100,"props":40017,"children":40018},{"class":102,"line":359},[40019,40023,40028,40032],{"type":44,"tag":100,"props":40020,"children":40021},{"style":390},[40022],{"type":50,"value":977},{"type":44,"tag":100,"props":40024,"children":40025},{"style":400},[40026],{"type":50,"value":40027},"(session_raw_date) ",{"type":44,"tag":100,"props":40029,"children":40030},{"style":390},[40031],{"type":50,"value":408},{"type":44,"tag":100,"props":40033,"children":40034},{"style":400},[40035],{"type":50,"value":39875},{"type":44,"tag":100,"props":40037,"children":40038},{"class":102,"line":368},[40039],{"type":44,"tag":100,"props":40040,"children":40041},{"style":220},[40042],{"type":50,"value":39883},{"type":44,"tag":203,"props":40044,"children":40045},{"v-slot:snowflake":7},[40046,40056],{"type":44,"tag":53,"props":40047,"children":40048},{},[40049,40050,40055],{"type":50,"value":39728},{"type":44,"tag":81,"props":40051,"children":40053},{"className":40052},[],[40054],{"type":50,"value":36909},{"type":50,"value":39735},{"type":44,"tag":90,"props":40057,"children":40059},{"className":208,"code":40058,"language":210,"meta":7,"style":7},"\u002F* @bruin\nname: staging.stg_web_sessions\ntype: sql\nmaterialization:\n  type: table\ndepends:\n  - raw.ga4_sessions       -- GA4: use raw.ga4_sessions and raw.ga4_events\n  - raw.ga4_events         -- Mixpanel: replace both with raw.mixpanel_events\ncolumns:\n  - name: session_date\n    type: date\n    checks:\n      - name: not_null\n@bruin *\u002F\n\nSELECT\n    session_raw_date::DATE AS session_date,\n    -- ... rest of columns from source query above\n",[40060],{"type":44,"tag":81,"props":40061,"children":40062},{"__ignoreMap":7},[40063,40070,40077,40084,40091,40098,40105,40112,40119,40126,40133,40140,40147,40154,40161,40168,40175,40195],{"type":44,"tag":100,"props":40064,"children":40065},{"class":102,"line":103},[40066],{"type":44,"tag":100,"props":40067,"children":40068},{"style":220},[40069],{"type":50,"value":223},{"type":44,"tag":100,"props":40071,"children":40072},{"class":102,"line":226},[40073],{"type":44,"tag":100,"props":40074,"children":40075},{"style":220},[40076],{"type":50,"value":39757},{"type":44,"tag":100,"props":40078,"children":40079},{"class":102,"line":235},[40080],{"type":44,"tag":100,"props":40081,"children":40082},{"style":220},[40083],{"type":50,"value":241},{"type":44,"tag":100,"props":40085,"children":40086},{"class":102,"line":24},[40087],{"type":44,"tag":100,"props":40088,"children":40089},{"style":220},[40090],{"type":50,"value":249},{"type":44,"tag":100,"props":40092,"children":40093},{"class":102,"line":252},[40094],{"type":44,"tag":100,"props":40095,"children":40096},{"style":220},[40097],{"type":50,"value":258},{"type":44,"tag":100,"props":40099,"children":40100},{"class":102,"line":261},[40101],{"type":44,"tag":100,"props":40102,"children":40103},{"style":220},[40104],{"type":50,"value":267},{"type":44,"tag":100,"props":40106,"children":40107},{"class":102,"line":270},[40108],{"type":44,"tag":100,"props":40109,"children":40110},{"style":220},[40111],{"type":50,"value":39793},{"type":44,"tag":100,"props":40113,"children":40114},{"class":102,"line":279},[40115],{"type":44,"tag":100,"props":40116,"children":40117},{"style":220},[40118],{"type":50,"value":39801},{"type":44,"tag":100,"props":40120,"children":40121},{"class":102,"line":288},[40122],{"type":44,"tag":100,"props":40123,"children":40124},{"style":220},[40125],{"type":50,"value":285},{"type":44,"tag":100,"props":40127,"children":40128},{"class":102,"line":297},[40129],{"type":44,"tag":100,"props":40130,"children":40131},{"style":220},[40132],{"type":50,"value":39816},{"type":44,"tag":100,"props":40134,"children":40135},{"class":102,"line":306},[40136],{"type":44,"tag":100,"props":40137,"children":40138},{"style":220},[40139],{"type":50,"value":303},{"type":44,"tag":100,"props":40141,"children":40142},{"class":102,"line":315},[40143],{"type":44,"tag":100,"props":40144,"children":40145},{"style":220},[40146],{"type":50,"value":312},{"type":44,"tag":100,"props":40148,"children":40149},{"class":102,"line":324},[40150],{"type":44,"tag":100,"props":40151,"children":40152},{"style":220},[40153],{"type":50,"value":321},{"type":44,"tag":100,"props":40155,"children":40156},{"class":102,"line":333},[40157],{"type":44,"tag":100,"props":40158,"children":40159},{"style":220},[40160],{"type":50,"value":374},{"type":44,"tag":100,"props":40162,"children":40163},{"class":102,"line":11},[40164],{"type":44,"tag":100,"props":40165,"children":40166},{"emptyLinePlaceholder":23},[40167],{"type":50,"value":383},{"type":44,"tag":100,"props":40169,"children":40170},{"class":102,"line":350},[40171],{"type":44,"tag":100,"props":40172,"children":40173},{"style":390},[40174],{"type":50,"value":393},{"type":44,"tag":100,"props":40176,"children":40177},{"class":102,"line":359},[40178,40183,40187,40191],{"type":44,"tag":100,"props":40179,"children":40180},{"style":400},[40181],{"type":50,"value":40182},"    session_raw_date::",{"type":44,"tag":100,"props":40184,"children":40185},{"style":390},[40186],{"type":50,"value":1656},{"type":44,"tag":100,"props":40188,"children":40189},{"style":390},[40190],{"type":50,"value":1661},{"type":44,"tag":100,"props":40192,"children":40193},{"style":400},[40194],{"type":50,"value":39875},{"type":44,"tag":100,"props":40196,"children":40197},{"class":102,"line":368},[40198],{"type":44,"tag":100,"props":40199,"children":40200},{"style":220},[40201],{"type":50,"value":39883},{"type":44,"tag":5108,"props":40203,"children":40204},{},[40205],{"type":44,"tag":53,"props":40206,"children":40207},{},[40208],{"type":50,"value":40209},"The web sessions query needs both the right source columns (GA4 vs Mixpanel) and the right date cast for your warehouse. Ask Claude Code to generate the combined SQL for your specific stack - it will inspect your raw tables and write the correct query.",{"type":44,"tag":124,"props":40211,"children":40213},{"id":40212},"validate-and-run-the-staging-layer",[40214],{"type":50,"value":40215},"Validate and run the staging layer",{"type":44,"tag":90,"props":40217,"children":40218},{"className":92,"code":13354,"language":94,"meta":7,"style":7},[40219],{"type":44,"tag":81,"props":40220,"children":40221},{"__ignoreMap":7},[40222],{"type":44,"tag":100,"props":40223,"children":40224},{"class":102,"line":103},[40225,40229,40233],{"type":44,"tag":100,"props":40226,"children":40227},{"style":107},[40228],{"type":50,"value":13195},{"type":44,"tag":100,"props":40230,"children":40231},{"style":119},[40232],{"type":50,"value":13370},{"type":44,"tag":100,"props":40234,"children":40235},{"style":119},[40236],{"type":50,"value":13225},{"type":44,"tag":53,"props":40238,"children":40239},{},[40240],{"type":50,"value":40241},"Fix any errors, then run with the same small date range you used in Step 2:",{"type":44,"tag":90,"props":40243,"children":40244},{"className":92,"code":13183,"language":94,"meta":7,"style":7},[40245],{"type":44,"tag":81,"props":40246,"children":40247},{"__ignoreMap":7},[40248],{"type":44,"tag":100,"props":40249,"children":40250},{"class":102,"line":103},[40251,40255,40259,40263,40267,40271,40275],{"type":44,"tag":100,"props":40252,"children":40253},{"style":107},[40254],{"type":50,"value":13195},{"type":44,"tag":100,"props":40256,"children":40257},{"style":119},[40258],{"type":50,"value":13200},{"type":44,"tag":100,"props":40260,"children":40261},{"style":113},[40262],{"type":50,"value":13205},{"type":44,"tag":100,"props":40264,"children":40265},{"style":119},[40266],{"type":50,"value":13210},{"type":44,"tag":100,"props":40268,"children":40269},{"style":113},[40270],{"type":50,"value":13215},{"type":44,"tag":100,"props":40272,"children":40273},{"style":119},[40274],{"type":50,"value":13220},{"type":44,"tag":100,"props":40276,"children":40277},{"style":119},[40278],{"type":50,"value":13225},{"type":44,"tag":53,"props":40280,"children":40281},{},[40282,40284,40288],{"type":50,"value":40283},"Bruin executes ",{"type":44,"tag":13232,"props":40285,"children":40286},{"href":13234},[40287],{"type":50,"value":26584},{"type":50,"value":40289}," in dependency order - ingestors first, then staging. You can also run just one asset to test it:",{"type":44,"tag":90,"props":40291,"children":40293},{"className":92,"code":40292,"language":94,"meta":7,"style":7},"bruin run --start-date 2025-01-01 --end-date 2025-02-01 ecommerce\u002Fassets\u002Fstaging\u002Fstg_orders.sql\n",[40294],{"type":44,"tag":81,"props":40295,"children":40296},{"__ignoreMap":7},[40297],{"type":44,"tag":100,"props":40298,"children":40299},{"class":102,"line":103},[40300,40304,40308,40312,40316,40320,40324],{"type":44,"tag":100,"props":40301,"children":40302},{"style":107},[40303],{"type":50,"value":13195},{"type":44,"tag":100,"props":40305,"children":40306},{"style":119},[40307],{"type":50,"value":13200},{"type":44,"tag":100,"props":40309,"children":40310},{"style":113},[40311],{"type":50,"value":13205},{"type":44,"tag":100,"props":40313,"children":40314},{"style":119},[40315],{"type":50,"value":13210},{"type":44,"tag":100,"props":40317,"children":40318},{"style":113},[40319],{"type":50,"value":13215},{"type":44,"tag":100,"props":40321,"children":40322},{"style":119},[40323],{"type":50,"value":13220},{"type":44,"tag":100,"props":40325,"children":40326},{"style":119},[40327],{"type":50,"value":40328}," ecommerce\u002Fassets\u002Fstaging\u002Fstg_orders.sql\n",{"type":44,"tag":124,"props":40330,"children":40332},{"id":40331},"ask-claude-code-to-validate-and-troubleshoot",[40333],{"type":50,"value":40334},"Ask Claude Code to validate and troubleshoot",{"type":44,"tag":53,"props":40336,"children":40337},{},[40338],{"type":50,"value":40339},"After creating the staging assets, ask Claude Code to check everything:",{"type":44,"tag":136,"props":40341,"children":40342},{},[40343],{"type":44,"tag":53,"props":40344,"children":40345},{},[40346],{"type":50,"value":40347},"Run bruin validate on the project. If there are errors in the staging SQL files, look at the raw table schemas and fix the column names.",{"type":44,"tag":53,"props":40349,"children":40350},{},[40351],{"type":50,"value":40352},"If a query fails at runtime, Claude Code can inspect the error and the actual table data:",{"type":44,"tag":136,"props":40354,"children":40355},{},[40356],{"type":44,"tag":53,"props":40357,"children":40358},{},[40359],{"type":50,"value":40360},"The stg_customers asset failed. Query the raw.shopify_customers table to check what columns are actually available, and fix the SQL.",{"type":44,"tag":45,"props":40362,"children":40363},{"id":13425},[40364],{"type":50,"value":13428},{"type":44,"tag":13430,"props":40366,"children":40367},{},[40368,40378,40411,40420],{"type":44,"tag":13434,"props":40369,"children":40370},{},[40371,40376],{"type":44,"tag":185,"props":40372,"children":40373},{},[40374],{"type":50,"value":40375},"5 staging tables",{"type":50,"value":40377}," normalize data from your connected SaaS tools into a consistent format",{"type":44,"tag":13434,"props":40379,"children":40380},{},[40381,40388,40389,40395,40396,40402,40403,40409],{"type":44,"tag":185,"props":40382,"children":40383},{},[40384],{"type":44,"tag":13232,"props":40385,"children":40386},{"href":13234},[40387],{"type":50,"value":34},{"type":50,"value":1445},{"type":44,"tag":81,"props":40390,"children":40392},{"className":40391},[],[40393],{"type":50,"value":40394},"not_null",{"type":50,"value":750},{"type":44,"tag":81,"props":40397,"children":40399},{"className":40398},[],[40400],{"type":50,"value":40401},"unique",{"type":50,"value":750},{"type":44,"tag":81,"props":40404,"children":40406},{"className":40405},[],[40407],{"type":50,"value":40408},"has_rows",{"type":50,"value":40410},") run automatically after each asset",{"type":44,"tag":13434,"props":40412,"children":40413},{},[40414,40418],{"type":44,"tag":185,"props":40415,"children":40416},{},[40417],{"type":50,"value":13461},{"type":50,"value":40419}," make sure staging assets wait for their source ingestors to finish",{"type":44,"tag":13434,"props":40421,"children":40422},{},[40423,40431,40433,40439],{"type":44,"tag":185,"props":40424,"children":40425},{},[40426],{"type":44,"tag":13232,"props":40427,"children":40428},{"href":13234},[40429],{"type":50,"value":40430},"Materialization",{"type":50,"value":40432}," is set to ",{"type":44,"tag":81,"props":40434,"children":40436},{"className":40435},[],[40437],{"type":50,"value":40438},"table",{"type":50,"value":40440}," - each run rebuilds the staging tables from scratch for consistency",{"type":44,"tag":53,"props":40442,"children":40443},{},[40444,40446,40451],{"type":50,"value":40445},"Your ",{"type":44,"tag":13232,"props":40447,"children":40448},{"href":26575},[40449],{"type":50,"value":40450},"pipeline",{"type":50,"value":40452}," now has two layers: ingestion and staging. Next, you'll add the report layer on top.",{"type":44,"tag":13479,"props":40454,"children":40455},{},[40456],{"type":50,"value":13483},{"title":7,"searchDepth":226,"depth":226,"links":40458},[40459,40460,40461,40476],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":40462},[40463,40464,40466,40468,40470,40472,40474,40475],{"id":32682,"depth":235,"text":32685},{"id":32859,"depth":235,"text":40465},"1) Staged orders - stg_orders.sql",{"id":35650,"depth":235,"text":40467},"2) Staged customers - stg_customers.sql",{"id":36467,"depth":235,"text":40469},"3) Staged products - stg_products.sql",{"id":36855,"depth":235,"text":40471},"4) Staged marketing spend - stg_marketing_spend.sql",{"id":38595,"depth":235,"text":40473},"5) Staged web sessions - stg_web_sessions.sql",{"id":40212,"depth":235,"text":40215},{"id":40331,"depth":235,"text":40334},{"id":13425,"depth":226,"text":13428},"content:tutorials:ecommerce-pipeline:data-preparation.md","tutorials\u002Fecommerce-pipeline\u002Fdata-preparation.md","tutorials\u002Fecommerce-pipeline\u002Fdata-preparation",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"readingTime":11,"category":12,"tags":40481,"difficulty":22,"module":5,"subSteps":23,"step":24,"journeys":40482,"variants":40483,"learnMore":40484,"author":40487,"body":40488,"_type":13504,"_id":13505,"_source":13506,"_file":13507,"_stem":13508,"_extension":13509},[14,15,16,17,18,19,20,21],[26,27],[17,18,19],[40485,40486],{"label":31,"url":32},{"label":34,"url":35},{"name":37,"role":38,"image":39},{"type":41,"children":40489,"toc":53411},[40490,40494,40498,40502,40506,40510,40520,40541,40545,40549,40556,40560,40567,40571,40580,40584,40597,42483,42492,42496,42509,45257,45266,45270,45289,45302,45506,45515,45519,45532,49387,49396,49400,49413,53148,53152,53156,53193,53207,53211,53248,53258,53299,53303,53324,53328,53332,53339,53346,53353,53357,53364,53368,53403,53407],{"type":44,"tag":45,"props":40491,"children":40492},{"id":47},[40493],{"type":50,"value":51},{"type":44,"tag":53,"props":40495,"children":40496},{},[40497],{"type":50,"value":57},{"type":44,"tag":45,"props":40499,"children":40500},{"id":60},[40501],{"type":50,"value":63},{"type":44,"tag":53,"props":40503,"children":40504},{},[40505],{"type":50,"value":68},{"type":44,"tag":45,"props":40507,"children":40508},{"id":71},[40509],{"type":50,"value":74},{"type":44,"tag":53,"props":40511,"children":40512},{},[40513,40514,40519],{"type":50,"value":79},{"type":44,"tag":81,"props":40515,"children":40517},{"className":40516},[],[40518],{"type":50,"value":86},{"type":50,"value":88},{"type":44,"tag":90,"props":40521,"children":40522},{"className":92,"code":93,"language":94,"meta":7,"style":7},[40523],{"type":44,"tag":81,"props":40524,"children":40525},{"__ignoreMap":7},[40526],{"type":44,"tag":100,"props":40527,"children":40528},{"class":102,"line":103},[40529,40533,40537],{"type":44,"tag":100,"props":40530,"children":40531},{"style":107},[40532],{"type":50,"value":110},{"type":44,"tag":100,"props":40534,"children":40535},{"style":113},[40536],{"type":50,"value":116},{"type":44,"tag":100,"props":40538,"children":40539},{"style":119},[40540],{"type":50,"value":122},{"type":44,"tag":124,"props":40542,"children":40543},{"id":126},[40544],{"type":50,"value":129},{"type":44,"tag":53,"props":40546,"children":40547},{},[40548],{"type":50,"value":134},{"type":44,"tag":136,"props":40550,"children":40551},{},[40552],{"type":44,"tag":53,"props":40553,"children":40554},{},[40555],{"type":50,"value":143},{"type":44,"tag":53,"props":40557,"children":40558},{},[40559],{"type":50,"value":148},{"type":44,"tag":136,"props":40561,"children":40562},{},[40563],{"type":44,"tag":53,"props":40564,"children":40565},{},[40566],{"type":50,"value":156},{"type":44,"tag":53,"props":40568,"children":40569},{},[40570],{"type":50,"value":161},{"type":44,"tag":124,"props":40572,"children":40573},{"id":164},[40574,40575],{"type":50,"value":167},{"type":44,"tag":81,"props":40576,"children":40578},{"className":40577},[],[40579],{"type":50,"value":173},{"type":44,"tag":53,"props":40581,"children":40582},{},[40583],{"type":50,"value":178},{"type":44,"tag":53,"props":40585,"children":40586},{},[40587,40588,40596],{"type":50,"value":183},{"type":44,"tag":185,"props":40589,"children":40590},{},[40591],{"type":44,"tag":81,"props":40592,"children":40594},{"className":40593},[],[40595],{"type":50,"value":193},{"type":50,"value":195},{"type":44,"tag":197,"props":40598,"children":40599},{":variants":199,"group":200},[40600,41108,41759],{"type":44,"tag":203,"props":40601,"children":40602},{"v-slot:clickhouse":7},[40603],{"type":44,"tag":90,"props":40604,"children":40605},{"className":208,"code":209,"language":210,"meta":7,"style":7},[40606],{"type":44,"tag":81,"props":40607,"children":40608},{"__ignoreMap":7},[40609,40616,40623,40630,40637,40644,40651,40658,40665,40672,40679,40686,40693,40700,40707,40714,40721,40728,40735,40742,40749,40764,40791,40818,40841,40860,40923,40942,40961,41008,41067,41086,41097],{"type":44,"tag":100,"props":40610,"children":40611},{"class":102,"line":103},[40612],{"type":44,"tag":100,"props":40613,"children":40614},{"style":220},[40615],{"type":50,"value":223},{"type":44,"tag":100,"props":40617,"children":40618},{"class":102,"line":226},[40619],{"type":44,"tag":100,"props":40620,"children":40621},{"style":220},[40622],{"type":50,"value":232},{"type":44,"tag":100,"props":40624,"children":40625},{"class":102,"line":235},[40626],{"type":44,"tag":100,"props":40627,"children":40628},{"style":220},[40629],{"type":50,"value":241},{"type":44,"tag":100,"props":40631,"children":40632},{"class":102,"line":24},[40633],{"type":44,"tag":100,"props":40634,"children":40635},{"style":220},[40636],{"type":50,"value":249},{"type":44,"tag":100,"props":40638,"children":40639},{"class":102,"line":252},[40640],{"type":44,"tag":100,"props":40641,"children":40642},{"style":220},[40643],{"type":50,"value":258},{"type":44,"tag":100,"props":40645,"children":40646},{"class":102,"line":261},[40647],{"type":44,"tag":100,"props":40648,"children":40649},{"style":220},[40650],{"type":50,"value":267},{"type":44,"tag":100,"props":40652,"children":40653},{"class":102,"line":270},[40654],{"type":44,"tag":100,"props":40655,"children":40656},{"style":220},[40657],{"type":50,"value":276},{"type":44,"tag":100,"props":40659,"children":40660},{"class":102,"line":279},[40661],{"type":44,"tag":100,"props":40662,"children":40663},{"style":220},[40664],{"type":50,"value":285},{"type":44,"tag":100,"props":40666,"children":40667},{"class":102,"line":288},[40668],{"type":44,"tag":100,"props":40669,"children":40670},{"style":220},[40671],{"type":50,"value":294},{"type":44,"tag":100,"props":40673,"children":40674},{"class":102,"line":297},[40675],{"type":44,"tag":100,"props":40676,"children":40677},{"style":220},[40678],{"type":50,"value":303},{"type":44,"tag":100,"props":40680,"children":40681},{"class":102,"line":306},[40682],{"type":44,"tag":100,"props":40683,"children":40684},{"style":220},[40685],{"type":50,"value":312},{"type":44,"tag":100,"props":40687,"children":40688},{"class":102,"line":315},[40689],{"type":44,"tag":100,"props":40690,"children":40691},{"style":220},[40692],{"type":50,"value":321},{"type":44,"tag":100,"props":40694,"children":40695},{"class":102,"line":324},[40696],{"type":44,"tag":100,"props":40697,"children":40698},{"style":220},[40699],{"type":50,"value":330},{"type":44,"tag":100,"props":40701,"children":40702},{"class":102,"line":333},[40703],{"type":44,"tag":100,"props":40704,"children":40705},{"style":220},[40706],{"type":50,"value":339},{"type":44,"tag":100,"props":40708,"children":40709},{"class":102,"line":11},[40710],{"type":44,"tag":100,"props":40711,"children":40712},{"style":220},[40713],{"type":50,"value":347},{"type":44,"tag":100,"props":40715,"children":40716},{"class":102,"line":350},[40717],{"type":44,"tag":100,"props":40718,"children":40719},{"style":220},[40720],{"type":50,"value":356},{"type":44,"tag":100,"props":40722,"children":40723},{"class":102,"line":359},[40724],{"type":44,"tag":100,"props":40725,"children":40726},{"style":220},[40727],{"type":50,"value":365},{"type":44,"tag":100,"props":40729,"children":40730},{"class":102,"line":368},[40731],{"type":44,"tag":100,"props":40732,"children":40733},{"style":220},[40734],{"type":50,"value":374},{"type":44,"tag":100,"props":40736,"children":40737},{"class":102,"line":377},[40738],{"type":44,"tag":100,"props":40739,"children":40740},{"emptyLinePlaceholder":23},[40741],{"type":50,"value":383},{"type":44,"tag":100,"props":40743,"children":40744},{"class":102,"line":386},[40745],{"type":44,"tag":100,"props":40746,"children":40747},{"style":390},[40748],{"type":50,"value":393},{"type":44,"tag":100,"props":40750,"children":40751},{"class":102,"line":396},[40752,40756,40760],{"type":44,"tag":100,"props":40753,"children":40754},{"style":400},[40755],{"type":50,"value":403},{"type":44,"tag":100,"props":40757,"children":40758},{"style":390},[40759],{"type":50,"value":408},{"type":44,"tag":100,"props":40761,"children":40762},{"style":400},[40763],{"type":50,"value":413},{"type":44,"tag":100,"props":40765,"children":40766},{"class":102,"line":416},[40767,40771,40775,40779,40783,40787],{"type":44,"tag":100,"props":40768,"children":40769},{"style":113},[40770],{"type":50,"value":422},{"type":44,"tag":100,"props":40772,"children":40773},{"style":400},[40774],{"type":50,"value":427},{"type":44,"tag":100,"props":40776,"children":40777},{"style":390},[40778],{"type":50,"value":432},{"type":44,"tag":100,"props":40780,"children":40781},{"style":400},[40782],{"type":50,"value":437},{"type":44,"tag":100,"props":40784,"children":40785},{"style":390},[40786],{"type":50,"value":408},{"type":44,"tag":100,"props":40788,"children":40789},{"style":400},[40790],{"type":50,"value":446},{"type":44,"tag":100,"props":40792,"children":40793},{"class":102,"line":449},[40794,40798,40802,40806,40810,40814],{"type":44,"tag":100,"props":40795,"children":40796},{"style":400},[40797],{"type":50,"value":455},{"type":44,"tag":100,"props":40799,"children":40800},{"style":390},[40801],{"type":50,"value":460},{"type":44,"tag":100,"props":40803,"children":40804},{"style":119},[40805],{"type":50,"value":465},{"type":44,"tag":100,"props":40807,"children":40808},{"style":400},[40809],{"type":50,"value":437},{"type":44,"tag":100,"props":40811,"children":40812},{"style":390},[40813],{"type":50,"value":408},{"type":44,"tag":100,"props":40815,"children":40816},{"style":400},[40817],{"type":50,"value":478},{"type":44,"tag":100,"props":40819,"children":40820},{"class":102,"line":481},[40821,40825,40829,40833,40837],{"type":44,"tag":100,"props":40822,"children":40823},{"style":400},[40824],{"type":50,"value":487},{"type":44,"tag":100,"props":40826,"children":40827},{"style":390},[40828],{"type":50,"value":492},{"type":44,"tag":100,"props":40830,"children":40831},{"style":400},[40832],{"type":50,"value":437},{"type":44,"tag":100,"props":40834,"children":40835},{"style":390},[40836],{"type":50,"value":408},{"type":44,"tag":100,"props":40838,"children":40839},{"style":400},[40840],{"type":50,"value":505},{"type":44,"tag":100,"props":40842,"children":40843},{"class":102,"line":508},[40844,40848,40852,40856],{"type":44,"tag":100,"props":40845,"children":40846},{"style":113},[40847],{"type":50,"value":514},{"type":44,"tag":100,"props":40849,"children":40850},{"style":400},[40851],{"type":50,"value":519},{"type":44,"tag":100,"props":40853,"children":40854},{"style":390},[40855],{"type":50,"value":408},{"type":44,"tag":100,"props":40857,"children":40858},{"style":400},[40859],{"type":50,"value":528},{"type":44,"tag":100,"props":40861,"children":40862},{"class":102,"line":531},[40863,40867,40871,40875,40879,40883,40887,40891,40895,40899,40903,40907,40911,40915,40919],{"type":44,"tag":100,"props":40864,"children":40865},{"style":113},[40866],{"type":50,"value":514},{"type":44,"tag":100,"props":40868,"children":40869},{"style":400},[40870],{"type":50,"value":427},{"type":44,"tag":100,"props":40872,"children":40873},{"style":390},[40874],{"type":50,"value":545},{"type":44,"tag":100,"props":40876,"children":40877},{"style":390},[40878],{"type":50,"value":550},{"type":44,"tag":100,"props":40880,"children":40881},{"style":400},[40882],{"type":50,"value":555},{"type":44,"tag":100,"props":40884,"children":40885},{"style":390},[40886],{"type":50,"value":460},{"type":44,"tag":100,"props":40888,"children":40889},{"style":119},[40890],{"type":50,"value":465},{"type":44,"tag":100,"props":40892,"children":40893},{"style":390},[40894],{"type":50,"value":568},{"type":44,"tag":100,"props":40896,"children":40897},{"style":400},[40898],{"type":50,"value":573},{"type":44,"tag":100,"props":40900,"children":40901},{"style":390},[40902],{"type":50,"value":578},{"type":44,"tag":100,"props":40904,"children":40905},{"style":113},[40906],{"type":50,"value":583},{"type":44,"tag":100,"props":40908,"children":40909},{"style":390},[40910],{"type":50,"value":588},{"type":44,"tag":100,"props":40912,"children":40913},{"style":400},[40914],{"type":50,"value":437},{"type":44,"tag":100,"props":40916,"children":40917},{"style":390},[40918],{"type":50,"value":408},{"type":44,"tag":100,"props":40920,"children":40921},{"style":400},[40922],{"type":50,"value":601},{"type":44,"tag":100,"props":40924,"children":40925},{"class":102,"line":604},[40926,40930,40934,40938],{"type":44,"tag":100,"props":40927,"children":40928},{"style":113},[40929],{"type":50,"value":514},{"type":44,"tag":100,"props":40931,"children":40932},{"style":400},[40933],{"type":50,"value":614},{"type":44,"tag":100,"props":40935,"children":40936},{"style":390},[40937],{"type":50,"value":408},{"type":44,"tag":100,"props":40939,"children":40940},{"style":400},[40941],{"type":50,"value":623},{"type":44,"tag":100,"props":40943,"children":40944},{"class":102,"line":626},[40945,40949,40953,40957],{"type":44,"tag":100,"props":40946,"children":40947},{"style":113},[40948],{"type":50,"value":514},{"type":44,"tag":100,"props":40950,"children":40951},{"style":400},[40952],{"type":50,"value":636},{"type":44,"tag":100,"props":40954,"children":40955},{"style":390},[40956],{"type":50,"value":408},{"type":44,"tag":100,"props":40958,"children":40959},{"style":400},[40960],{"type":50,"value":645},{"type":44,"tag":100,"props":40962,"children":40963},{"class":102,"line":648},[40964,40968,40972,40976,40980,40984,40988,40992,40996,41000,41004],{"type":44,"tag":100,"props":40965,"children":40966},{"style":113},[40967],{"type":50,"value":654},{"type":44,"tag":100,"props":40969,"children":40970},{"style":400},[40971],{"type":50,"value":659},{"type":44,"tag":100,"props":40973,"children":40974},{"style":390},[40975],{"type":50,"value":664},{"type":44,"tag":100,"props":40977,"children":40978},{"style":113},[40979],{"type":50,"value":669},{"type":44,"tag":100,"props":40981,"children":40982},{"style":400},[40983],{"type":50,"value":674},{"type":44,"tag":100,"props":40985,"children":40986},{"style":113},[40987],{"type":50,"value":679},{"type":44,"tag":100,"props":40989,"children":40990},{"style":400},[40991],{"type":50,"value":684},{"type":44,"tag":100,"props":40993,"children":40994},{"style":113},[40995],{"type":50,"value":689},{"type":44,"tag":100,"props":40997,"children":40998},{"style":400},[40999],{"type":50,"value":437},{"type":44,"tag":100,"props":41001,"children":41002},{"style":390},[41003],{"type":50,"value":408},{"type":44,"tag":100,"props":41005,"children":41006},{"style":400},[41007],{"type":50,"value":702},{"type":44,"tag":100,"props":41009,"children":41010},{"class":102,"line":705},[41011,41015,41019,41023,41027,41031,41035,41039,41043,41047,41051,41055,41059,41063],{"type":44,"tag":100,"props":41012,"children":41013},{"style":113},[41014],{"type":50,"value":654},{"type":44,"tag":100,"props":41016,"children":41017},{"style":400},[41018],{"type":50,"value":715},{"type":44,"tag":100,"props":41020,"children":41021},{"style":390},[41022],{"type":50,"value":664},{"type":44,"tag":100,"props":41024,"children":41025},{"style":113},[41026],{"type":50,"value":669},{"type":44,"tag":100,"props":41028,"children":41029},{"style":400},[41030],{"type":50,"value":728},{"type":44,"tag":100,"props":41032,"children":41033},{"style":113},[41034],{"type":50,"value":679},{"type":44,"tag":100,"props":41036,"children":41037},{"style":400},[41038],{"type":50,"value":437},{"type":44,"tag":100,"props":41040,"children":41041},{"style":390},[41042],{"type":50,"value":432},{"type":44,"tag":100,"props":41044,"children":41045},{"style":113},[41046],{"type":50,"value":745},{"type":44,"tag":100,"props":41048,"children":41049},{"style":400},[41050],{"type":50,"value":750},{"type":44,"tag":100,"props":41052,"children":41053},{"style":113},[41054],{"type":50,"value":689},{"type":44,"tag":100,"props":41056,"children":41057},{"style":400},[41058],{"type":50,"value":437},{"type":44,"tag":100,"props":41060,"children":41061},{"style":390},[41062],{"type":50,"value":408},{"type":44,"tag":100,"props":41064,"children":41065},{"style":400},[41066],{"type":50,"value":767},{"type":44,"tag":100,"props":41068,"children":41069},{"class":102,"line":770},[41070,41074,41078,41082],{"type":44,"tag":100,"props":41071,"children":41072},{"style":390},[41073],{"type":50,"value":776},{"type":44,"tag":100,"props":41075,"children":41076},{"style":113},[41077],{"type":50,"value":781},{"type":44,"tag":100,"props":41079,"children":41080},{"style":400},[41081],{"type":50,"value":786},{"type":44,"tag":100,"props":41083,"children":41084},{"style":113},[41085],{"type":50,"value":791},{"type":44,"tag":100,"props":41087,"children":41088},{"class":102,"line":794},[41089,41093],{"type":44,"tag":100,"props":41090,"children":41091},{"style":390},[41092],{"type":50,"value":800},{"type":44,"tag":100,"props":41094,"children":41095},{"style":400},[41096],{"type":50,"value":805},{"type":44,"tag":100,"props":41098,"children":41099},{"class":102,"line":808},[41100,41104],{"type":44,"tag":100,"props":41101,"children":41102},{"style":390},[41103],{"type":50,"value":814},{"type":44,"tag":100,"props":41105,"children":41106},{"style":400},[41107],{"type":50,"value":819},{"type":44,"tag":203,"props":41109,"children":41110},{"v-slot:bigquery":7},[41111],{"type":44,"tag":90,"props":41112,"children":41113},{"className":208,"code":825,"language":210,"meta":7,"style":7},[41114],{"type":44,"tag":81,"props":41115,"children":41116},{"__ignoreMap":7},[41117,41124,41131,41138,41145,41152,41159,41166,41173,41180,41187,41194,41201,41208,41215,41222,41229,41236,41243,41250,41257,41276,41303,41330,41353,41372,41435,41454,41473,41584,41667,41690,41733,41748],{"type":44,"tag":100,"props":41118,"children":41119},{"class":102,"line":103},[41120],{"type":44,"tag":100,"props":41121,"children":41122},{"style":220},[41123],{"type":50,"value":223},{"type":44,"tag":100,"props":41125,"children":41126},{"class":102,"line":226},[41127],{"type":44,"tag":100,"props":41128,"children":41129},{"style":220},[41130],{"type":50,"value":232},{"type":44,"tag":100,"props":41132,"children":41133},{"class":102,"line":235},[41134],{"type":44,"tag":100,"props":41135,"children":41136},{"style":220},[41137],{"type":50,"value":241},{"type":44,"tag":100,"props":41139,"children":41140},{"class":102,"line":24},[41141],{"type":44,"tag":100,"props":41142,"children":41143},{"style":220},[41144],{"type":50,"value":249},{"type":44,"tag":100,"props":41146,"children":41147},{"class":102,"line":252},[41148],{"type":44,"tag":100,"props":41149,"children":41150},{"style":220},[41151],{"type":50,"value":258},{"type":44,"tag":100,"props":41153,"children":41154},{"class":102,"line":261},[41155],{"type":44,"tag":100,"props":41156,"children":41157},{"style":220},[41158],{"type":50,"value":267},{"type":44,"tag":100,"props":41160,"children":41161},{"class":102,"line":270},[41162],{"type":44,"tag":100,"props":41163,"children":41164},{"style":220},[41165],{"type":50,"value":276},{"type":44,"tag":100,"props":41167,"children":41168},{"class":102,"line":279},[41169],{"type":44,"tag":100,"props":41170,"children":41171},{"style":220},[41172],{"type":50,"value":285},{"type":44,"tag":100,"props":41174,"children":41175},{"class":102,"line":288},[41176],{"type":44,"tag":100,"props":41177,"children":41178},{"style":220},[41179],{"type":50,"value":294},{"type":44,"tag":100,"props":41181,"children":41182},{"class":102,"line":297},[41183],{"type":44,"tag":100,"props":41184,"children":41185},{"style":220},[41186],{"type":50,"value":303},{"type":44,"tag":100,"props":41188,"children":41189},{"class":102,"line":306},[41190],{"type":44,"tag":100,"props":41191,"children":41192},{"style":220},[41193],{"type":50,"value":312},{"type":44,"tag":100,"props":41195,"children":41196},{"class":102,"line":315},[41197],{"type":44,"tag":100,"props":41198,"children":41199},{"style":220},[41200],{"type":50,"value":321},{"type":44,"tag":100,"props":41202,"children":41203},{"class":102,"line":324},[41204],{"type":44,"tag":100,"props":41205,"children":41206},{"style":220},[41207],{"type":50,"value":330},{"type":44,"tag":100,"props":41209,"children":41210},{"class":102,"line":333},[41211],{"type":44,"tag":100,"props":41212,"children":41213},{"style":220},[41214],{"type":50,"value":339},{"type":44,"tag":100,"props":41216,"children":41217},{"class":102,"line":11},[41218],{"type":44,"tag":100,"props":41219,"children":41220},{"style":220},[41221],{"type":50,"value":347},{"type":44,"tag":100,"props":41223,"children":41224},{"class":102,"line":350},[41225],{"type":44,"tag":100,"props":41226,"children":41227},{"style":220},[41228],{"type":50,"value":356},{"type":44,"tag":100,"props":41230,"children":41231},{"class":102,"line":359},[41232],{"type":44,"tag":100,"props":41233,"children":41234},{"style":220},[41235],{"type":50,"value":365},{"type":44,"tag":100,"props":41237,"children":41238},{"class":102,"line":368},[41239],{"type":44,"tag":100,"props":41240,"children":41241},{"style":220},[41242],{"type":50,"value":374},{"type":44,"tag":100,"props":41244,"children":41245},{"class":102,"line":377},[41246],{"type":44,"tag":100,"props":41247,"children":41248},{"emptyLinePlaceholder":23},[41249],{"type":50,"value":383},{"type":44,"tag":100,"props":41251,"children":41252},{"class":102,"line":386},[41253],{"type":44,"tag":100,"props":41254,"children":41255},{"style":390},[41256],{"type":50,"value":393},{"type":44,"tag":100,"props":41258,"children":41259},{"class":102,"line":396},[41260,41264,41268,41272],{"type":44,"tag":100,"props":41261,"children":41262},{"style":390},[41263],{"type":50,"value":977},{"type":44,"tag":100,"props":41265,"children":41266},{"style":400},[41267],{"type":50,"value":982},{"type":44,"tag":100,"props":41269,"children":41270},{"style":390},[41271],{"type":50,"value":408},{"type":44,"tag":100,"props":41273,"children":41274},{"style":400},[41275],{"type":50,"value":413},{"type":44,"tag":100,"props":41277,"children":41278},{"class":102,"line":416},[41279,41283,41287,41291,41295,41299],{"type":44,"tag":100,"props":41280,"children":41281},{"style":113},[41282],{"type":50,"value":422},{"type":44,"tag":100,"props":41284,"children":41285},{"style":400},[41286],{"type":50,"value":427},{"type":44,"tag":100,"props":41288,"children":41289},{"style":390},[41290],{"type":50,"value":432},{"type":44,"tag":100,"props":41292,"children":41293},{"style":400},[41294],{"type":50,"value":437},{"type":44,"tag":100,"props":41296,"children":41297},{"style":390},[41298],{"type":50,"value":408},{"type":44,"tag":100,"props":41300,"children":41301},{"style":400},[41302],{"type":50,"value":446},{"type":44,"tag":100,"props":41304,"children":41305},{"class":102,"line":449},[41306,41310,41314,41318,41322,41326],{"type":44,"tag":100,"props":41307,"children":41308},{"style":400},[41309],{"type":50,"value":1025},{"type":44,"tag":100,"props":41311,"children":41312},{"style":390},[41313],{"type":50,"value":460},{"type":44,"tag":100,"props":41315,"children":41316},{"style":119},[41317],{"type":50,"value":465},{"type":44,"tag":100,"props":41319,"children":41320},{"style":400},[41321],{"type":50,"value":437},{"type":44,"tag":100,"props":41323,"children":41324},{"style":390},[41325],{"type":50,"value":408},{"type":44,"tag":100,"props":41327,"children":41328},{"style":400},[41329],{"type":50,"value":478},{"type":44,"tag":100,"props":41331,"children":41332},{"class":102,"line":481},[41333,41337,41341,41345,41349],{"type":44,"tag":100,"props":41334,"children":41335},{"style":400},[41336],{"type":50,"value":1053},{"type":44,"tag":100,"props":41338,"children":41339},{"style":390},[41340],{"type":50,"value":492},{"type":44,"tag":100,"props":41342,"children":41343},{"style":400},[41344],{"type":50,"value":437},{"type":44,"tag":100,"props":41346,"children":41347},{"style":390},[41348],{"type":50,"value":408},{"type":44,"tag":100,"props":41350,"children":41351},{"style":400},[41352],{"type":50,"value":505},{"type":44,"tag":100,"props":41354,"children":41355},{"class":102,"line":508},[41356,41360,41364,41368],{"type":44,"tag":100,"props":41357,"children":41358},{"style":113},[41359],{"type":50,"value":514},{"type":44,"tag":100,"props":41361,"children":41362},{"style":400},[41363],{"type":50,"value":519},{"type":44,"tag":100,"props":41365,"children":41366},{"style":390},[41367],{"type":50,"value":408},{"type":44,"tag":100,"props":41369,"children":41370},{"style":400},[41371],{"type":50,"value":528},{"type":44,"tag":100,"props":41373,"children":41374},{"class":102,"line":531},[41375,41379,41383,41387,41391,41395,41399,41403,41407,41411,41415,41419,41423,41427,41431],{"type":44,"tag":100,"props":41376,"children":41377},{"style":113},[41378],{"type":50,"value":514},{"type":44,"tag":100,"props":41380,"children":41381},{"style":400},[41382],{"type":50,"value":427},{"type":44,"tag":100,"props":41384,"children":41385},{"style":390},[41386],{"type":50,"value":545},{"type":44,"tag":100,"props":41388,"children":41389},{"style":390},[41390],{"type":50,"value":550},{"type":44,"tag":100,"props":41392,"children":41393},{"style":400},[41394],{"type":50,"value":555},{"type":44,"tag":100,"props":41396,"children":41397},{"style":390},[41398],{"type":50,"value":460},{"type":44,"tag":100,"props":41400,"children":41401},{"style":119},[41402],{"type":50,"value":465},{"type":44,"tag":100,"props":41404,"children":41405},{"style":390},[41406],{"type":50,"value":568},{"type":44,"tag":100,"props":41408,"children":41409},{"style":400},[41410],{"type":50,"value":573},{"type":44,"tag":100,"props":41412,"children":41413},{"style":390},[41414],{"type":50,"value":578},{"type":44,"tag":100,"props":41416,"children":41417},{"style":113},[41418],{"type":50,"value":583},{"type":44,"tag":100,"props":41420,"children":41421},{"style":390},[41422],{"type":50,"value":588},{"type":44,"tag":100,"props":41424,"children":41425},{"style":400},[41426],{"type":50,"value":437},{"type":44,"tag":100,"props":41428,"children":41429},{"style":390},[41430],{"type":50,"value":408},{"type":44,"tag":100,"props":41432,"children":41433},{"style":400},[41434],{"type":50,"value":601},{"type":44,"tag":100,"props":41436,"children":41437},{"class":102,"line":604},[41438,41442,41446,41450],{"type":44,"tag":100,"props":41439,"children":41440},{"style":113},[41441],{"type":50,"value":514},{"type":44,"tag":100,"props":41443,"children":41444},{"style":400},[41445],{"type":50,"value":614},{"type":44,"tag":100,"props":41447,"children":41448},{"style":390},[41449],{"type":50,"value":408},{"type":44,"tag":100,"props":41451,"children":41452},{"style":400},[41453],{"type":50,"value":623},{"type":44,"tag":100,"props":41455,"children":41456},{"class":102,"line":626},[41457,41461,41465,41469],{"type":44,"tag":100,"props":41458,"children":41459},{"style":113},[41460],{"type":50,"value":514},{"type":44,"tag":100,"props":41462,"children":41463},{"style":400},[41464],{"type":50,"value":636},{"type":44,"tag":100,"props":41466,"children":41467},{"style":390},[41468],{"type":50,"value":408},{"type":44,"tag":100,"props":41470,"children":41471},{"style":400},[41472],{"type":50,"value":645},{"type":44,"tag":100,"props":41474,"children":41475},{"class":102,"line":648},[41476,41480,41484,41488,41492,41496,41500,41504,41508,41512,41516,41520,41524,41528,41532,41536,41540,41544,41548,41552,41556,41560,41564,41568,41572,41576,41580],{"type":44,"tag":100,"props":41477,"children":41478},{"style":113},[41479],{"type":50,"value":654},{"type":44,"tag":100,"props":41481,"children":41482},{"style":400},[41483],{"type":50,"value":427},{"type":44,"tag":100,"props":41485,"children":41486},{"style":113},[41487],{"type":50,"value":1205},{"type":44,"tag":100,"props":41489,"children":41490},{"style":400},[41491],{"type":50,"value":427},{"type":44,"tag":100,"props":41493,"children":41494},{"style":390},[41495],{"type":50,"value":545},{"type":44,"tag":100,"props":41497,"children":41498},{"style":390},[41499],{"type":50,"value":550},{"type":44,"tag":100,"props":41501,"children":41502},{"style":400},[41503],{"type":50,"value":555},{"type":44,"tag":100,"props":41505,"children":41506},{"style":390},[41507],{"type":50,"value":460},{"type":44,"tag":100,"props":41509,"children":41510},{"style":119},[41511],{"type":50,"value":465},{"type":44,"tag":100,"props":41513,"children":41514},{"style":390},[41515],{"type":50,"value":568},{"type":44,"tag":100,"props":41517,"children":41518},{"style":400},[41519],{"type":50,"value":573},{"type":44,"tag":100,"props":41521,"children":41522},{"style":390},[41523],{"type":50,"value":578},{"type":44,"tag":100,"props":41525,"children":41526},{"style":113},[41527],{"type":50,"value":583},{"type":44,"tag":100,"props":41529,"children":41530},{"style":390},[41531],{"type":50,"value":588},{"type":44,"tag":100,"props":41533,"children":41534},{"style":400},[41535],{"type":50,"value":437},{"type":44,"tag":100,"props":41537,"children":41538},{"style":390},[41539],{"type":50,"value":664},{"type":44,"tag":100,"props":41541,"children":41542},{"style":113},[41543],{"type":50,"value":1262},{"type":44,"tag":100,"props":41545,"children":41546},{"style":400},[41547],{"type":50,"value":1267},{"type":44,"tag":100,"props":41549,"children":41550},{"style":390},[41551],{"type":50,"value":460},{"type":44,"tag":100,"props":41553,"children":41554},{"style":119},[41555],{"type":50,"value":465},{"type":44,"tag":100,"props":41557,"children":41558},{"style":400},[41559],{"type":50,"value":684},{"type":44,"tag":100,"props":41561,"children":41562},{"style":113},[41563],{"type":50,"value":679},{"type":44,"tag":100,"props":41565,"children":41566},{"style":400},[41567],{"type":50,"value":684},{"type":44,"tag":100,"props":41569,"children":41570},{"style":113},[41571],{"type":50,"value":689},{"type":44,"tag":100,"props":41573,"children":41574},{"style":400},[41575],{"type":50,"value":437},{"type":44,"tag":100,"props":41577,"children":41578},{"style":390},[41579],{"type":50,"value":408},{"type":44,"tag":100,"props":41581,"children":41582},{"style":400},[41583],{"type":50,"value":702},{"type":44,"tag":100,"props":41585,"children":41586},{"class":102,"line":705},[41587,41591,41595,41599,41603,41607,41611,41615,41619,41623,41627,41631,41635,41639,41643,41647,41651,41655,41659,41663],{"type":44,"tag":100,"props":41588,"children":41589},{"style":113},[41590],{"type":50,"value":654},{"type":44,"tag":100,"props":41592,"children":41593},{"style":400},[41594],{"type":50,"value":1315},{"type":44,"tag":100,"props":41596,"children":41597},{"style":390},[41598],{"type":50,"value":492},{"type":44,"tag":100,"props":41600,"children":41601},{"style":400},[41602],{"type":50,"value":437},{"type":44,"tag":100,"props":41604,"children":41605},{"style":390},[41606],{"type":50,"value":664},{"type":44,"tag":100,"props":41608,"children":41609},{"style":113},[41610],{"type":50,"value":1262},{"type":44,"tag":100,"props":41612,"children":41613},{"style":400},[41614],{"type":50,"value":427},{"type":44,"tag":100,"props":41616,"children":41617},{"style":113},[41618],{"type":50,"value":1340},{"type":44,"tag":100,"props":41620,"children":41621},{"style":400},[41622],{"type":50,"value":427},{"type":44,"tag":100,"props":41624,"children":41625},{"style":390},[41626],{"type":50,"value":432},{"type":44,"tag":100,"props":41628,"children":41629},{"style":400},[41630],{"type":50,"value":684},{"type":44,"tag":100,"props":41632,"children":41633},{"style":113},[41634],{"type":50,"value":679},{"type":44,"tag":100,"props":41636,"children":41637},{"style":400},[41638],{"type":50,"value":437},{"type":44,"tag":100,"props":41640,"children":41641},{"style":390},[41642],{"type":50,"value":432},{"type":44,"tag":100,"props":41644,"children":41645},{"style":113},[41646],{"type":50,"value":745},{"type":44,"tag":100,"props":41648,"children":41649},{"style":400},[41650],{"type":50,"value":750},{"type":44,"tag":100,"props":41652,"children":41653},{"style":113},[41654],{"type":50,"value":689},{"type":44,"tag":100,"props":41656,"children":41657},{"style":400},[41658],{"type":50,"value":437},{"type":44,"tag":100,"props":41660,"children":41661},{"style":390},[41662],{"type":50,"value":408},{"type":44,"tag":100,"props":41664,"children":41665},{"style":400},[41666],{"type":50,"value":767},{"type":44,"tag":100,"props":41668,"children":41669},{"class":102,"line":770},[41670,41674,41678,41682,41686],{"type":44,"tag":100,"props":41671,"children":41672},{"style":390},[41673],{"type":50,"value":776},{"type":44,"tag":100,"props":41675,"children":41676},{"style":113},[41677],{"type":50,"value":781},{"type":44,"tag":100,"props":41679,"children":41680},{"style":400},[41681],{"type":50,"value":786},{"type":44,"tag":100,"props":41683,"children":41684},{"style":113},[41685],{"type":50,"value":1408},{"type":44,"tag":100,"props":41687,"children":41688},{"style":400},[41689],{"type":50,"value":1413},{"type":44,"tag":100,"props":41691,"children":41692},{"class":102,"line":794},[41693,41697,41701,41705,41709,41713,41717,41721,41725,41729],{"type":44,"tag":100,"props":41694,"children":41695},{"style":390},[41696],{"type":50,"value":1421},{"type":44,"tag":100,"props":41698,"children":41699},{"style":113},[41700],{"type":50,"value":1426},{"type":44,"tag":100,"props":41702,"children":41703},{"style":400},[41704],{"type":50,"value":786},{"type":44,"tag":100,"props":41706,"children":41707},{"style":113},[41708],{"type":50,"value":1435},{"type":44,"tag":100,"props":41710,"children":41711},{"style":390},[41712],{"type":50,"value":1440},{"type":44,"tag":100,"props":41714,"children":41715},{"style":400},[41716],{"type":50,"value":1445},{"type":44,"tag":100,"props":41718,"children":41719},{"style":119},[41720],{"type":50,"value":1450},{"type":44,"tag":100,"props":41722,"children":41723},{"style":400},[41724],{"type":50,"value":750},{"type":44,"tag":100,"props":41726,"children":41727},{"style":119},[41728],{"type":50,"value":1459},{"type":44,"tag":100,"props":41730,"children":41731},{"style":400},[41732],{"type":50,"value":1464},{"type":44,"tag":100,"props":41734,"children":41735},{"class":102,"line":808},[41736,41740,41744],{"type":44,"tag":100,"props":41737,"children":41738},{"style":390},[41739],{"type":50,"value":800},{"type":44,"tag":100,"props":41741,"children":41742},{"style":390},[41743],{"type":50,"value":1476},{"type":44,"tag":100,"props":41745,"children":41746},{"style":400},[41747],{"type":50,"value":1481},{"type":44,"tag":100,"props":41749,"children":41750},{"class":102,"line":1484},[41751,41755],{"type":44,"tag":100,"props":41752,"children":41753},{"style":390},[41754],{"type":50,"value":814},{"type":44,"tag":100,"props":41756,"children":41757},{"style":400},[41758],{"type":50,"value":819},{"type":44,"tag":203,"props":41760,"children":41761},{"v-slot:snowflake":7},[41762],{"type":44,"tag":90,"props":41763,"children":41764},{"className":208,"code":1499,"language":210,"meta":7,"style":7},[41765],{"type":44,"tag":81,"props":41766,"children":41767},{"__ignoreMap":7},[41768,41775,41782,41789,41796,41803,41810,41817,41824,41831,41838,41845,41852,41859,41866,41873,41880,41887,41894,41901,41908,41927,41954,42009,42060,42079,42142,42161,42180,42323,42438,42457,42472],{"type":44,"tag":100,"props":41769,"children":41770},{"class":102,"line":103},[41771],{"type":44,"tag":100,"props":41772,"children":41773},{"style":220},[41774],{"type":50,"value":223},{"type":44,"tag":100,"props":41776,"children":41777},{"class":102,"line":226},[41778],{"type":44,"tag":100,"props":41779,"children":41780},{"style":220},[41781],{"type":50,"value":232},{"type":44,"tag":100,"props":41783,"children":41784},{"class":102,"line":235},[41785],{"type":44,"tag":100,"props":41786,"children":41787},{"style":220},[41788],{"type":50,"value":241},{"type":44,"tag":100,"props":41790,"children":41791},{"class":102,"line":24},[41792],{"type":44,"tag":100,"props":41793,"children":41794},{"style":220},[41795],{"type":50,"value":249},{"type":44,"tag":100,"props":41797,"children":41798},{"class":102,"line":252},[41799],{"type":44,"tag":100,"props":41800,"children":41801},{"style":220},[41802],{"type":50,"value":258},{"type":44,"tag":100,"props":41804,"children":41805},{"class":102,"line":261},[41806],{"type":44,"tag":100,"props":41807,"children":41808},{"style":220},[41809],{"type":50,"value":267},{"type":44,"tag":100,"props":41811,"children":41812},{"class":102,"line":270},[41813],{"type":44,"tag":100,"props":41814,"children":41815},{"style":220},[41816],{"type":50,"value":276},{"type":44,"tag":100,"props":41818,"children":41819},{"class":102,"line":279},[41820],{"type":44,"tag":100,"props":41821,"children":41822},{"style":220},[41823],{"type":50,"value":285},{"type":44,"tag":100,"props":41825,"children":41826},{"class":102,"line":288},[41827],{"type":44,"tag":100,"props":41828,"children":41829},{"style":220},[41830],{"type":50,"value":294},{"type":44,"tag":100,"props":41832,"children":41833},{"class":102,"line":297},[41834],{"type":44,"tag":100,"props":41835,"children":41836},{"style":220},[41837],{"type":50,"value":303},{"type":44,"tag":100,"props":41839,"children":41840},{"class":102,"line":306},[41841],{"type":44,"tag":100,"props":41842,"children":41843},{"style":220},[41844],{"type":50,"value":312},{"type":44,"tag":100,"props":41846,"children":41847},{"class":102,"line":315},[41848],{"type":44,"tag":100,"props":41849,"children":41850},{"style":220},[41851],{"type":50,"value":321},{"type":44,"tag":100,"props":41853,"children":41854},{"class":102,"line":324},[41855],{"type":44,"tag":100,"props":41856,"children":41857},{"style":220},[41858],{"type":50,"value":330},{"type":44,"tag":100,"props":41860,"children":41861},{"class":102,"line":333},[41862],{"type":44,"tag":100,"props":41863,"children":41864},{"style":220},[41865],{"type":50,"value":339},{"type":44,"tag":100,"props":41867,"children":41868},{"class":102,"line":11},[41869],{"type":44,"tag":100,"props":41870,"children":41871},{"style":220},[41872],{"type":50,"value":347},{"type":44,"tag":100,"props":41874,"children":41875},{"class":102,"line":350},[41876],{"type":44,"tag":100,"props":41877,"children":41878},{"style":220},[41879],{"type":50,"value":356},{"type":44,"tag":100,"props":41881,"children":41882},{"class":102,"line":359},[41883],{"type":44,"tag":100,"props":41884,"children":41885},{"style":220},[41886],{"type":50,"value":365},{"type":44,"tag":100,"props":41888,"children":41889},{"class":102,"line":368},[41890],{"type":44,"tag":100,"props":41891,"children":41892},{"style":220},[41893],{"type":50,"value":374},{"type":44,"tag":100,"props":41895,"children":41896},{"class":102,"line":377},[41897],{"type":44,"tag":100,"props":41898,"children":41899},{"emptyLinePlaceholder":23},[41900],{"type":50,"value":383},{"type":44,"tag":100,"props":41902,"children":41903},{"class":102,"line":386},[41904],{"type":44,"tag":100,"props":41905,"children":41906},{"style":390},[41907],{"type":50,"value":393},{"type":44,"tag":100,"props":41909,"children":41910},{"class":102,"line":396},[41911,41915,41919,41923],{"type":44,"tag":100,"props":41912,"children":41913},{"style":400},[41914],{"type":50,"value":1651},{"type":44,"tag":100,"props":41916,"children":41917},{"style":390},[41918],{"type":50,"value":1656},{"type":44,"tag":100,"props":41920,"children":41921},{"style":390},[41922],{"type":50,"value":1661},{"type":44,"tag":100,"props":41924,"children":41925},{"style":400},[41926],{"type":50,"value":413},{"type":44,"tag":100,"props":41928,"children":41929},{"class":102,"line":416},[41930,41934,41938,41942,41946,41950],{"type":44,"tag":100,"props":41931,"children":41932},{"style":113},[41933],{"type":50,"value":422},{"type":44,"tag":100,"props":41935,"children":41936},{"style":400},[41937],{"type":50,"value":427},{"type":44,"tag":100,"props":41939,"children":41940},{"style":390},[41941],{"type":50,"value":432},{"type":44,"tag":100,"props":41943,"children":41944},{"style":400},[41945],{"type":50,"value":437},{"type":44,"tag":100,"props":41947,"children":41948},{"style":390},[41949],{"type":50,"value":408},{"type":44,"tag":100,"props":41951,"children":41952},{"style":400},[41953],{"type":50,"value":446},{"type":44,"tag":100,"props":41955,"children":41956},{"class":102,"line":449},[41957,41961,41965,41969,41973,41977,41981,41985,41989,41993,41997,42001,42005],{"type":44,"tag":100,"props":41958,"children":41959},{"style":113},[41960],{"type":50,"value":1700},{"type":44,"tag":100,"props":41962,"children":41963},{"style":400},[41964],{"type":50,"value":427},{"type":44,"tag":100,"props":41966,"children":41967},{"style":390},[41968],{"type":50,"value":545},{"type":44,"tag":100,"props":41970,"children":41971},{"style":390},[41972],{"type":50,"value":550},{"type":44,"tag":100,"props":41974,"children":41975},{"style":400},[41976],{"type":50,"value":555},{"type":44,"tag":100,"props":41978,"children":41979},{"style":390},[41980],{"type":50,"value":460},{"type":44,"tag":100,"props":41982,"children":41983},{"style":119},[41984],{"type":50,"value":465},{"type":44,"tag":100,"props":41986,"children":41987},{"style":390},[41988],{"type":50,"value":568},{"type":44,"tag":100,"props":41990,"children":41991},{"style":113},[41992],{"type":50,"value":1733},{"type":44,"tag":100,"props":41994,"children":41995},{"style":390},[41996],{"type":50,"value":588},{"type":44,"tag":100,"props":41998,"children":41999},{"style":400},[42000],{"type":50,"value":437},{"type":44,"tag":100,"props":42002,"children":42003},{"style":390},[42004],{"type":50,"value":408},{"type":44,"tag":100,"props":42006,"children":42007},{"style":400},[42008],{"type":50,"value":478},{"type":44,"tag":100,"props":42010,"children":42011},{"class":102,"line":481},[42012,42016,42020,42024,42028,42032,42036,42040,42044,42048,42052,42056],{"type":44,"tag":100,"props":42013,"children":42014},{"style":113},[42015],{"type":50,"value":1700},{"type":44,"tag":100,"props":42017,"children":42018},{"style":400},[42019],{"type":50,"value":427},{"type":44,"tag":100,"props":42021,"children":42022},{"style":390},[42023],{"type":50,"value":545},{"type":44,"tag":100,"props":42025,"children":42026},{"style":390},[42027],{"type":50,"value":550},{"type":44,"tag":100,"props":42029,"children":42030},{"style":400},[42031],{"type":50,"value":1773},{"type":44,"tag":100,"props":42033,"children":42034},{"style":390},[42035],{"type":50,"value":492},{"type":44,"tag":100,"props":42037,"children":42038},{"style":390},[42039],{"type":50,"value":568},{"type":44,"tag":100,"props":42041,"children":42042},{"style":113},[42043],{"type":50,"value":1733},{"type":44,"tag":100,"props":42045,"children":42046},{"style":390},[42047],{"type":50,"value":588},{"type":44,"tag":100,"props":42049,"children":42050},{"style":400},[42051],{"type":50,"value":437},{"type":44,"tag":100,"props":42053,"children":42054},{"style":390},[42055],{"type":50,"value":408},{"type":44,"tag":100,"props":42057,"children":42058},{"style":400},[42059],{"type":50,"value":505},{"type":44,"tag":100,"props":42061,"children":42062},{"class":102,"line":508},[42063,42067,42071,42075],{"type":44,"tag":100,"props":42064,"children":42065},{"style":113},[42066],{"type":50,"value":514},{"type":44,"tag":100,"props":42068,"children":42069},{"style":400},[42070],{"type":50,"value":519},{"type":44,"tag":100,"props":42072,"children":42073},{"style":390},[42074],{"type":50,"value":408},{"type":44,"tag":100,"props":42076,"children":42077},{"style":400},[42078],{"type":50,"value":528},{"type":44,"tag":100,"props":42080,"children":42081},{"class":102,"line":531},[42082,42086,42090,42094,42098,42102,42106,42110,42114,42118,42122,42126,42130,42134,42138],{"type":44,"tag":100,"props":42083,"children":42084},{"style":113},[42085],{"type":50,"value":514},{"type":44,"tag":100,"props":42087,"children":42088},{"style":400},[42089],{"type":50,"value":427},{"type":44,"tag":100,"props":42091,"children":42092},{"style":390},[42093],{"type":50,"value":545},{"type":44,"tag":100,"props":42095,"children":42096},{"style":390},[42097],{"type":50,"value":550},{"type":44,"tag":100,"props":42099,"children":42100},{"style":400},[42101],{"type":50,"value":555},{"type":44,"tag":100,"props":42103,"children":42104},{"style":390},[42105],{"type":50,"value":460},{"type":44,"tag":100,"props":42107,"children":42108},{"style":119},[42109],{"type":50,"value":465},{"type":44,"tag":100,"props":42111,"children":42112},{"style":390},[42113],{"type":50,"value":568},{"type":44,"tag":100,"props":42115,"children":42116},{"style":400},[42117],{"type":50,"value":573},{"type":44,"tag":100,"props":42119,"children":42120},{"style":390},[42121],{"type":50,"value":578},{"type":44,"tag":100,"props":42123,"children":42124},{"style":113},[42125],{"type":50,"value":583},{"type":44,"tag":100,"props":42127,"children":42128},{"style":390},[42129],{"type":50,"value":588},{"type":44,"tag":100,"props":42131,"children":42132},{"style":400},[42133],{"type":50,"value":437},{"type":44,"tag":100,"props":42135,"children":42136},{"style":390},[42137],{"type":50,"value":408},{"type":44,"tag":100,"props":42139,"children":42140},{"style":400},[42141],{"type":50,"value":601},{"type":44,"tag":100,"props":42143,"children":42144},{"class":102,"line":604},[42145,42149,42153,42157],{"type":44,"tag":100,"props":42146,"children":42147},{"style":113},[42148],{"type":50,"value":514},{"type":44,"tag":100,"props":42150,"children":42151},{"style":400},[42152],{"type":50,"value":614},{"type":44,"tag":100,"props":42154,"children":42155},{"style":390},[42156],{"type":50,"value":408},{"type":44,"tag":100,"props":42158,"children":42159},{"style":400},[42160],{"type":50,"value":623},{"type":44,"tag":100,"props":42162,"children":42163},{"class":102,"line":626},[42164,42168,42172,42176],{"type":44,"tag":100,"props":42165,"children":42166},{"style":113},[42167],{"type":50,"value":514},{"type":44,"tag":100,"props":42169,"children":42170},{"style":400},[42171],{"type":50,"value":636},{"type":44,"tag":100,"props":42173,"children":42174},{"style":390},[42175],{"type":50,"value":408},{"type":44,"tag":100,"props":42177,"children":42178},{"style":400},[42179],{"type":50,"value":645},{"type":44,"tag":100,"props":42181,"children":42182},{"class":102,"line":648},[42183,42187,42191,42195,42199,42203,42207,42211,42215,42219,42223,42227,42231,42235,42239,42243,42247,42251,42255,42259,42263,42267,42271,42275,42279,42283,42287,42291,42295,42299,42303,42307,42311,42315,42319],{"type":44,"tag":100,"props":42184,"children":42185},{"style":113},[42186],{"type":50,"value":654},{"type":44,"tag":100,"props":42188,"children":42189},{"style":400},[42190],{"type":50,"value":427},{"type":44,"tag":100,"props":42192,"children":42193},{"style":113},[42194],{"type":50,"value":1205},{"type":44,"tag":100,"props":42196,"children":42197},{"style":400},[42198],{"type":50,"value":427},{"type":44,"tag":100,"props":42200,"children":42201},{"style":390},[42202],{"type":50,"value":545},{"type":44,"tag":100,"props":42204,"children":42205},{"style":390},[42206],{"type":50,"value":550},{"type":44,"tag":100,"props":42208,"children":42209},{"style":400},[42210],{"type":50,"value":555},{"type":44,"tag":100,"props":42212,"children":42213},{"style":390},[42214],{"type":50,"value":460},{"type":44,"tag":100,"props":42216,"children":42217},{"style":119},[42218],{"type":50,"value":465},{"type":44,"tag":100,"props":42220,"children":42221},{"style":390},[42222],{"type":50,"value":568},{"type":44,"tag":100,"props":42224,"children":42225},{"style":400},[42226],{"type":50,"value":573},{"type":44,"tag":100,"props":42228,"children":42229},{"style":390},[42230],{"type":50,"value":578},{"type":44,"tag":100,"props":42232,"children":42233},{"style":113},[42234],{"type":50,"value":583},{"type":44,"tag":100,"props":42236,"children":42237},{"style":390},[42238],{"type":50,"value":588},{"type":44,"tag":100,"props":42240,"children":42241},{"style":400},[42242],{"type":50,"value":437},{"type":44,"tag":100,"props":42244,"children":42245},{"style":390},[42246],{"type":50,"value":664},{"type":44,"tag":100,"props":42248,"children":42249},{"style":113},[42250],{"type":50,"value":1262},{"type":44,"tag":100,"props":42252,"children":42253},{"style":400},[42254],{"type":50,"value":427},{"type":44,"tag":100,"props":42256,"children":42257},{"style":113},[42258],{"type":50,"value":2001},{"type":44,"tag":100,"props":42260,"children":42261},{"style":400},[42262],{"type":50,"value":427},{"type":44,"tag":100,"props":42264,"children":42265},{"style":390},[42266],{"type":50,"value":545},{"type":44,"tag":100,"props":42268,"children":42269},{"style":390},[42270],{"type":50,"value":550},{"type":44,"tag":100,"props":42272,"children":42273},{"style":400},[42274],{"type":50,"value":555},{"type":44,"tag":100,"props":42276,"children":42277},{"style":390},[42278],{"type":50,"value":460},{"type":44,"tag":100,"props":42280,"children":42281},{"style":119},[42282],{"type":50,"value":465},{"type":44,"tag":100,"props":42284,"children":42285},{"style":390},[42286],{"type":50,"value":568},{"type":44,"tag":100,"props":42288,"children":42289},{"style":113},[42290],{"type":50,"value":1733},{"type":44,"tag":100,"props":42292,"children":42293},{"style":390},[42294],{"type":50,"value":588},{"type":44,"tag":100,"props":42296,"children":42297},{"style":400},[42298],{"type":50,"value":684},{"type":44,"tag":100,"props":42300,"children":42301},{"style":113},[42302],{"type":50,"value":679},{"type":44,"tag":100,"props":42304,"children":42305},{"style":400},[42306],{"type":50,"value":684},{"type":44,"tag":100,"props":42308,"children":42309},{"style":113},[42310],{"type":50,"value":689},{"type":44,"tag":100,"props":42312,"children":42313},{"style":400},[42314],{"type":50,"value":437},{"type":44,"tag":100,"props":42316,"children":42317},{"style":390},[42318],{"type":50,"value":408},{"type":44,"tag":100,"props":42320,"children":42321},{"style":400},[42322],{"type":50,"value":702},{"type":44,"tag":100,"props":42324,"children":42325},{"class":102,"line":705},[42326,42330,42334,42338,42342,42346,42350,42354,42358,42362,42366,42370,42374,42378,42382,42386,42390,42394,42398,42402,42406,42410,42414,42418,42422,42426,42430,42434],{"type":44,"tag":100,"props":42327,"children":42328},{"style":113},[42329],{"type":50,"value":654},{"type":44,"tag":100,"props":42331,"children":42332},{"style":400},[42333],{"type":50,"value":427},{"type":44,"tag":100,"props":42335,"children":42336},{"style":113},[42337],{"type":50,"value":2001},{"type":44,"tag":100,"props":42339,"children":42340},{"style":400},[42341],{"type":50,"value":427},{"type":44,"tag":100,"props":42343,"children":42344},{"style":390},[42345],{"type":50,"value":545},{"type":44,"tag":100,"props":42347,"children":42348},{"style":390},[42349],{"type":50,"value":550},{"type":44,"tag":100,"props":42351,"children":42352},{"style":400},[42353],{"type":50,"value":1773},{"type":44,"tag":100,"props":42355,"children":42356},{"style":390},[42357],{"type":50,"value":492},{"type":44,"tag":100,"props":42359,"children":42360},{"style":390},[42361],{"type":50,"value":568},{"type":44,"tag":100,"props":42363,"children":42364},{"style":113},[42365],{"type":50,"value":1733},{"type":44,"tag":100,"props":42367,"children":42368},{"style":390},[42369],{"type":50,"value":588},{"type":44,"tag":100,"props":42371,"children":42372},{"style":400},[42373],{"type":50,"value":437},{"type":44,"tag":100,"props":42375,"children":42376},{"style":390},[42377],{"type":50,"value":664},{"type":44,"tag":100,"props":42379,"children":42380},{"style":113},[42381],{"type":50,"value":1262},{"type":44,"tag":100,"props":42383,"children":42384},{"style":400},[42385],{"type":50,"value":427},{"type":44,"tag":100,"props":42387,"children":42388},{"style":113},[42389],{"type":50,"value":1340},{"type":44,"tag":100,"props":42391,"children":42392},{"style":400},[42393],{"type":50,"value":427},{"type":44,"tag":100,"props":42395,"children":42396},{"style":390},[42397],{"type":50,"value":432},{"type":44,"tag":100,"props":42399,"children":42400},{"style":400},[42401],{"type":50,"value":684},{"type":44,"tag":100,"props":42403,"children":42404},{"style":113},[42405],{"type":50,"value":679},{"type":44,"tag":100,"props":42407,"children":42408},{"style":400},[42409],{"type":50,"value":437},{"type":44,"tag":100,"props":42411,"children":42412},{"style":390},[42413],{"type":50,"value":432},{"type":44,"tag":100,"props":42415,"children":42416},{"style":113},[42417],{"type":50,"value":745},{"type":44,"tag":100,"props":42419,"children":42420},{"style":400},[42421],{"type":50,"value":750},{"type":44,"tag":100,"props":42423,"children":42424},{"style":113},[42425],{"type":50,"value":689},{"type":44,"tag":100,"props":42427,"children":42428},{"style":400},[42429],{"type":50,"value":437},{"type":44,"tag":100,"props":42431,"children":42432},{"style":390},[42433],{"type":50,"value":408},{"type":44,"tag":100,"props":42435,"children":42436},{"style":400},[42437],{"type":50,"value":767},{"type":44,"tag":100,"props":42439,"children":42440},{"class":102,"line":770},[42441,42445,42449,42453],{"type":44,"tag":100,"props":42442,"children":42443},{"style":390},[42444],{"type":50,"value":776},{"type":44,"tag":100,"props":42446,"children":42447},{"style":113},[42448],{"type":50,"value":781},{"type":44,"tag":100,"props":42450,"children":42451},{"style":400},[42452],{"type":50,"value":786},{"type":44,"tag":100,"props":42454,"children":42455},{"style":113},[42456],{"type":50,"value":791},{"type":44,"tag":100,"props":42458,"children":42459},{"class":102,"line":794},[42460,42464,42468],{"type":44,"tag":100,"props":42461,"children":42462},{"style":390},[42463],{"type":50,"value":800},{"type":44,"tag":100,"props":42465,"children":42466},{"style":400},[42467],{"type":50,"value":2211},{"type":44,"tag":100,"props":42469,"children":42470},{"style":390},[42471],{"type":50,"value":2216},{"type":44,"tag":100,"props":42473,"children":42474},{"class":102,"line":808},[42475,42479],{"type":44,"tag":100,"props":42476,"children":42477},{"style":390},[42478],{"type":50,"value":814},{"type":44,"tag":100,"props":42480,"children":42481},{"style":400},[42482],{"type":50,"value":819},{"type":44,"tag":124,"props":42484,"children":42485},{"id":2230},[42486,42487],{"type":50,"value":2233},{"type":44,"tag":81,"props":42488,"children":42490},{"className":42489},[],[42491],{"type":50,"value":2239},{"type":44,"tag":53,"props":42493,"children":42494},{},[42495],{"type":50,"value":2244},{"type":44,"tag":53,"props":42497,"children":42498},{},[42499,42500,42508],{"type":50,"value":183},{"type":44,"tag":185,"props":42501,"children":42502},{},[42503],{"type":44,"tag":81,"props":42504,"children":42506},{"className":42505},[],[42507],{"type":50,"value":2257},{"type":50,"value":195},{"type":44,"tag":197,"props":42510,"children":42511},{":variants":199,"group":200},[42512,43383,44318],{"type":44,"tag":203,"props":42513,"children":42514},{"v-slot:clickhouse":7},[42515],{"type":44,"tag":90,"props":42516,"children":42517},{"className":208,"code":2267,"language":210,"meta":7,"style":7},[42518],{"type":44,"tag":81,"props":42519,"children":42520},{"__ignoreMap":7},[42521,42528,42535,42542,42549,42556,42563,42570,42577,42584,42591,42598,42605,42612,42619,42626,42645,42652,42671,42702,42733,42748,42771,42794,42829,42856,42863,42878,42885,42892,42919,42930,42941,42948,42955,42974,42993,43052,43091,43166,43201,43264,43275,43286,43321,43360],{"type":44,"tag":100,"props":42522,"children":42523},{"class":102,"line":103},[42524],{"type":44,"tag":100,"props":42525,"children":42526},{"style":220},[42527],{"type":50,"value":223},{"type":44,"tag":100,"props":42529,"children":42530},{"class":102,"line":226},[42531],{"type":44,"tag":100,"props":42532,"children":42533},{"style":220},[42534],{"type":50,"value":2286},{"type":44,"tag":100,"props":42536,"children":42537},{"class":102,"line":235},[42538],{"type":44,"tag":100,"props":42539,"children":42540},{"style":220},[42541],{"type":50,"value":241},{"type":44,"tag":100,"props":42543,"children":42544},{"class":102,"line":24},[42545],{"type":44,"tag":100,"props":42546,"children":42547},{"style":220},[42548],{"type":50,"value":249},{"type":44,"tag":100,"props":42550,"children":42551},{"class":102,"line":252},[42552],{"type":44,"tag":100,"props":42553,"children":42554},{"style":220},[42555],{"type":50,"value":258},{"type":44,"tag":100,"props":42557,"children":42558},{"class":102,"line":261},[42559],{"type":44,"tag":100,"props":42560,"children":42561},{"style":220},[42562],{"type":50,"value":267},{"type":44,"tag":100,"props":42564,"children":42565},{"class":102,"line":270},[42566],{"type":44,"tag":100,"props":42567,"children":42568},{"style":220},[42569],{"type":50,"value":276},{"type":44,"tag":100,"props":42571,"children":42572},{"class":102,"line":279},[42573],{"type":44,"tag":100,"props":42574,"children":42575},{"style":220},[42576],{"type":50,"value":2329},{"type":44,"tag":100,"props":42578,"children":42579},{"class":102,"line":288},[42580],{"type":44,"tag":100,"props":42581,"children":42582},{"style":220},[42583],{"type":50,"value":285},{"type":44,"tag":100,"props":42585,"children":42586},{"class":102,"line":297},[42587],{"type":44,"tag":100,"props":42588,"children":42589},{"style":220},[42590],{"type":50,"value":2344},{"type":44,"tag":100,"props":42592,"children":42593},{"class":102,"line":306},[42594],{"type":44,"tag":100,"props":42595,"children":42596},{"style":220},[42597],{"type":50,"value":303},{"type":44,"tag":100,"props":42599,"children":42600},{"class":102,"line":315},[42601],{"type":44,"tag":100,"props":42602,"children":42603},{"style":220},[42604],{"type":50,"value":312},{"type":44,"tag":100,"props":42606,"children":42607},{"class":102,"line":324},[42608],{"type":44,"tag":100,"props":42609,"children":42610},{"style":220},[42611],{"type":50,"value":321},{"type":44,"tag":100,"props":42613,"children":42614},{"class":102,"line":333},[42615],{"type":44,"tag":100,"props":42616,"children":42617},{"style":220},[42618],{"type":50,"value":374},{"type":44,"tag":100,"props":42620,"children":42621},{"class":102,"line":11},[42622],{"type":44,"tag":100,"props":42623,"children":42624},{"emptyLinePlaceholder":23},[42625],{"type":50,"value":383},{"type":44,"tag":100,"props":42627,"children":42628},{"class":102,"line":350},[42629,42633,42637,42641],{"type":44,"tag":100,"props":42630,"children":42631},{"style":390},[42632],{"type":50,"value":2387},{"type":44,"tag":100,"props":42634,"children":42635},{"style":400},[42636],{"type":50,"value":2392},{"type":44,"tag":100,"props":42638,"children":42639},{"style":390},[42640],{"type":50,"value":408},{"type":44,"tag":100,"props":42642,"children":42643},{"style":400},[42644],{"type":50,"value":2401},{"type":44,"tag":100,"props":42646,"children":42647},{"class":102,"line":359},[42648],{"type":44,"tag":100,"props":42649,"children":42650},{"style":390},[42651],{"type":50,"value":2409},{"type":44,"tag":100,"props":42653,"children":42654},{"class":102,"line":368},[42655,42659,42663,42667],{"type":44,"tag":100,"props":42656,"children":42657},{"style":113},[42658],{"type":50,"value":2417},{"type":44,"tag":100,"props":42660,"children":42661},{"style":400},[42662],{"type":50,"value":786},{"type":44,"tag":100,"props":42664,"children":42665},{"style":113},[42666],{"type":50,"value":2426},{"type":44,"tag":100,"props":42668,"children":42669},{"style":400},[42670],{"type":50,"value":2431},{"type":44,"tag":100,"props":42672,"children":42673},{"class":102,"line":377},[42674,42678,42682,42686,42690,42694,42698],{"type":44,"tag":100,"props":42675,"children":42676},{"style":400},[42677],{"type":50,"value":2439},{"type":44,"tag":100,"props":42679,"children":42680},{"style":113},[42681],{"type":50,"value":2444},{"type":44,"tag":100,"props":42683,"children":42684},{"style":400},[42685],{"type":50,"value":786},{"type":44,"tag":100,"props":42687,"children":42688},{"style":113},[42689],{"type":50,"value":2453},{"type":44,"tag":100,"props":42691,"children":42692},{"style":400},[42693],{"type":50,"value":437},{"type":44,"tag":100,"props":42695,"children":42696},{"style":390},[42697],{"type":50,"value":408},{"type":44,"tag":100,"props":42699,"children":42700},{"style":400},[42701],{"type":50,"value":2466},{"type":44,"tag":100,"props":42703,"children":42704},{"class":102,"line":386},[42705,42709,42713,42717,42721,42725,42729],{"type":44,"tag":100,"props":42706,"children":42707},{"style":400},[42708],{"type":50,"value":2439},{"type":44,"tag":100,"props":42710,"children":42711},{"style":113},[42712],{"type":50,"value":2478},{"type":44,"tag":100,"props":42714,"children":42715},{"style":400},[42716],{"type":50,"value":786},{"type":44,"tag":100,"props":42718,"children":42719},{"style":113},[42720],{"type":50,"value":2487},{"type":44,"tag":100,"props":42722,"children":42723},{"style":400},[42724],{"type":50,"value":437},{"type":44,"tag":100,"props":42726,"children":42727},{"style":390},[42728],{"type":50,"value":408},{"type":44,"tag":100,"props":42730,"children":42731},{"style":400},[42732],{"type":50,"value":2500},{"type":44,"tag":100,"props":42734,"children":42735},{"class":102,"line":396},[42736,42740,42744],{"type":44,"tag":100,"props":42737,"children":42738},{"style":113},[42739],{"type":50,"value":2417},{"type":44,"tag":100,"props":42741,"children":42742},{"style":400},[42743],{"type":50,"value":786},{"type":44,"tag":100,"props":42745,"children":42746},{"style":113},[42747],{"type":50,"value":2516},{"type":44,"tag":100,"props":42749,"children":42750},{"class":102,"line":416},[42751,42755,42759,42763,42767],{"type":44,"tag":100,"props":42752,"children":42753},{"style":390},[42754],{"type":50,"value":2524},{"type":44,"tag":100,"props":42756,"children":42757},{"style":113},[42758],{"type":50,"value":781},{"type":44,"tag":100,"props":42760,"children":42761},{"style":400},[42762],{"type":50,"value":786},{"type":44,"tag":100,"props":42764,"children":42765},{"style":113},[42766],{"type":50,"value":1408},{"type":44,"tag":100,"props":42768,"children":42769},{"style":400},[42770],{"type":50,"value":1413},{"type":44,"tag":100,"props":42772,"children":42773},{"class":102,"line":449},[42774,42778,42782,42786,42790],{"type":44,"tag":100,"props":42775,"children":42776},{"style":390},[42777],{"type":50,"value":2548},{"type":44,"tag":100,"props":42779,"children":42780},{"style":113},[42781],{"type":50,"value":781},{"type":44,"tag":100,"props":42783,"children":42784},{"style":400},[42785],{"type":50,"value":786},{"type":44,"tag":100,"props":42787,"children":42788},{"style":113},[42789],{"type":50,"value":2561},{"type":44,"tag":100,"props":42791,"children":42792},{"style":400},[42793],{"type":50,"value":2566},{"type":44,"tag":100,"props":42795,"children":42796},{"class":102,"line":481},[42797,42801,42805,42809,42813,42817,42821,42825],{"type":44,"tag":100,"props":42798,"children":42799},{"style":390},[42800],{"type":50,"value":2574},{"type":44,"tag":100,"props":42802,"children":42803},{"style":113},[42804],{"type":50,"value":1426},{"type":44,"tag":100,"props":42806,"children":42807},{"style":400},[42808],{"type":50,"value":786},{"type":44,"tag":100,"props":42810,"children":42811},{"style":113},[42812],{"type":50,"value":2426},{"type":44,"tag":100,"props":42814,"children":42815},{"style":390},[42816],{"type":50,"value":2591},{"type":44,"tag":100,"props":42818,"children":42819},{"style":113},[42820],{"type":50,"value":2596},{"type":44,"tag":100,"props":42822,"children":42823},{"style":400},[42824],{"type":50,"value":786},{"type":44,"tag":100,"props":42826,"children":42827},{"style":113},[42828],{"type":50,"value":2605},{"type":44,"tag":100,"props":42830,"children":42831},{"class":102,"line":508},[42832,42836,42840,42844,42848,42852],{"type":44,"tag":100,"props":42833,"children":42834},{"style":390},[42835],{"type":50,"value":2613},{"type":44,"tag":100,"props":42837,"children":42838},{"style":113},[42839],{"type":50,"value":1426},{"type":44,"tag":100,"props":42841,"children":42842},{"style":400},[42843],{"type":50,"value":786},{"type":44,"tag":100,"props":42845,"children":42846},{"style":113},[42847],{"type":50,"value":2626},{"type":44,"tag":100,"props":42849,"children":42850},{"style":390},[42851],{"type":50,"value":2591},{"type":44,"tag":100,"props":42853,"children":42854},{"style":119},[42855],{"type":50,"value":2635},{"type":44,"tag":100,"props":42857,"children":42858},{"class":102,"line":531},[42859],{"type":44,"tag":100,"props":42860,"children":42861},{"style":400},[42862],{"type":50,"value":2643},{"type":44,"tag":100,"props":42864,"children":42865},{"class":102,"line":604},[42866,42870,42874],{"type":44,"tag":100,"props":42867,"children":42868},{"style":400},[42869],{"type":50,"value":2651},{"type":44,"tag":100,"props":42871,"children":42872},{"style":390},[42873],{"type":50,"value":408},{"type":44,"tag":100,"props":42875,"children":42876},{"style":400},[42877],{"type":50,"value":2401},{"type":44,"tag":100,"props":42879,"children":42880},{"class":102,"line":626},[42881],{"type":44,"tag":100,"props":42882,"children":42883},{"style":390},[42884],{"type":50,"value":2409},{"type":44,"tag":100,"props":42886,"children":42887},{"class":102,"line":648},[42888],{"type":44,"tag":100,"props":42889,"children":42890},{"style":400},[42891],{"type":50,"value":2674},{"type":44,"tag":100,"props":42893,"children":42894},{"class":102,"line":705},[42895,42899,42903,42907,42911,42915],{"type":44,"tag":100,"props":42896,"children":42897},{"style":113},[42898],{"type":50,"value":2682},{"type":44,"tag":100,"props":42900,"children":42901},{"style":400},[42902],{"type":50,"value":427},{"type":44,"tag":100,"props":42904,"children":42905},{"style":390},[42906],{"type":50,"value":2691},{"type":44,"tag":100,"props":42908,"children":42909},{"style":400},[42910],{"type":50,"value":2696},{"type":44,"tag":100,"props":42912,"children":42913},{"style":390},[42914],{"type":50,"value":408},{"type":44,"tag":100,"props":42916,"children":42917},{"style":400},[42918],{"type":50,"value":2705},{"type":44,"tag":100,"props":42920,"children":42921},{"class":102,"line":770},[42922,42926],{"type":44,"tag":100,"props":42923,"children":42924},{"style":390},[42925],{"type":50,"value":2524},{"type":44,"tag":100,"props":42927,"children":42928},{"style":400},[42929],{"type":50,"value":2717},{"type":44,"tag":100,"props":42931,"children":42932},{"class":102,"line":794},[42933,42937],{"type":44,"tag":100,"props":42934,"children":42935},{"style":390},[42936],{"type":50,"value":2725},{"type":44,"tag":100,"props":42938,"children":42939},{"style":400},[42940],{"type":50,"value":2730},{"type":44,"tag":100,"props":42942,"children":42943},{"class":102,"line":808},[42944],{"type":44,"tag":100,"props":42945,"children":42946},{"style":400},[42947],{"type":50,"value":1464},{"type":44,"tag":100,"props":42949,"children":42950},{"class":102,"line":1484},[42951],{"type":44,"tag":100,"props":42952,"children":42953},{"style":390},[42954],{"type":50,"value":393},{"type":44,"tag":100,"props":42956,"children":42957},{"class":102,"line":2747},[42958,42962,42966,42970],{"type":44,"tag":100,"props":42959,"children":42960},{"style":113},[42961],{"type":50,"value":2753},{"type":44,"tag":100,"props":42963,"children":42964},{"style":400},[42965],{"type":50,"value":786},{"type":44,"tag":100,"props":42967,"children":42968},{"style":113},[42969],{"type":50,"value":2762},{"type":44,"tag":100,"props":42971,"children":42972},{"style":400},[42973],{"type":50,"value":2431},{"type":44,"tag":100,"props":42975,"children":42976},{"class":102,"line":2769},[42977,42981,42985,42989],{"type":44,"tag":100,"props":42978,"children":42979},{"style":113},[42980],{"type":50,"value":2775},{"type":44,"tag":100,"props":42982,"children":42983},{"style":400},[42984],{"type":50,"value":786},{"type":44,"tag":100,"props":42986,"children":42987},{"style":113},[42988],{"type":50,"value":2784},{"type":44,"tag":100,"props":42990,"children":42991},{"style":400},[42992],{"type":50,"value":2431},{"type":44,"tag":100,"props":42994,"children":42995},{"class":102,"line":2791},[42996,43000,43004,43008,43012,43016,43020,43024,43028,43032,43036,43040,43044,43048],{"type":44,"tag":100,"props":42997,"children":42998},{"style":113},[42999],{"type":50,"value":2797},{"type":44,"tag":100,"props":43001,"children":43002},{"style":400},[43003],{"type":50,"value":427},{"type":44,"tag":100,"props":43005,"children":43006},{"style":119},[43007],{"type":50,"value":2806},{"type":44,"tag":100,"props":43009,"children":43010},{"style":400},[43011],{"type":50,"value":750},{"type":44,"tag":100,"props":43013,"children":43014},{"style":113},[43015],{"type":50,"value":2815},{"type":44,"tag":100,"props":43017,"children":43018},{"style":400},[43019],{"type":50,"value":786},{"type":44,"tag":100,"props":43021,"children":43022},{"style":113},[43023],{"type":50,"value":2762},{"type":44,"tag":100,"props":43025,"children":43026},{"style":400},[43027],{"type":50,"value":750},{"type":44,"tag":100,"props":43029,"children":43030},{"style":113},[43031],{"type":50,"value":2815},{"type":44,"tag":100,"props":43033,"children":43034},{"style":400},[43035],{"type":50,"value":786},{"type":44,"tag":100,"props":43037,"children":43038},{"style":113},[43039],{"type":50,"value":2840},{"type":44,"tag":100,"props":43041,"children":43042},{"style":400},[43043],{"type":50,"value":437},{"type":44,"tag":100,"props":43045,"children":43046},{"style":390},[43047],{"type":50,"value":408},{"type":44,"tag":100,"props":43049,"children":43050},{"style":400},[43051],{"type":50,"value":2853},{"type":44,"tag":100,"props":43053,"children":43054},{"class":102,"line":2856},[43055,43059,43063,43067,43071,43075,43079,43083,43087],{"type":44,"tag":100,"props":43056,"children":43057},{"style":113},[43058],{"type":50,"value":422},{"type":44,"tag":100,"props":43060,"children":43061},{"style":400},[43062],{"type":50,"value":427},{"type":44,"tag":100,"props":43064,"children":43065},{"style":390},[43066],{"type":50,"value":2691},{"type":44,"tag":100,"props":43068,"children":43069},{"style":113},[43070],{"type":50,"value":2874},{"type":44,"tag":100,"props":43072,"children":43073},{"style":400},[43074],{"type":50,"value":786},{"type":44,"tag":100,"props":43076,"children":43077},{"style":113},[43078],{"type":50,"value":2426},{"type":44,"tag":100,"props":43080,"children":43081},{"style":400},[43082],{"type":50,"value":437},{"type":44,"tag":100,"props":43084,"children":43085},{"style":390},[43086],{"type":50,"value":408},{"type":44,"tag":100,"props":43088,"children":43089},{"style":400},[43090],{"type":50,"value":2895},{"type":44,"tag":100,"props":43092,"children":43093},{"class":102,"line":2898},[43094,43098,43102,43106,43110,43114,43118,43122,43126,43130,43134,43138,43142,43146,43150,43154,43158,43162],{"type":44,"tag":100,"props":43095,"children":43096},{"style":113},[43097],{"type":50,"value":654},{"type":44,"tag":100,"props":43099,"children":43100},{"style":400},[43101],{"type":50,"value":2908},{"type":44,"tag":100,"props":43103,"children":43104},{"style":390},[43105],{"type":50,"value":664},{"type":44,"tag":100,"props":43107,"children":43108},{"style":113},[43109],{"type":50,"value":669},{"type":44,"tag":100,"props":43111,"children":43112},{"style":400},[43113],{"type":50,"value":427},{"type":44,"tag":100,"props":43115,"children":43116},{"style":113},[43117],{"type":50,"value":2925},{"type":44,"tag":100,"props":43119,"children":43120},{"style":400},[43121],{"type":50,"value":786},{"type":44,"tag":100,"props":43123,"children":43124},{"style":113},[43125],{"type":50,"value":2784},{"type":44,"tag":100,"props":43127,"children":43128},{"style":400},[43129],{"type":50,"value":750},{"type":44,"tag":100,"props":43131,"children":43132},{"style":113},[43133],{"type":50,"value":679},{"type":44,"tag":100,"props":43135,"children":43136},{"style":400},[43137],{"type":50,"value":437},{"type":44,"tag":100,"props":43139,"children":43140},{"style":390},[43141],{"type":50,"value":432},{"type":44,"tag":100,"props":43143,"children":43144},{"style":113},[43145],{"type":50,"value":745},{"type":44,"tag":100,"props":43147,"children":43148},{"style":400},[43149],{"type":50,"value":750},{"type":44,"tag":100,"props":43151,"children":43152},{"style":113},[43153],{"type":50,"value":689},{"type":44,"tag":100,"props":43155,"children":43156},{"style":400},[43157],{"type":50,"value":437},{"type":44,"tag":100,"props":43159,"children":43160},{"style":390},[43161],{"type":50,"value":408},{"type":44,"tag":100,"props":43163,"children":43164},{"style":400},[43165],{"type":50,"value":2974},{"type":44,"tag":100,"props":43167,"children":43168},{"class":102,"line":2977},[43169,43173,43177,43181,43185,43189,43193,43197],{"type":44,"tag":100,"props":43170,"children":43171},{"style":113},[43172],{"type":50,"value":514},{"type":44,"tag":100,"props":43174,"children":43175},{"style":400},[43176],{"type":50,"value":427},{"type":44,"tag":100,"props":43178,"children":43179},{"style":113},[43180],{"type":50,"value":2815},{"type":44,"tag":100,"props":43182,"children":43183},{"style":400},[43184],{"type":50,"value":786},{"type":44,"tag":100,"props":43186,"children":43187},{"style":113},[43188],{"type":50,"value":2999},{"type":44,"tag":100,"props":43190,"children":43191},{"style":400},[43192],{"type":50,"value":437},{"type":44,"tag":100,"props":43194,"children":43195},{"style":390},[43196],{"type":50,"value":408},{"type":44,"tag":100,"props":43198,"children":43199},{"style":400},[43200],{"type":50,"value":3012},{"type":44,"tag":100,"props":43202,"children":43203},{"class":102,"line":3015},[43204,43208,43212,43216,43220,43224,43228,43232,43236,43240,43244,43248,43252,43256,43260],{"type":44,"tag":100,"props":43205,"children":43206},{"style":113},[43207],{"type":50,"value":654},{"type":44,"tag":100,"props":43209,"children":43210},{"style":400},[43211],{"type":50,"value":3025},{"type":44,"tag":100,"props":43213,"children":43214},{"style":390},[43215],{"type":50,"value":664},{"type":44,"tag":100,"props":43217,"children":43218},{"style":113},[43219],{"type":50,"value":669},{"type":44,"tag":100,"props":43221,"children":43222},{"style":400},[43223],{"type":50,"value":427},{"type":44,"tag":100,"props":43225,"children":43226},{"style":113},[43227],{"type":50,"value":2925},{"type":44,"tag":100,"props":43229,"children":43230},{"style":400},[43231],{"type":50,"value":786},{"type":44,"tag":100,"props":43233,"children":43234},{"style":113},[43235],{"type":50,"value":2784},{"type":44,"tag":100,"props":43237,"children":43238},{"style":400},[43239],{"type":50,"value":750},{"type":44,"tag":100,"props":43241,"children":43242},{"style":113},[43243],{"type":50,"value":679},{"type":44,"tag":100,"props":43245,"children":43246},{"style":400},[43247],{"type":50,"value":684},{"type":44,"tag":100,"props":43249,"children":43250},{"style":113},[43251],{"type":50,"value":689},{"type":44,"tag":100,"props":43253,"children":43254},{"style":400},[43255],{"type":50,"value":437},{"type":44,"tag":100,"props":43257,"children":43258},{"style":390},[43259],{"type":50,"value":408},{"type":44,"tag":100,"props":43261,"children":43262},{"style":400},[43263],{"type":50,"value":3078},{"type":44,"tag":100,"props":43265,"children":43266},{"class":102,"line":3081},[43267,43271],{"type":44,"tag":100,"props":43268,"children":43269},{"style":390},[43270],{"type":50,"value":776},{"type":44,"tag":100,"props":43272,"children":43273},{"style":400},[43274],{"type":50,"value":3091},{"type":44,"tag":100,"props":43276,"children":43277},{"class":102,"line":3094},[43278,43282],{"type":44,"tag":100,"props":43279,"children":43280},{"style":390},[43281],{"type":50,"value":3100},{"type":44,"tag":100,"props":43283,"children":43284},{"style":400},[43285],{"type":50,"value":3105},{"type":44,"tag":100,"props":43287,"children":43288},{"class":102,"line":3108},[43289,43293,43297,43301,43305,43309,43313,43317],{"type":44,"tag":100,"props":43290,"children":43291},{"style":390},[43292],{"type":50,"value":3114},{"type":44,"tag":100,"props":43294,"children":43295},{"style":113},[43296],{"type":50,"value":2874},{"type":44,"tag":100,"props":43298,"children":43299},{"style":400},[43300],{"type":50,"value":786},{"type":44,"tag":100,"props":43302,"children":43303},{"style":113},[43304],{"type":50,"value":2762},{"type":44,"tag":100,"props":43306,"children":43307},{"style":390},[43308],{"type":50,"value":2591},{"type":44,"tag":100,"props":43310,"children":43311},{"style":113},[43312],{"type":50,"value":3135},{"type":44,"tag":100,"props":43314,"children":43315},{"style":400},[43316],{"type":50,"value":786},{"type":44,"tag":100,"props":43318,"children":43319},{"style":113},[43320],{"type":50,"value":3144},{"type":44,"tag":100,"props":43322,"children":43323},{"class":102,"line":3147},[43324,43328,43332,43336,43340,43344,43348,43352,43356],{"type":44,"tag":100,"props":43325,"children":43326},{"style":390},[43327],{"type":50,"value":800},{"type":44,"tag":100,"props":43329,"children":43330},{"style":113},[43331],{"type":50,"value":2874},{"type":44,"tag":100,"props":43333,"children":43334},{"style":400},[43335],{"type":50,"value":786},{"type":44,"tag":100,"props":43337,"children":43338},{"style":113},[43339],{"type":50,"value":2762},{"type":44,"tag":100,"props":43341,"children":43342},{"style":400},[43343],{"type":50,"value":750},{"type":44,"tag":100,"props":43345,"children":43346},{"style":113},[43347],{"type":50,"value":2925},{"type":44,"tag":100,"props":43349,"children":43350},{"style":400},[43351],{"type":50,"value":786},{"type":44,"tag":100,"props":43353,"children":43354},{"style":113},[43355],{"type":50,"value":2784},{"type":44,"tag":100,"props":43357,"children":43358},{"style":400},[43359],{"type":50,"value":3185},{"type":44,"tag":100,"props":43361,"children":43362},{"class":102,"line":3188},[43363,43367,43371,43375,43379],{"type":44,"tag":100,"props":43364,"children":43365},{"style":390},[43366],{"type":50,"value":814},{"type":44,"tag":100,"props":43368,"children":43369},{"style":113},[43370],{"type":50,"value":2874},{"type":44,"tag":100,"props":43372,"children":43373},{"style":400},[43374],{"type":50,"value":786},{"type":44,"tag":100,"props":43376,"children":43377},{"style":113},[43378],{"type":50,"value":2762},{"type":44,"tag":100,"props":43380,"children":43381},{"style":400},[43382],{"type":50,"value":3185},{"type":44,"tag":203,"props":43384,"children":43385},{"v-slot:bigquery":7},[43386],{"type":44,"tag":90,"props":43387,"children":43388},{"className":208,"code":3215,"language":210,"meta":7,"style":7},[43389],{"type":44,"tag":81,"props":43390,"children":43391},{"__ignoreMap":7},[43392,43399,43406,43413,43420,43427,43434,43441,43448,43455,43462,43469,43476,43483,43490,43497,43516,43523,43542,43581,43620,43635,43658,43681,43716,43743,43750,43765,43772,43779,43806,43817,43828,43835,43842,43861,43880,43935,43974,44077,44112,44199,44210,44221,44256,44295],{"type":44,"tag":100,"props":43393,"children":43394},{"class":102,"line":103},[43395],{"type":44,"tag":100,"props":43396,"children":43397},{"style":220},[43398],{"type":50,"value":223},{"type":44,"tag":100,"props":43400,"children":43401},{"class":102,"line":226},[43402],{"type":44,"tag":100,"props":43403,"children":43404},{"style":220},[43405],{"type":50,"value":2286},{"type":44,"tag":100,"props":43407,"children":43408},{"class":102,"line":235},[43409],{"type":44,"tag":100,"props":43410,"children":43411},{"style":220},[43412],{"type":50,"value":241},{"type":44,"tag":100,"props":43414,"children":43415},{"class":102,"line":24},[43416],{"type":44,"tag":100,"props":43417,"children":43418},{"style":220},[43419],{"type":50,"value":249},{"type":44,"tag":100,"props":43421,"children":43422},{"class":102,"line":252},[43423],{"type":44,"tag":100,"props":43424,"children":43425},{"style":220},[43426],{"type":50,"value":258},{"type":44,"tag":100,"props":43428,"children":43429},{"class":102,"line":261},[43430],{"type":44,"tag":100,"props":43431,"children":43432},{"style":220},[43433],{"type":50,"value":267},{"type":44,"tag":100,"props":43435,"children":43436},{"class":102,"line":270},[43437],{"type":44,"tag":100,"props":43438,"children":43439},{"style":220},[43440],{"type":50,"value":276},{"type":44,"tag":100,"props":43442,"children":43443},{"class":102,"line":279},[43444],{"type":44,"tag":100,"props":43445,"children":43446},{"style":220},[43447],{"type":50,"value":2329},{"type":44,"tag":100,"props":43449,"children":43450},{"class":102,"line":288},[43451],{"type":44,"tag":100,"props":43452,"children":43453},{"style":220},[43454],{"type":50,"value":285},{"type":44,"tag":100,"props":43456,"children":43457},{"class":102,"line":297},[43458],{"type":44,"tag":100,"props":43459,"children":43460},{"style":220},[43461],{"type":50,"value":2344},{"type":44,"tag":100,"props":43463,"children":43464},{"class":102,"line":306},[43465],{"type":44,"tag":100,"props":43466,"children":43467},{"style":220},[43468],{"type":50,"value":303},{"type":44,"tag":100,"props":43470,"children":43471},{"class":102,"line":315},[43472],{"type":44,"tag":100,"props":43473,"children":43474},{"style":220},[43475],{"type":50,"value":312},{"type":44,"tag":100,"props":43477,"children":43478},{"class":102,"line":324},[43479],{"type":44,"tag":100,"props":43480,"children":43481},{"style":220},[43482],{"type":50,"value":321},{"type":44,"tag":100,"props":43484,"children":43485},{"class":102,"line":333},[43486],{"type":44,"tag":100,"props":43487,"children":43488},{"style":220},[43489],{"type":50,"value":374},{"type":44,"tag":100,"props":43491,"children":43492},{"class":102,"line":11},[43493],{"type":44,"tag":100,"props":43494,"children":43495},{"emptyLinePlaceholder":23},[43496],{"type":50,"value":383},{"type":44,"tag":100,"props":43498,"children":43499},{"class":102,"line":350},[43500,43504,43508,43512],{"type":44,"tag":100,"props":43501,"children":43502},{"style":390},[43503],{"type":50,"value":2387},{"type":44,"tag":100,"props":43505,"children":43506},{"style":400},[43507],{"type":50,"value":2392},{"type":44,"tag":100,"props":43509,"children":43510},{"style":390},[43511],{"type":50,"value":408},{"type":44,"tag":100,"props":43513,"children":43514},{"style":400},[43515],{"type":50,"value":2401},{"type":44,"tag":100,"props":43517,"children":43518},{"class":102,"line":359},[43519],{"type":44,"tag":100,"props":43520,"children":43521},{"style":390},[43522],{"type":50,"value":2409},{"type":44,"tag":100,"props":43524,"children":43525},{"class":102,"line":368},[43526,43530,43534,43538],{"type":44,"tag":100,"props":43527,"children":43528},{"style":113},[43529],{"type":50,"value":2417},{"type":44,"tag":100,"props":43531,"children":43532},{"style":400},[43533],{"type":50,"value":786},{"type":44,"tag":100,"props":43535,"children":43536},{"style":113},[43537],{"type":50,"value":2426},{"type":44,"tag":100,"props":43539,"children":43540},{"style":400},[43541],{"type":50,"value":2431},{"type":44,"tag":100,"props":43543,"children":43544},{"class":102,"line":377},[43545,43549,43553,43557,43561,43565,43569,43573,43577],{"type":44,"tag":100,"props":43546,"children":43547},{"style":400},[43548],{"type":50,"value":3377},{"type":44,"tag":100,"props":43550,"children":43551},{"style":113},[43552],{"type":50,"value":2444},{"type":44,"tag":100,"props":43554,"children":43555},{"style":400},[43556],{"type":50,"value":786},{"type":44,"tag":100,"props":43558,"children":43559},{"style":113},[43560],{"type":50,"value":2453},{"type":44,"tag":100,"props":43562,"children":43563},{"style":400},[43564],{"type":50,"value":750},{"type":44,"tag":100,"props":43566,"children":43567},{"style":390},[43568],{"type":50,"value":3398},{"type":44,"tag":100,"props":43570,"children":43571},{"style":400},[43572],{"type":50,"value":437},{"type":44,"tag":100,"props":43574,"children":43575},{"style":390},[43576],{"type":50,"value":408},{"type":44,"tag":100,"props":43578,"children":43579},{"style":400},[43580],{"type":50,"value":2466},{"type":44,"tag":100,"props":43582,"children":43583},{"class":102,"line":386},[43584,43588,43592,43596,43600,43604,43608,43612,43616],{"type":44,"tag":100,"props":43585,"children":43586},{"style":400},[43587],{"type":50,"value":3377},{"type":44,"tag":100,"props":43589,"children":43590},{"style":113},[43591],{"type":50,"value":2478},{"type":44,"tag":100,"props":43593,"children":43594},{"style":400},[43595],{"type":50,"value":786},{"type":44,"tag":100,"props":43597,"children":43598},{"style":113},[43599],{"type":50,"value":2487},{"type":44,"tag":100,"props":43601,"children":43602},{"style":400},[43603],{"type":50,"value":750},{"type":44,"tag":100,"props":43605,"children":43606},{"style":390},[43607],{"type":50,"value":3398},{"type":44,"tag":100,"props":43609,"children":43610},{"style":400},[43611],{"type":50,"value":437},{"type":44,"tag":100,"props":43613,"children":43614},{"style":390},[43615],{"type":50,"value":408},{"type":44,"tag":100,"props":43617,"children":43618},{"style":400},[43619],{"type":50,"value":2500},{"type":44,"tag":100,"props":43621,"children":43622},{"class":102,"line":396},[43623,43627,43631],{"type":44,"tag":100,"props":43624,"children":43625},{"style":113},[43626],{"type":50,"value":2417},{"type":44,"tag":100,"props":43628,"children":43629},{"style":400},[43630],{"type":50,"value":786},{"type":44,"tag":100,"props":43632,"children":43633},{"style":113},[43634],{"type":50,"value":2516},{"type":44,"tag":100,"props":43636,"children":43637},{"class":102,"line":416},[43638,43642,43646,43650,43654],{"type":44,"tag":100,"props":43639,"children":43640},{"style":390},[43641],{"type":50,"value":2524},{"type":44,"tag":100,"props":43643,"children":43644},{"style":113},[43645],{"type":50,"value":781},{"type":44,"tag":100,"props":43647,"children":43648},{"style":400},[43649],{"type":50,"value":786},{"type":44,"tag":100,"props":43651,"children":43652},{"style":113},[43653],{"type":50,"value":1408},{"type":44,"tag":100,"props":43655,"children":43656},{"style":400},[43657],{"type":50,"value":1413},{"type":44,"tag":100,"props":43659,"children":43660},{"class":102,"line":449},[43661,43665,43669,43673,43677],{"type":44,"tag":100,"props":43662,"children":43663},{"style":390},[43664],{"type":50,"value":2548},{"type":44,"tag":100,"props":43666,"children":43667},{"style":113},[43668],{"type":50,"value":781},{"type":44,"tag":100,"props":43670,"children":43671},{"style":400},[43672],{"type":50,"value":786},{"type":44,"tag":100,"props":43674,"children":43675},{"style":113},[43676],{"type":50,"value":2561},{"type":44,"tag":100,"props":43678,"children":43679},{"style":400},[43680],{"type":50,"value":2566},{"type":44,"tag":100,"props":43682,"children":43683},{"class":102,"line":481},[43684,43688,43692,43696,43700,43704,43708,43712],{"type":44,"tag":100,"props":43685,"children":43686},{"style":390},[43687],{"type":50,"value":2574},{"type":44,"tag":100,"props":43689,"children":43690},{"style":113},[43691],{"type":50,"value":1426},{"type":44,"tag":100,"props":43693,"children":43694},{"style":400},[43695],{"type":50,"value":786},{"type":44,"tag":100,"props":43697,"children":43698},{"style":113},[43699],{"type":50,"value":2426},{"type":44,"tag":100,"props":43701,"children":43702},{"style":390},[43703],{"type":50,"value":2591},{"type":44,"tag":100,"props":43705,"children":43706},{"style":113},[43707],{"type":50,"value":2596},{"type":44,"tag":100,"props":43709,"children":43710},{"style":400},[43711],{"type":50,"value":786},{"type":44,"tag":100,"props":43713,"children":43714},{"style":113},[43715],{"type":50,"value":2605},{"type":44,"tag":100,"props":43717,"children":43718},{"class":102,"line":508},[43719,43723,43727,43731,43735,43739],{"type":44,"tag":100,"props":43720,"children":43721},{"style":390},[43722],{"type":50,"value":2613},{"type":44,"tag":100,"props":43724,"children":43725},{"style":113},[43726],{"type":50,"value":1426},{"type":44,"tag":100,"props":43728,"children":43729},{"style":400},[43730],{"type":50,"value":786},{"type":44,"tag":100,"props":43732,"children":43733},{"style":113},[43734],{"type":50,"value":2626},{"type":44,"tag":100,"props":43736,"children":43737},{"style":390},[43738],{"type":50,"value":2591},{"type":44,"tag":100,"props":43740,"children":43741},{"style":119},[43742],{"type":50,"value":2635},{"type":44,"tag":100,"props":43744,"children":43745},{"class":102,"line":531},[43746],{"type":44,"tag":100,"props":43747,"children":43748},{"style":400},[43749],{"type":50,"value":2643},{"type":44,"tag":100,"props":43751,"children":43752},{"class":102,"line":604},[43753,43757,43761],{"type":44,"tag":100,"props":43754,"children":43755},{"style":400},[43756],{"type":50,"value":2651},{"type":44,"tag":100,"props":43758,"children":43759},{"style":390},[43760],{"type":50,"value":408},{"type":44,"tag":100,"props":43762,"children":43763},{"style":400},[43764],{"type":50,"value":2401},{"type":44,"tag":100,"props":43766,"children":43767},{"class":102,"line":626},[43768],{"type":44,"tag":100,"props":43769,"children":43770},{"style":390},[43771],{"type":50,"value":2409},{"type":44,"tag":100,"props":43773,"children":43774},{"class":102,"line":648},[43775],{"type":44,"tag":100,"props":43776,"children":43777},{"style":400},[43778],{"type":50,"value":2674},{"type":44,"tag":100,"props":43780,"children":43781},{"class":102,"line":705},[43782,43786,43790,43794,43798,43802],{"type":44,"tag":100,"props":43783,"children":43784},{"style":113},[43785],{"type":50,"value":2682},{"type":44,"tag":100,"props":43787,"children":43788},{"style":400},[43789],{"type":50,"value":427},{"type":44,"tag":100,"props":43791,"children":43792},{"style":390},[43793],{"type":50,"value":2691},{"type":44,"tag":100,"props":43795,"children":43796},{"style":400},[43797],{"type":50,"value":2696},{"type":44,"tag":100,"props":43799,"children":43800},{"style":390},[43801],{"type":50,"value":408},{"type":44,"tag":100,"props":43803,"children":43804},{"style":400},[43805],{"type":50,"value":2705},{"type":44,"tag":100,"props":43807,"children":43808},{"class":102,"line":770},[43809,43813],{"type":44,"tag":100,"props":43810,"children":43811},{"style":390},[43812],{"type":50,"value":2524},{"type":44,"tag":100,"props":43814,"children":43815},{"style":400},[43816],{"type":50,"value":2717},{"type":44,"tag":100,"props":43818,"children":43819},{"class":102,"line":794},[43820,43824],{"type":44,"tag":100,"props":43821,"children":43822},{"style":390},[43823],{"type":50,"value":2725},{"type":44,"tag":100,"props":43825,"children":43826},{"style":400},[43827],{"type":50,"value":2730},{"type":44,"tag":100,"props":43829,"children":43830},{"class":102,"line":808},[43831],{"type":44,"tag":100,"props":43832,"children":43833},{"style":400},[43834],{"type":50,"value":1464},{"type":44,"tag":100,"props":43836,"children":43837},{"class":102,"line":1484},[43838],{"type":44,"tag":100,"props":43839,"children":43840},{"style":390},[43841],{"type":50,"value":393},{"type":44,"tag":100,"props":43843,"children":43844},{"class":102,"line":2747},[43845,43849,43853,43857],{"type":44,"tag":100,"props":43846,"children":43847},{"style":113},[43848],{"type":50,"value":2753},{"type":44,"tag":100,"props":43850,"children":43851},{"style":400},[43852],{"type":50,"value":786},{"type":44,"tag":100,"props":43854,"children":43855},{"style":113},[43856],{"type":50,"value":2762},{"type":44,"tag":100,"props":43858,"children":43859},{"style":400},[43860],{"type":50,"value":2431},{"type":44,"tag":100,"props":43862,"children":43863},{"class":102,"line":2769},[43864,43868,43872,43876],{"type":44,"tag":100,"props":43865,"children":43866},{"style":113},[43867],{"type":50,"value":2775},{"type":44,"tag":100,"props":43869,"children":43870},{"style":400},[43871],{"type":50,"value":786},{"type":44,"tag":100,"props":43873,"children":43874},{"style":113},[43875],{"type":50,"value":2784},{"type":44,"tag":100,"props":43877,"children":43878},{"style":400},[43879],{"type":50,"value":2431},{"type":44,"tag":100,"props":43881,"children":43882},{"class":102,"line":2791},[43883,43887,43891,43895,43899,43903,43907,43911,43915,43919,43923,43927,43931],{"type":44,"tag":100,"props":43884,"children":43885},{"style":400},[43886],{"type":50,"value":3717},{"type":44,"tag":100,"props":43888,"children":43889},{"style":113},[43890],{"type":50,"value":2815},{"type":44,"tag":100,"props":43892,"children":43893},{"style":400},[43894],{"type":50,"value":786},{"type":44,"tag":100,"props":43896,"children":43897},{"style":113},[43898],{"type":50,"value":2840},{"type":44,"tag":100,"props":43900,"children":43901},{"style":400},[43902],{"type":50,"value":750},{"type":44,"tag":100,"props":43904,"children":43905},{"style":113},[43906],{"type":50,"value":2815},{"type":44,"tag":100,"props":43908,"children":43909},{"style":400},[43910],{"type":50,"value":786},{"type":44,"tag":100,"props":43912,"children":43913},{"style":113},[43914],{"type":50,"value":2762},{"type":44,"tag":100,"props":43916,"children":43917},{"style":400},[43918],{"type":50,"value":750},{"type":44,"tag":100,"props":43920,"children":43921},{"style":390},[43922],{"type":50,"value":3398},{"type":44,"tag":100,"props":43924,"children":43925},{"style":400},[43926],{"type":50,"value":437},{"type":44,"tag":100,"props":43928,"children":43929},{"style":390},[43930],{"type":50,"value":408},{"type":44,"tag":100,"props":43932,"children":43933},{"style":400},[43934],{"type":50,"value":2853},{"type":44,"tag":100,"props":43936,"children":43937},{"class":102,"line":2856},[43938,43942,43946,43950,43954,43958,43962,43966,43970],{"type":44,"tag":100,"props":43939,"children":43940},{"style":113},[43941],{"type":50,"value":422},{"type":44,"tag":100,"props":43943,"children":43944},{"style":400},[43945],{"type":50,"value":427},{"type":44,"tag":100,"props":43947,"children":43948},{"style":390},[43949],{"type":50,"value":2691},{"type":44,"tag":100,"props":43951,"children":43952},{"style":113},[43953],{"type":50,"value":2874},{"type":44,"tag":100,"props":43955,"children":43956},{"style":400},[43957],{"type":50,"value":786},{"type":44,"tag":100,"props":43959,"children":43960},{"style":113},[43961],{"type":50,"value":2426},{"type":44,"tag":100,"props":43963,"children":43964},{"style":400},[43965],{"type":50,"value":437},{"type":44,"tag":100,"props":43967,"children":43968},{"style":390},[43969],{"type":50,"value":408},{"type":44,"tag":100,"props":43971,"children":43972},{"style":400},[43973],{"type":50,"value":2895},{"type":44,"tag":100,"props":43975,"children":43976},{"class":102,"line":2898},[43977,43981,43985,43989,43993,43997,44001,44005,44009,44013,44017,44021,44025,44029,44033,44037,44041,44045,44049,44053,44057,44061,44065,44069,44073],{"type":44,"tag":100,"props":43978,"children":43979},{"style":113},[43980],{"type":50,"value":654},{"type":44,"tag":100,"props":43982,"children":43983},{"style":400},[43984],{"type":50,"value":427},{"type":44,"tag":100,"props":43986,"children":43987},{"style":113},[43988],{"type":50,"value":1340},{"type":44,"tag":100,"props":43990,"children":43991},{"style":400},[43992],{"type":50,"value":427},{"type":44,"tag":100,"props":43994,"children":43995},{"style":390},[43996],{"type":50,"value":2691},{"type":44,"tag":100,"props":43998,"children":43999},{"style":113},[44000],{"type":50,"value":2874},{"type":44,"tag":100,"props":44002,"children":44003},{"style":400},[44004],{"type":50,"value":786},{"type":44,"tag":100,"props":44006,"children":44007},{"style":113},[44008],{"type":50,"value":2426},{"type":44,"tag":100,"props":44010,"children":44011},{"style":400},[44012],{"type":50,"value":437},{"type":44,"tag":100,"props":44014,"children":44015},{"style":390},[44016],{"type":50,"value":664},{"type":44,"tag":100,"props":44018,"children":44019},{"style":113},[44020],{"type":50,"value":1262},{"type":44,"tag":100,"props":44022,"children":44023},{"style":400},[44024],{"type":50,"value":427},{"type":44,"tag":100,"props":44026,"children":44027},{"style":113},[44028],{"type":50,"value":2925},{"type":44,"tag":100,"props":44030,"children":44031},{"style":400},[44032],{"type":50,"value":786},{"type":44,"tag":100,"props":44034,"children":44035},{"style":113},[44036],{"type":50,"value":2784},{"type":44,"tag":100,"props":44038,"children":44039},{"style":400},[44040],{"type":50,"value":750},{"type":44,"tag":100,"props":44042,"children":44043},{"style":113},[44044],{"type":50,"value":679},{"type":44,"tag":100,"props":44046,"children":44047},{"style":400},[44048],{"type":50,"value":437},{"type":44,"tag":100,"props":44050,"children":44051},{"style":390},[44052],{"type":50,"value":432},{"type":44,"tag":100,"props":44054,"children":44055},{"style":113},[44056],{"type":50,"value":745},{"type":44,"tag":100,"props":44058,"children":44059},{"style":400},[44060],{"type":50,"value":750},{"type":44,"tag":100,"props":44062,"children":44063},{"style":113},[44064],{"type":50,"value":689},{"type":44,"tag":100,"props":44066,"children":44067},{"style":400},[44068],{"type":50,"value":437},{"type":44,"tag":100,"props":44070,"children":44071},{"style":390},[44072],{"type":50,"value":408},{"type":44,"tag":100,"props":44074,"children":44075},{"style":400},[44076],{"type":50,"value":2974},{"type":44,"tag":100,"props":44078,"children":44079},{"class":102,"line":2977},[44080,44084,44088,44092,44096,44100,44104,44108],{"type":44,"tag":100,"props":44081,"children":44082},{"style":113},[44083],{"type":50,"value":514},{"type":44,"tag":100,"props":44085,"children":44086},{"style":400},[44087],{"type":50,"value":427},{"type":44,"tag":100,"props":44089,"children":44090},{"style":113},[44091],{"type":50,"value":2815},{"type":44,"tag":100,"props":44093,"children":44094},{"style":400},[44095],{"type":50,"value":786},{"type":44,"tag":100,"props":44097,"children":44098},{"style":113},[44099],{"type":50,"value":2999},{"type":44,"tag":100,"props":44101,"children":44102},{"style":400},[44103],{"type":50,"value":437},{"type":44,"tag":100,"props":44105,"children":44106},{"style":390},[44107],{"type":50,"value":408},{"type":44,"tag":100,"props":44109,"children":44110},{"style":400},[44111],{"type":50,"value":3012},{"type":44,"tag":100,"props":44113,"children":44114},{"class":102,"line":3015},[44115,44119,44123,44127,44131,44135,44139,44143,44147,44151,44155,44159,44163,44167,44171,44175,44179,44183,44187,44191,44195],{"type":44,"tag":100,"props":44116,"children":44117},{"style":113},[44118],{"type":50,"value":654},{"type":44,"tag":100,"props":44120,"children":44121},{"style":400},[44122],{"type":50,"value":427},{"type":44,"tag":100,"props":44124,"children":44125},{"style":113},[44126],{"type":50,"value":1205},{"type":44,"tag":100,"props":44128,"children":44129},{"style":400},[44130],{"type":50,"value":427},{"type":44,"tag":100,"props":44132,"children":44133},{"style":113},[44134],{"type":50,"value":2815},{"type":44,"tag":100,"props":44136,"children":44137},{"style":400},[44138],{"type":50,"value":786},{"type":44,"tag":100,"props":44140,"children":44141},{"style":113},[44142],{"type":50,"value":2999},{"type":44,"tag":100,"props":44144,"children":44145},{"style":400},[44146],{"type":50,"value":437},{"type":44,"tag":100,"props":44148,"children":44149},{"style":390},[44150],{"type":50,"value":664},{"type":44,"tag":100,"props":44152,"children":44153},{"style":113},[44154],{"type":50,"value":1262},{"type":44,"tag":100,"props":44156,"children":44157},{"style":400},[44158],{"type":50,"value":427},{"type":44,"tag":100,"props":44160,"children":44161},{"style":113},[44162],{"type":50,"value":2925},{"type":44,"tag":100,"props":44164,"children":44165},{"style":400},[44166],{"type":50,"value":786},{"type":44,"tag":100,"props":44168,"children":44169},{"style":113},[44170],{"type":50,"value":2784},{"type":44,"tag":100,"props":44172,"children":44173},{"style":400},[44174],{"type":50,"value":750},{"type":44,"tag":100,"props":44176,"children":44177},{"style":113},[44178],{"type":50,"value":679},{"type":44,"tag":100,"props":44180,"children":44181},{"style":400},[44182],{"type":50,"value":684},{"type":44,"tag":100,"props":44184,"children":44185},{"style":113},[44186],{"type":50,"value":689},{"type":44,"tag":100,"props":44188,"children":44189},{"style":400},[44190],{"type":50,"value":437},{"type":44,"tag":100,"props":44192,"children":44193},{"style":390},[44194],{"type":50,"value":408},{"type":44,"tag":100,"props":44196,"children":44197},{"style":400},[44198],{"type":50,"value":3078},{"type":44,"tag":100,"props":44200,"children":44201},{"class":102,"line":3081},[44202,44206],{"type":44,"tag":100,"props":44203,"children":44204},{"style":390},[44205],{"type":50,"value":776},{"type":44,"tag":100,"props":44207,"children":44208},{"style":400},[44209],{"type":50,"value":3091},{"type":44,"tag":100,"props":44211,"children":44212},{"class":102,"line":3094},[44213,44217],{"type":44,"tag":100,"props":44214,"children":44215},{"style":390},[44216],{"type":50,"value":3100},{"type":44,"tag":100,"props":44218,"children":44219},{"style":400},[44220],{"type":50,"value":3105},{"type":44,"tag":100,"props":44222,"children":44223},{"class":102,"line":3108},[44224,44228,44232,44236,44240,44244,44248,44252],{"type":44,"tag":100,"props":44225,"children":44226},{"style":390},[44227],{"type":50,"value":3114},{"type":44,"tag":100,"props":44229,"children":44230},{"style":113},[44231],{"type":50,"value":2874},{"type":44,"tag":100,"props":44233,"children":44234},{"style":400},[44235],{"type":50,"value":786},{"type":44,"tag":100,"props":44237,"children":44238},{"style":113},[44239],{"type":50,"value":2762},{"type":44,"tag":100,"props":44241,"children":44242},{"style":390},[44243],{"type":50,"value":2591},{"type":44,"tag":100,"props":44245,"children":44246},{"style":113},[44247],{"type":50,"value":3135},{"type":44,"tag":100,"props":44249,"children":44250},{"style":400},[44251],{"type":50,"value":786},{"type":44,"tag":100,"props":44253,"children":44254},{"style":113},[44255],{"type":50,"value":3144},{"type":44,"tag":100,"props":44257,"children":44258},{"class":102,"line":3147},[44259,44263,44267,44271,44275,44279,44283,44287,44291],{"type":44,"tag":100,"props":44260,"children":44261},{"style":390},[44262],{"type":50,"value":800},{"type":44,"tag":100,"props":44264,"children":44265},{"style":113},[44266],{"type":50,"value":2874},{"type":44,"tag":100,"props":44268,"children":44269},{"style":400},[44270],{"type":50,"value":786},{"type":44,"tag":100,"props":44272,"children":44273},{"style":113},[44274],{"type":50,"value":2762},{"type":44,"tag":100,"props":44276,"children":44277},{"style":400},[44278],{"type":50,"value":750},{"type":44,"tag":100,"props":44280,"children":44281},{"style":113},[44282],{"type":50,"value":2925},{"type":44,"tag":100,"props":44284,"children":44285},{"style":400},[44286],{"type":50,"value":786},{"type":44,"tag":100,"props":44288,"children":44289},{"style":113},[44290],{"type":50,"value":2784},{"type":44,"tag":100,"props":44292,"children":44293},{"style":400},[44294],{"type":50,"value":3185},{"type":44,"tag":100,"props":44296,"children":44297},{"class":102,"line":3188},[44298,44302,44306,44310,44314],{"type":44,"tag":100,"props":44299,"children":44300},{"style":390},[44301],{"type":50,"value":814},{"type":44,"tag":100,"props":44303,"children":44304},{"style":113},[44305],{"type":50,"value":2874},{"type":44,"tag":100,"props":44307,"children":44308},{"style":400},[44309],{"type":50,"value":786},{"type":44,"tag":100,"props":44311,"children":44312},{"style":113},[44313],{"type":50,"value":2762},{"type":44,"tag":100,"props":44315,"children":44316},{"style":400},[44317],{"type":50,"value":3185},{"type":44,"tag":203,"props":44319,"children":44320},{"v-slot:snowflake":7},[44321],{"type":44,"tag":90,"props":44322,"children":44323},{"className":208,"code":4154,"language":210,"meta":7,"style":7},[44324],{"type":44,"tag":81,"props":44325,"children":44326},{"__ignoreMap":7},[44327,44334,44341,44348,44355,44362,44369,44376,44383,44390,44397,44404,44411,44418,44425,44432,44451,44458,44477,44516,44555,44570,44593,44616,44651,44678,44685,44700,44707,44714,44741,44752,44763,44770,44777,44796,44815,44874,44913,45016,45051,45138,45149,45160,45195,45234],{"type":44,"tag":100,"props":44328,"children":44329},{"class":102,"line":103},[44330],{"type":44,"tag":100,"props":44331,"children":44332},{"style":220},[44333],{"type":50,"value":223},{"type":44,"tag":100,"props":44335,"children":44336},{"class":102,"line":226},[44337],{"type":44,"tag":100,"props":44338,"children":44339},{"style":220},[44340],{"type":50,"value":2286},{"type":44,"tag":100,"props":44342,"children":44343},{"class":102,"line":235},[44344],{"type":44,"tag":100,"props":44345,"children":44346},{"style":220},[44347],{"type":50,"value":241},{"type":44,"tag":100,"props":44349,"children":44350},{"class":102,"line":24},[44351],{"type":44,"tag":100,"props":44352,"children":44353},{"style":220},[44354],{"type":50,"value":249},{"type":44,"tag":100,"props":44356,"children":44357},{"class":102,"line":252},[44358],{"type":44,"tag":100,"props":44359,"children":44360},{"style":220},[44361],{"type":50,"value":258},{"type":44,"tag":100,"props":44363,"children":44364},{"class":102,"line":261},[44365],{"type":44,"tag":100,"props":44366,"children":44367},{"style":220},[44368],{"type":50,"value":267},{"type":44,"tag":100,"props":44370,"children":44371},{"class":102,"line":270},[44372],{"type":44,"tag":100,"props":44373,"children":44374},{"style":220},[44375],{"type":50,"value":276},{"type":44,"tag":100,"props":44377,"children":44378},{"class":102,"line":279},[44379],{"type":44,"tag":100,"props":44380,"children":44381},{"style":220},[44382],{"type":50,"value":2329},{"type":44,"tag":100,"props":44384,"children":44385},{"class":102,"line":288},[44386],{"type":44,"tag":100,"props":44387,"children":44388},{"style":220},[44389],{"type":50,"value":285},{"type":44,"tag":100,"props":44391,"children":44392},{"class":102,"line":297},[44393],{"type":44,"tag":100,"props":44394,"children":44395},{"style":220},[44396],{"type":50,"value":2344},{"type":44,"tag":100,"props":44398,"children":44399},{"class":102,"line":306},[44400],{"type":44,"tag":100,"props":44401,"children":44402},{"style":220},[44403],{"type":50,"value":303},{"type":44,"tag":100,"props":44405,"children":44406},{"class":102,"line":315},[44407],{"type":44,"tag":100,"props":44408,"children":44409},{"style":220},[44410],{"type":50,"value":312},{"type":44,"tag":100,"props":44412,"children":44413},{"class":102,"line":324},[44414],{"type":44,"tag":100,"props":44415,"children":44416},{"style":220},[44417],{"type":50,"value":321},{"type":44,"tag":100,"props":44419,"children":44420},{"class":102,"line":333},[44421],{"type":44,"tag":100,"props":44422,"children":44423},{"style":220},[44424],{"type":50,"value":374},{"type":44,"tag":100,"props":44426,"children":44427},{"class":102,"line":11},[44428],{"type":44,"tag":100,"props":44429,"children":44430},{"emptyLinePlaceholder":23},[44431],{"type":50,"value":383},{"type":44,"tag":100,"props":44433,"children":44434},{"class":102,"line":350},[44435,44439,44443,44447],{"type":44,"tag":100,"props":44436,"children":44437},{"style":390},[44438],{"type":50,"value":2387},{"type":44,"tag":100,"props":44440,"children":44441},{"style":400},[44442],{"type":50,"value":2392},{"type":44,"tag":100,"props":44444,"children":44445},{"style":390},[44446],{"type":50,"value":408},{"type":44,"tag":100,"props":44448,"children":44449},{"style":400},[44450],{"type":50,"value":2401},{"type":44,"tag":100,"props":44452,"children":44453},{"class":102,"line":359},[44454],{"type":44,"tag":100,"props":44455,"children":44456},{"style":390},[44457],{"type":50,"value":2409},{"type":44,"tag":100,"props":44459,"children":44460},{"class":102,"line":368},[44461,44465,44469,44473],{"type":44,"tag":100,"props":44462,"children":44463},{"style":113},[44464],{"type":50,"value":2417},{"type":44,"tag":100,"props":44466,"children":44467},{"style":400},[44468],{"type":50,"value":786},{"type":44,"tag":100,"props":44470,"children":44471},{"style":113},[44472],{"type":50,"value":2426},{"type":44,"tag":100,"props":44474,"children":44475},{"style":400},[44476],{"type":50,"value":2431},{"type":44,"tag":100,"props":44478,"children":44479},{"class":102,"line":377},[44480,44484,44488,44492,44496,44500,44504,44508,44512],{"type":44,"tag":100,"props":44481,"children":44482},{"style":400},[44483],{"type":50,"value":3377},{"type":44,"tag":100,"props":44485,"children":44486},{"style":119},[44487],{"type":50,"value":2806},{"type":44,"tag":100,"props":44489,"children":44490},{"style":400},[44491],{"type":50,"value":750},{"type":44,"tag":100,"props":44493,"children":44494},{"style":113},[44495],{"type":50,"value":2444},{"type":44,"tag":100,"props":44497,"children":44498},{"style":400},[44499],{"type":50,"value":786},{"type":44,"tag":100,"props":44501,"children":44502},{"style":113},[44503],{"type":50,"value":2453},{"type":44,"tag":100,"props":44505,"children":44506},{"style":400},[44507],{"type":50,"value":437},{"type":44,"tag":100,"props":44509,"children":44510},{"style":390},[44511],{"type":50,"value":408},{"type":44,"tag":100,"props":44513,"children":44514},{"style":400},[44515],{"type":50,"value":2466},{"type":44,"tag":100,"props":44517,"children":44518},{"class":102,"line":386},[44519,44523,44527,44531,44535,44539,44543,44547,44551],{"type":44,"tag":100,"props":44520,"children":44521},{"style":400},[44522],{"type":50,"value":3377},{"type":44,"tag":100,"props":44524,"children":44525},{"style":119},[44526],{"type":50,"value":2806},{"type":44,"tag":100,"props":44528,"children":44529},{"style":400},[44530],{"type":50,"value":750},{"type":44,"tag":100,"props":44532,"children":44533},{"style":113},[44534],{"type":50,"value":2478},{"type":44,"tag":100,"props":44536,"children":44537},{"style":400},[44538],{"type":50,"value":786},{"type":44,"tag":100,"props":44540,"children":44541},{"style":113},[44542],{"type":50,"value":2487},{"type":44,"tag":100,"props":44544,"children":44545},{"style":400},[44546],{"type":50,"value":437},{"type":44,"tag":100,"props":44548,"children":44549},{"style":390},[44550],{"type":50,"value":408},{"type":44,"tag":100,"props":44552,"children":44553},{"style":400},[44554],{"type":50,"value":2500},{"type":44,"tag":100,"props":44556,"children":44557},{"class":102,"line":396},[44558,44562,44566],{"type":44,"tag":100,"props":44559,"children":44560},{"style":113},[44561],{"type":50,"value":2417},{"type":44,"tag":100,"props":44563,"children":44564},{"style":400},[44565],{"type":50,"value":786},{"type":44,"tag":100,"props":44567,"children":44568},{"style":113},[44569],{"type":50,"value":2516},{"type":44,"tag":100,"props":44571,"children":44572},{"class":102,"line":416},[44573,44577,44581,44585,44589],{"type":44,"tag":100,"props":44574,"children":44575},{"style":390},[44576],{"type":50,"value":2524},{"type":44,"tag":100,"props":44578,"children":44579},{"style":113},[44580],{"type":50,"value":781},{"type":44,"tag":100,"props":44582,"children":44583},{"style":400},[44584],{"type":50,"value":786},{"type":44,"tag":100,"props":44586,"children":44587},{"style":113},[44588],{"type":50,"value":1408},{"type":44,"tag":100,"props":44590,"children":44591},{"style":400},[44592],{"type":50,"value":1413},{"type":44,"tag":100,"props":44594,"children":44595},{"class":102,"line":449},[44596,44600,44604,44608,44612],{"type":44,"tag":100,"props":44597,"children":44598},{"style":390},[44599],{"type":50,"value":2548},{"type":44,"tag":100,"props":44601,"children":44602},{"style":113},[44603],{"type":50,"value":781},{"type":44,"tag":100,"props":44605,"children":44606},{"style":400},[44607],{"type":50,"value":786},{"type":44,"tag":100,"props":44609,"children":44610},{"style":113},[44611],{"type":50,"value":2561},{"type":44,"tag":100,"props":44613,"children":44614},{"style":400},[44615],{"type":50,"value":2566},{"type":44,"tag":100,"props":44617,"children":44618},{"class":102,"line":481},[44619,44623,44627,44631,44635,44639,44643,44647],{"type":44,"tag":100,"props":44620,"children":44621},{"style":390},[44622],{"type":50,"value":2574},{"type":44,"tag":100,"props":44624,"children":44625},{"style":113},[44626],{"type":50,"value":1426},{"type":44,"tag":100,"props":44628,"children":44629},{"style":400},[44630],{"type":50,"value":786},{"type":44,"tag":100,"props":44632,"children":44633},{"style":113},[44634],{"type":50,"value":2426},{"type":44,"tag":100,"props":44636,"children":44637},{"style":390},[44638],{"type":50,"value":2591},{"type":44,"tag":100,"props":44640,"children":44641},{"style":113},[44642],{"type":50,"value":2596},{"type":44,"tag":100,"props":44644,"children":44645},{"style":400},[44646],{"type":50,"value":786},{"type":44,"tag":100,"props":44648,"children":44649},{"style":113},[44650],{"type":50,"value":2605},{"type":44,"tag":100,"props":44652,"children":44653},{"class":102,"line":508},[44654,44658,44662,44666,44670,44674],{"type":44,"tag":100,"props":44655,"children":44656},{"style":390},[44657],{"type":50,"value":2613},{"type":44,"tag":100,"props":44659,"children":44660},{"style":113},[44661],{"type":50,"value":1426},{"type":44,"tag":100,"props":44663,"children":44664},{"style":400},[44665],{"type":50,"value":786},{"type":44,"tag":100,"props":44667,"children":44668},{"style":113},[44669],{"type":50,"value":2626},{"type":44,"tag":100,"props":44671,"children":44672},{"style":390},[44673],{"type":50,"value":2591},{"type":44,"tag":100,"props":44675,"children":44676},{"style":119},[44677],{"type":50,"value":2635},{"type":44,"tag":100,"props":44679,"children":44680},{"class":102,"line":531},[44681],{"type":44,"tag":100,"props":44682,"children":44683},{"style":400},[44684],{"type":50,"value":2643},{"type":44,"tag":100,"props":44686,"children":44687},{"class":102,"line":604},[44688,44692,44696],{"type":44,"tag":100,"props":44689,"children":44690},{"style":400},[44691],{"type":50,"value":2651},{"type":44,"tag":100,"props":44693,"children":44694},{"style":390},[44695],{"type":50,"value":408},{"type":44,"tag":100,"props":44697,"children":44698},{"style":400},[44699],{"type":50,"value":2401},{"type":44,"tag":100,"props":44701,"children":44702},{"class":102,"line":626},[44703],{"type":44,"tag":100,"props":44704,"children":44705},{"style":390},[44706],{"type":50,"value":2409},{"type":44,"tag":100,"props":44708,"children":44709},{"class":102,"line":648},[44710],{"type":44,"tag":100,"props":44711,"children":44712},{"style":400},[44713],{"type":50,"value":2674},{"type":44,"tag":100,"props":44715,"children":44716},{"class":102,"line":705},[44717,44721,44725,44729,44733,44737],{"type":44,"tag":100,"props":44718,"children":44719},{"style":113},[44720],{"type":50,"value":2682},{"type":44,"tag":100,"props":44722,"children":44723},{"style":400},[44724],{"type":50,"value":427},{"type":44,"tag":100,"props":44726,"children":44727},{"style":390},[44728],{"type":50,"value":2691},{"type":44,"tag":100,"props":44730,"children":44731},{"style":400},[44732],{"type":50,"value":2696},{"type":44,"tag":100,"props":44734,"children":44735},{"style":390},[44736],{"type":50,"value":408},{"type":44,"tag":100,"props":44738,"children":44739},{"style":400},[44740],{"type":50,"value":2705},{"type":44,"tag":100,"props":44742,"children":44743},{"class":102,"line":770},[44744,44748],{"type":44,"tag":100,"props":44745,"children":44746},{"style":390},[44747],{"type":50,"value":2524},{"type":44,"tag":100,"props":44749,"children":44750},{"style":400},[44751],{"type":50,"value":2717},{"type":44,"tag":100,"props":44753,"children":44754},{"class":102,"line":794},[44755,44759],{"type":44,"tag":100,"props":44756,"children":44757},{"style":390},[44758],{"type":50,"value":2725},{"type":44,"tag":100,"props":44760,"children":44761},{"style":400},[44762],{"type":50,"value":2730},{"type":44,"tag":100,"props":44764,"children":44765},{"class":102,"line":808},[44766],{"type":44,"tag":100,"props":44767,"children":44768},{"style":400},[44769],{"type":50,"value":1464},{"type":44,"tag":100,"props":44771,"children":44772},{"class":102,"line":1484},[44773],{"type":44,"tag":100,"props":44774,"children":44775},{"style":390},[44776],{"type":50,"value":393},{"type":44,"tag":100,"props":44778,"children":44779},{"class":102,"line":2747},[44780,44784,44788,44792],{"type":44,"tag":100,"props":44781,"children":44782},{"style":113},[44783],{"type":50,"value":2753},{"type":44,"tag":100,"props":44785,"children":44786},{"style":400},[44787],{"type":50,"value":786},{"type":44,"tag":100,"props":44789,"children":44790},{"style":113},[44791],{"type":50,"value":2762},{"type":44,"tag":100,"props":44793,"children":44794},{"style":400},[44795],{"type":50,"value":2431},{"type":44,"tag":100,"props":44797,"children":44798},{"class":102,"line":2769},[44799,44803,44807,44811],{"type":44,"tag":100,"props":44800,"children":44801},{"style":113},[44802],{"type":50,"value":2775},{"type":44,"tag":100,"props":44804,"children":44805},{"style":400},[44806],{"type":50,"value":786},{"type":44,"tag":100,"props":44808,"children":44809},{"style":113},[44810],{"type":50,"value":2784},{"type":44,"tag":100,"props":44812,"children":44813},{"style":400},[44814],{"type":50,"value":2431},{"type":44,"tag":100,"props":44816,"children":44817},{"class":102,"line":2791},[44818,44822,44826,44830,44834,44838,44842,44846,44850,44854,44858,44862,44866,44870],{"type":44,"tag":100,"props":44819,"children":44820},{"style":113},[44821],{"type":50,"value":4654},{"type":44,"tag":100,"props":44823,"children":44824},{"style":400},[44825],{"type":50,"value":427},{"type":44,"tag":100,"props":44827,"children":44828},{"style":119},[44829],{"type":50,"value":2806},{"type":44,"tag":100,"props":44831,"children":44832},{"style":400},[44833],{"type":50,"value":750},{"type":44,"tag":100,"props":44835,"children":44836},{"style":113},[44837],{"type":50,"value":2815},{"type":44,"tag":100,"props":44839,"children":44840},{"style":400},[44841],{"type":50,"value":786},{"type":44,"tag":100,"props":44843,"children":44844},{"style":113},[44845],{"type":50,"value":2762},{"type":44,"tag":100,"props":44847,"children":44848},{"style":400},[44849],{"type":50,"value":750},{"type":44,"tag":100,"props":44851,"children":44852},{"style":113},[44853],{"type":50,"value":2815},{"type":44,"tag":100,"props":44855,"children":44856},{"style":400},[44857],{"type":50,"value":786},{"type":44,"tag":100,"props":44859,"children":44860},{"style":113},[44861],{"type":50,"value":2840},{"type":44,"tag":100,"props":44863,"children":44864},{"style":400},[44865],{"type":50,"value":437},{"type":44,"tag":100,"props":44867,"children":44868},{"style":390},[44869],{"type":50,"value":408},{"type":44,"tag":100,"props":44871,"children":44872},{"style":400},[44873],{"type":50,"value":2853},{"type":44,"tag":100,"props":44875,"children":44876},{"class":102,"line":2856},[44877,44881,44885,44889,44893,44897,44901,44905,44909],{"type":44,"tag":100,"props":44878,"children":44879},{"style":113},[44880],{"type":50,"value":422},{"type":44,"tag":100,"props":44882,"children":44883},{"style":400},[44884],{"type":50,"value":427},{"type":44,"tag":100,"props":44886,"children":44887},{"style":390},[44888],{"type":50,"value":2691},{"type":44,"tag":100,"props":44890,"children":44891},{"style":113},[44892],{"type":50,"value":2874},{"type":44,"tag":100,"props":44894,"children":44895},{"style":400},[44896],{"type":50,"value":786},{"type":44,"tag":100,"props":44898,"children":44899},{"style":113},[44900],{"type":50,"value":2426},{"type":44,"tag":100,"props":44902,"children":44903},{"style":400},[44904],{"type":50,"value":437},{"type":44,"tag":100,"props":44906,"children":44907},{"style":390},[44908],{"type":50,"value":408},{"type":44,"tag":100,"props":44910,"children":44911},{"style":400},[44912],{"type":50,"value":2895},{"type":44,"tag":100,"props":44914,"children":44915},{"class":102,"line":2898},[44916,44920,44924,44928,44932,44936,44940,44944,44948,44952,44956,44960,44964,44968,44972,44976,44980,44984,44988,44992,44996,45000,45004,45008,45012],{"type":44,"tag":100,"props":44917,"children":44918},{"style":113},[44919],{"type":50,"value":654},{"type":44,"tag":100,"props":44921,"children":44922},{"style":400},[44923],{"type":50,"value":427},{"type":44,"tag":100,"props":44925,"children":44926},{"style":113},[44927],{"type":50,"value":1340},{"type":44,"tag":100,"props":44929,"children":44930},{"style":400},[44931],{"type":50,"value":427},{"type":44,"tag":100,"props":44933,"children":44934},{"style":390},[44935],{"type":50,"value":2691},{"type":44,"tag":100,"props":44937,"children":44938},{"style":113},[44939],{"type":50,"value":2874},{"type":44,"tag":100,"props":44941,"children":44942},{"style":400},[44943],{"type":50,"value":786},{"type":44,"tag":100,"props":44945,"children":44946},{"style":113},[44947],{"type":50,"value":2426},{"type":44,"tag":100,"props":44949,"children":44950},{"style":400},[44951],{"type":50,"value":437},{"type":44,"tag":100,"props":44953,"children":44954},{"style":390},[44955],{"type":50,"value":664},{"type":44,"tag":100,"props":44957,"children":44958},{"style":113},[44959],{"type":50,"value":1262},{"type":44,"tag":100,"props":44961,"children":44962},{"style":400},[44963],{"type":50,"value":427},{"type":44,"tag":100,"props":44965,"children":44966},{"style":113},[44967],{"type":50,"value":2925},{"type":44,"tag":100,"props":44969,"children":44970},{"style":400},[44971],{"type":50,"value":786},{"type":44,"tag":100,"props":44973,"children":44974},{"style":113},[44975],{"type":50,"value":2784},{"type":44,"tag":100,"props":44977,"children":44978},{"style":400},[44979],{"type":50,"value":750},{"type":44,"tag":100,"props":44981,"children":44982},{"style":113},[44983],{"type":50,"value":679},{"type":44,"tag":100,"props":44985,"children":44986},{"style":400},[44987],{"type":50,"value":437},{"type":44,"tag":100,"props":44989,"children":44990},{"style":390},[44991],{"type":50,"value":432},{"type":44,"tag":100,"props":44993,"children":44994},{"style":113},[44995],{"type":50,"value":745},{"type":44,"tag":100,"props":44997,"children":44998},{"style":400},[44999],{"type":50,"value":750},{"type":44,"tag":100,"props":45001,"children":45002},{"style":113},[45003],{"type":50,"value":689},{"type":44,"tag":100,"props":45005,"children":45006},{"style":400},[45007],{"type":50,"value":437},{"type":44,"tag":100,"props":45009,"children":45010},{"style":390},[45011],{"type":50,"value":408},{"type":44,"tag":100,"props":45013,"children":45014},{"style":400},[45015],{"type":50,"value":2974},{"type":44,"tag":100,"props":45017,"children":45018},{"class":102,"line":2977},[45019,45023,45027,45031,45035,45039,45043,45047],{"type":44,"tag":100,"props":45020,"children":45021},{"style":113},[45022],{"type":50,"value":514},{"type":44,"tag":100,"props":45024,"children":45025},{"style":400},[45026],{"type":50,"value":427},{"type":44,"tag":100,"props":45028,"children":45029},{"style":113},[45030],{"type":50,"value":2815},{"type":44,"tag":100,"props":45032,"children":45033},{"style":400},[45034],{"type":50,"value":786},{"type":44,"tag":100,"props":45036,"children":45037},{"style":113},[45038],{"type":50,"value":2999},{"type":44,"tag":100,"props":45040,"children":45041},{"style":400},[45042],{"type":50,"value":437},{"type":44,"tag":100,"props":45044,"children":45045},{"style":390},[45046],{"type":50,"value":408},{"type":44,"tag":100,"props":45048,"children":45049},{"style":400},[45050],{"type":50,"value":3012},{"type":44,"tag":100,"props":45052,"children":45053},{"class":102,"line":3015},[45054,45058,45062,45066,45070,45074,45078,45082,45086,45090,45094,45098,45102,45106,45110,45114,45118,45122,45126,45130,45134],{"type":44,"tag":100,"props":45055,"children":45056},{"style":113},[45057],{"type":50,"value":654},{"type":44,"tag":100,"props":45059,"children":45060},{"style":400},[45061],{"type":50,"value":427},{"type":44,"tag":100,"props":45063,"children":45064},{"style":113},[45065],{"type":50,"value":1205},{"type":44,"tag":100,"props":45067,"children":45068},{"style":400},[45069],{"type":50,"value":427},{"type":44,"tag":100,"props":45071,"children":45072},{"style":113},[45073],{"type":50,"value":2815},{"type":44,"tag":100,"props":45075,"children":45076},{"style":400},[45077],{"type":50,"value":786},{"type":44,"tag":100,"props":45079,"children":45080},{"style":113},[45081],{"type":50,"value":2999},{"type":44,"tag":100,"props":45083,"children":45084},{"style":400},[45085],{"type":50,"value":437},{"type":44,"tag":100,"props":45087,"children":45088},{"style":390},[45089],{"type":50,"value":664},{"type":44,"tag":100,"props":45091,"children":45092},{"style":113},[45093],{"type":50,"value":1262},{"type":44,"tag":100,"props":45095,"children":45096},{"style":400},[45097],{"type":50,"value":427},{"type":44,"tag":100,"props":45099,"children":45100},{"style":113},[45101],{"type":50,"value":2925},{"type":44,"tag":100,"props":45103,"children":45104},{"style":400},[45105],{"type":50,"value":786},{"type":44,"tag":100,"props":45107,"children":45108},{"style":113},[45109],{"type":50,"value":2784},{"type":44,"tag":100,"props":45111,"children":45112},{"style":400},[45113],{"type":50,"value":750},{"type":44,"tag":100,"props":45115,"children":45116},{"style":113},[45117],{"type":50,"value":679},{"type":44,"tag":100,"props":45119,"children":45120},{"style":400},[45121],{"type":50,"value":684},{"type":44,"tag":100,"props":45123,"children":45124},{"style":113},[45125],{"type":50,"value":689},{"type":44,"tag":100,"props":45127,"children":45128},{"style":400},[45129],{"type":50,"value":437},{"type":44,"tag":100,"props":45131,"children":45132},{"style":390},[45133],{"type":50,"value":408},{"type":44,"tag":100,"props":45135,"children":45136},{"style":400},[45137],{"type":50,"value":3078},{"type":44,"tag":100,"props":45139,"children":45140},{"class":102,"line":3081},[45141,45145],{"type":44,"tag":100,"props":45142,"children":45143},{"style":390},[45144],{"type":50,"value":776},{"type":44,"tag":100,"props":45146,"children":45147},{"style":400},[45148],{"type":50,"value":3091},{"type":44,"tag":100,"props":45150,"children":45151},{"class":102,"line":3094},[45152,45156],{"type":44,"tag":100,"props":45153,"children":45154},{"style":390},[45155],{"type":50,"value":3100},{"type":44,"tag":100,"props":45157,"children":45158},{"style":400},[45159],{"type":50,"value":3105},{"type":44,"tag":100,"props":45161,"children":45162},{"class":102,"line":3108},[45163,45167,45171,45175,45179,45183,45187,45191],{"type":44,"tag":100,"props":45164,"children":45165},{"style":390},[45166],{"type":50,"value":3114},{"type":44,"tag":100,"props":45168,"children":45169},{"style":113},[45170],{"type":50,"value":2874},{"type":44,"tag":100,"props":45172,"children":45173},{"style":400},[45174],{"type":50,"value":786},{"type":44,"tag":100,"props":45176,"children":45177},{"style":113},[45178],{"type":50,"value":2762},{"type":44,"tag":100,"props":45180,"children":45181},{"style":390},[45182],{"type":50,"value":2591},{"type":44,"tag":100,"props":45184,"children":45185},{"style":113},[45186],{"type":50,"value":3135},{"type":44,"tag":100,"props":45188,"children":45189},{"style":400},[45190],{"type":50,"value":786},{"type":44,"tag":100,"props":45192,"children":45193},{"style":113},[45194],{"type":50,"value":3144},{"type":44,"tag":100,"props":45196,"children":45197},{"class":102,"line":3147},[45198,45202,45206,45210,45214,45218,45222,45226,45230],{"type":44,"tag":100,"props":45199,"children":45200},{"style":390},[45201],{"type":50,"value":800},{"type":44,"tag":100,"props":45203,"children":45204},{"style":113},[45205],{"type":50,"value":2874},{"type":44,"tag":100,"props":45207,"children":45208},{"style":400},[45209],{"type":50,"value":786},{"type":44,"tag":100,"props":45211,"children":45212},{"style":113},[45213],{"type":50,"value":2762},{"type":44,"tag":100,"props":45215,"children":45216},{"style":400},[45217],{"type":50,"value":750},{"type":44,"tag":100,"props":45219,"children":45220},{"style":113},[45221],{"type":50,"value":2925},{"type":44,"tag":100,"props":45223,"children":45224},{"style":400},[45225],{"type":50,"value":786},{"type":44,"tag":100,"props":45227,"children":45228},{"style":113},[45229],{"type":50,"value":2784},{"type":44,"tag":100,"props":45231,"children":45232},{"style":400},[45233],{"type":50,"value":3185},{"type":44,"tag":100,"props":45235,"children":45236},{"class":102,"line":3188},[45237,45241,45245,45249,45253],{"type":44,"tag":100,"props":45238,"children":45239},{"style":390},[45240],{"type":50,"value":814},{"type":44,"tag":100,"props":45242,"children":45243},{"style":113},[45244],{"type":50,"value":2874},{"type":44,"tag":100,"props":45246,"children":45247},{"style":400},[45248],{"type":50,"value":786},{"type":44,"tag":100,"props":45250,"children":45251},{"style":113},[45252],{"type":50,"value":2762},{"type":44,"tag":100,"props":45254,"children":45255},{"style":400},[45256],{"type":50,"value":3185},{"type":44,"tag":124,"props":45258,"children":45259},{"id":5092},[45260,45261],{"type":50,"value":5095},{"type":44,"tag":81,"props":45262,"children":45264},{"className":45263},[],[45265],{"type":50,"value":5101},{"type":44,"tag":53,"props":45267,"children":45268},{},[45269],{"type":50,"value":5106},{"type":44,"tag":5108,"props":45271,"children":45272},{},[45273],{"type":44,"tag":53,"props":45274,"children":45275},{},[45276,45277,45282,45283,45288],{"type":50,"value":5115},{"type":44,"tag":81,"props":45278,"children":45280},{"className":45279},[],[45281],{"type":50,"value":5121},{"type":50,"value":5123},{"type":44,"tag":81,"props":45284,"children":45286},{"className":45285},[],[45287],{"type":50,"value":5129},{"type":50,"value":786},{"type":44,"tag":53,"props":45290,"children":45291},{},[45292,45293,45301],{"type":50,"value":183},{"type":44,"tag":185,"props":45294,"children":45295},{},[45296],{"type":44,"tag":81,"props":45297,"children":45299},{"className":45298},[],[45300],{"type":50,"value":5143},{"type":50,"value":195},{"type":44,"tag":90,"props":45303,"children":45304},{"className":208,"code":5147,"language":210,"meta":7,"style":7},[45305],{"type":44,"tag":81,"props":45306,"children":45307},{"__ignoreMap":7},[45308,45315,45322,45329,45336,45343,45350,45357,45364,45371,45378,45385,45392,45399,45406,45413,45420,45427,45434,45441,45448,45455,45462,45469,45476,45495],{"type":44,"tag":100,"props":45309,"children":45310},{"class":102,"line":103},[45311],{"type":44,"tag":100,"props":45312,"children":45313},{"style":220},[45314],{"type":50,"value":223},{"type":44,"tag":100,"props":45316,"children":45317},{"class":102,"line":226},[45318],{"type":44,"tag":100,"props":45319,"children":45320},{"style":220},[45321],{"type":50,"value":5166},{"type":44,"tag":100,"props":45323,"children":45324},{"class":102,"line":235},[45325],{"type":44,"tag":100,"props":45326,"children":45327},{"style":220},[45328],{"type":50,"value":241},{"type":44,"tag":100,"props":45330,"children":45331},{"class":102,"line":24},[45332],{"type":44,"tag":100,"props":45333,"children":45334},{"style":220},[45335],{"type":50,"value":249},{"type":44,"tag":100,"props":45337,"children":45338},{"class":102,"line":252},[45339],{"type":44,"tag":100,"props":45340,"children":45341},{"style":220},[45342],{"type":50,"value":258},{"type":44,"tag":100,"props":45344,"children":45345},{"class":102,"line":261},[45346],{"type":44,"tag":100,"props":45347,"children":45348},{"style":220},[45349],{"type":50,"value":267},{"type":44,"tag":100,"props":45351,"children":45352},{"class":102,"line":270},[45353],{"type":44,"tag":100,"props":45354,"children":45355},{"style":220},[45356],{"type":50,"value":5202},{"type":44,"tag":100,"props":45358,"children":45359},{"class":102,"line":279},[45360],{"type":44,"tag":100,"props":45361,"children":45362},{"style":220},[45363],{"type":50,"value":285},{"type":44,"tag":100,"props":45365,"children":45366},{"class":102,"line":288},[45367],{"type":44,"tag":100,"props":45368,"children":45369},{"style":220},[45370],{"type":50,"value":5217},{"type":44,"tag":100,"props":45372,"children":45373},{"class":102,"line":297},[45374],{"type":44,"tag":100,"props":45375,"children":45376},{"style":220},[45377],{"type":50,"value":5225},{"type":44,"tag":100,"props":45379,"children":45380},{"class":102,"line":306},[45381],{"type":44,"tag":100,"props":45382,"children":45383},{"style":220},[45384],{"type":50,"value":312},{"type":44,"tag":100,"props":45386,"children":45387},{"class":102,"line":315},[45388],{"type":44,"tag":100,"props":45389,"children":45390},{"style":220},[45391],{"type":50,"value":321},{"type":44,"tag":100,"props":45393,"children":45394},{"class":102,"line":324},[45395],{"type":44,"tag":100,"props":45396,"children":45397},{"style":220},[45398],{"type":50,"value":330},{"type":44,"tag":100,"props":45400,"children":45401},{"class":102,"line":333},[45402],{"type":44,"tag":100,"props":45403,"children":45404},{"style":220},[45405],{"type":50,"value":374},{"type":44,"tag":100,"props":45407,"children":45408},{"class":102,"line":11},[45409],{"type":44,"tag":100,"props":45410,"children":45411},{"emptyLinePlaceholder":23},[45412],{"type":50,"value":383},{"type":44,"tag":100,"props":45414,"children":45415},{"class":102,"line":350},[45416],{"type":44,"tag":100,"props":45417,"children":45418},{"style":390},[45419],{"type":50,"value":393},{"type":44,"tag":100,"props":45421,"children":45422},{"class":102,"line":359},[45423],{"type":44,"tag":100,"props":45424,"children":45425},{"style":400},[45426],{"type":50,"value":5275},{"type":44,"tag":100,"props":45428,"children":45429},{"class":102,"line":368},[45430],{"type":44,"tag":100,"props":45431,"children":45432},{"style":400},[45433],{"type":50,"value":5283},{"type":44,"tag":100,"props":45435,"children":45436},{"class":102,"line":377},[45437],{"type":44,"tag":100,"props":45438,"children":45439},{"style":400},[45440],{"type":50,"value":5291},{"type":44,"tag":100,"props":45442,"children":45443},{"class":102,"line":386},[45444],{"type":44,"tag":100,"props":45445,"children":45446},{"style":400},[45447],{"type":50,"value":5299},{"type":44,"tag":100,"props":45449,"children":45450},{"class":102,"line":396},[45451],{"type":44,"tag":100,"props":45452,"children":45453},{"style":400},[45454],{"type":50,"value":5307},{"type":44,"tag":100,"props":45456,"children":45457},{"class":102,"line":416},[45458],{"type":44,"tag":100,"props":45459,"children":45460},{"style":400},[45461],{"type":50,"value":5315},{"type":44,"tag":100,"props":45463,"children":45464},{"class":102,"line":449},[45465],{"type":44,"tag":100,"props":45466,"children":45467},{"style":400},[45468],{"type":50,"value":5323},{"type":44,"tag":100,"props":45470,"children":45471},{"class":102,"line":481},[45472],{"type":44,"tag":100,"props":45473,"children":45474},{"style":400},[45475],{"type":50,"value":5331},{"type":44,"tag":100,"props":45477,"children":45478},{"class":102,"line":508},[45479,45483,45487,45491],{"type":44,"tag":100,"props":45480,"children":45481},{"style":390},[45482],{"type":50,"value":776},{"type":44,"tag":100,"props":45484,"children":45485},{"style":113},[45486],{"type":50,"value":781},{"type":44,"tag":100,"props":45488,"children":45489},{"style":400},[45490],{"type":50,"value":786},{"type":44,"tag":100,"props":45492,"children":45493},{"style":113},[45494],{"type":50,"value":5351},{"type":44,"tag":100,"props":45496,"children":45497},{"class":102,"line":531},[45498,45502],{"type":44,"tag":100,"props":45499,"children":45500},{"style":390},[45501],{"type":50,"value":814},{"type":44,"tag":100,"props":45503,"children":45504},{"style":400},[45505],{"type":50,"value":5363},{"type":44,"tag":124,"props":45507,"children":45508},{"id":5366},[45509,45510],{"type":50,"value":5369},{"type":44,"tag":81,"props":45511,"children":45513},{"className":45512},[],[45514],{"type":50,"value":5375},{"type":44,"tag":53,"props":45516,"children":45517},{},[45518],{"type":50,"value":5380},{"type":44,"tag":53,"props":45520,"children":45521},{},[45522,45523,45531],{"type":50,"value":183},{"type":44,"tag":185,"props":45524,"children":45525},{},[45526],{"type":44,"tag":81,"props":45527,"children":45529},{"className":45528},[],[45530],{"type":50,"value":5393},{"type":50,"value":195},{"type":44,"tag":197,"props":45533,"children":45534},{":variants":199,"group":200},[45535,46815,48107],{"type":44,"tag":203,"props":45536,"children":45537},{"v-slot:clickhouse":7},[45538],{"type":44,"tag":90,"props":45539,"children":45540},{"className":208,"code":5403,"language":210,"meta":7,"style":7},[45541],{"type":44,"tag":81,"props":45542,"children":45543},{"__ignoreMap":7},[45544,45551,45558,45565,45572,45579,45586,45593,45600,45607,45614,45621,45628,45635,45642,45649,45656,45675,45682,45689,45696,45715,45734,45753,45772,45791,45802,45809,45824,45831,45838,45845,45868,45887,45906,45925,45936,45943,45958,45965,45980,45999,46034,46057,46080,46123,46150,46173,46180,46187,46210,46229,46248,46267,46286,46305,46324,46343,46362,46437,46512,46599,46610,46621,46656,46691,46702,46737,46772],{"type":44,"tag":100,"props":45545,"children":45546},{"class":102,"line":103},[45547],{"type":44,"tag":100,"props":45548,"children":45549},{"style":220},[45550],{"type":50,"value":223},{"type":44,"tag":100,"props":45552,"children":45553},{"class":102,"line":226},[45554],{"type":44,"tag":100,"props":45555,"children":45556},{"style":220},[45557],{"type":50,"value":5422},{"type":44,"tag":100,"props":45559,"children":45560},{"class":102,"line":235},[45561],{"type":44,"tag":100,"props":45562,"children":45563},{"style":220},[45564],{"type":50,"value":241},{"type":44,"tag":100,"props":45566,"children":45567},{"class":102,"line":24},[45568],{"type":44,"tag":100,"props":45569,"children":45570},{"style":220},[45571],{"type":50,"value":249},{"type":44,"tag":100,"props":45573,"children":45574},{"class":102,"line":252},[45575],{"type":44,"tag":100,"props":45576,"children":45577},{"style":220},[45578],{"type":50,"value":258},{"type":44,"tag":100,"props":45580,"children":45581},{"class":102,"line":261},[45582],{"type":44,"tag":100,"props":45583,"children":45584},{"style":220},[45585],{"type":50,"value":267},{"type":44,"tag":100,"props":45587,"children":45588},{"class":102,"line":270},[45589],{"type":44,"tag":100,"props":45590,"children":45591},{"style":220},[45592],{"type":50,"value":5458},{"type":44,"tag":100,"props":45594,"children":45595},{"class":102,"line":279},[45596],{"type":44,"tag":100,"props":45597,"children":45598},{"style":220},[45599],{"type":50,"value":5466},{"type":44,"tag":100,"props":45601,"children":45602},{"class":102,"line":288},[45603],{"type":44,"tag":100,"props":45604,"children":45605},{"style":220},[45606],{"type":50,"value":276},{"type":44,"tag":100,"props":45608,"children":45609},{"class":102,"line":297},[45610],{"type":44,"tag":100,"props":45611,"children":45612},{"style":220},[45613],{"type":50,"value":285},{"type":44,"tag":100,"props":45615,"children":45616},{"class":102,"line":306},[45617],{"type":44,"tag":100,"props":45618,"children":45619},{"style":220},[45620],{"type":50,"value":5488},{"type":44,"tag":100,"props":45622,"children":45623},{"class":102,"line":315},[45624],{"type":44,"tag":100,"props":45625,"children":45626},{"style":220},[45627],{"type":50,"value":5225},{"type":44,"tag":100,"props":45629,"children":45630},{"class":102,"line":324},[45631],{"type":44,"tag":100,"props":45632,"children":45633},{"style":220},[45634],{"type":50,"value":312},{"type":44,"tag":100,"props":45636,"children":45637},{"class":102,"line":333},[45638],{"type":44,"tag":100,"props":45639,"children":45640},{"style":220},[45641],{"type":50,"value":321},{"type":44,"tag":100,"props":45643,"children":45644},{"class":102,"line":11},[45645],{"type":44,"tag":100,"props":45646,"children":45647},{"style":220},[45648],{"type":50,"value":374},{"type":44,"tag":100,"props":45650,"children":45651},{"class":102,"line":350},[45652],{"type":44,"tag":100,"props":45653,"children":45654},{"emptyLinePlaceholder":23},[45655],{"type":50,"value":383},{"type":44,"tag":100,"props":45657,"children":45658},{"class":102,"line":359},[45659,45663,45667,45671],{"type":44,"tag":100,"props":45660,"children":45661},{"style":390},[45662],{"type":50,"value":2387},{"type":44,"tag":100,"props":45664,"children":45665},{"style":400},[45666],{"type":50,"value":5535},{"type":44,"tag":100,"props":45668,"children":45669},{"style":390},[45670],{"type":50,"value":408},{"type":44,"tag":100,"props":45672,"children":45673},{"style":400},[45674],{"type":50,"value":2401},{"type":44,"tag":100,"props":45676,"children":45677},{"class":102,"line":368},[45678],{"type":44,"tag":100,"props":45679,"children":45680},{"style":390},[45681],{"type":50,"value":2409},{"type":44,"tag":100,"props":45683,"children":45684},{"class":102,"line":377},[45685],{"type":44,"tag":100,"props":45686,"children":45687},{"style":400},[45688],{"type":50,"value":5558},{"type":44,"tag":100,"props":45690,"children":45691},{"class":102,"line":386},[45692],{"type":44,"tag":100,"props":45693,"children":45694},{"style":400},[45695],{"type":50,"value":5566},{"type":44,"tag":100,"props":45697,"children":45698},{"class":102,"line":396},[45699,45703,45707,45711],{"type":44,"tag":100,"props":45700,"children":45701},{"style":113},[45702],{"type":50,"value":5574},{"type":44,"tag":100,"props":45704,"children":45705},{"style":400},[45706],{"type":50,"value":5579},{"type":44,"tag":100,"props":45708,"children":45709},{"style":390},[45710],{"type":50,"value":408},{"type":44,"tag":100,"props":45712,"children":45713},{"style":400},[45714],{"type":50,"value":5588},{"type":44,"tag":100,"props":45716,"children":45717},{"class":102,"line":416},[45718,45722,45726,45730],{"type":44,"tag":100,"props":45719,"children":45720},{"style":113},[45721],{"type":50,"value":5574},{"type":44,"tag":100,"props":45723,"children":45724},{"style":400},[45725],{"type":50,"value":5600},{"type":44,"tag":100,"props":45727,"children":45728},{"style":390},[45729],{"type":50,"value":408},{"type":44,"tag":100,"props":45731,"children":45732},{"style":400},[45733],{"type":50,"value":5609},{"type":44,"tag":100,"props":45735,"children":45736},{"class":102,"line":449},[45737,45741,45745,45749],{"type":44,"tag":100,"props":45738,"children":45739},{"style":113},[45740],{"type":50,"value":5574},{"type":44,"tag":100,"props":45742,"children":45743},{"style":400},[45744],{"type":50,"value":5621},{"type":44,"tag":100,"props":45746,"children":45747},{"style":390},[45748],{"type":50,"value":408},{"type":44,"tag":100,"props":45750,"children":45751},{"style":400},[45752],{"type":50,"value":5630},{"type":44,"tag":100,"props":45754,"children":45755},{"class":102,"line":481},[45756,45760,45764,45768],{"type":44,"tag":100,"props":45757,"children":45758},{"style":113},[45759],{"type":50,"value":5574},{"type":44,"tag":100,"props":45761,"children":45762},{"style":400},[45763],{"type":50,"value":5642},{"type":44,"tag":100,"props":45765,"children":45766},{"style":390},[45767],{"type":50,"value":408},{"type":44,"tag":100,"props":45769,"children":45770},{"style":400},[45771],{"type":50,"value":5651},{"type":44,"tag":100,"props":45773,"children":45774},{"class":102,"line":508},[45775,45779,45783,45787],{"type":44,"tag":100,"props":45776,"children":45777},{"style":390},[45778],{"type":50,"value":2524},{"type":44,"tag":100,"props":45780,"children":45781},{"style":113},[45782],{"type":50,"value":781},{"type":44,"tag":100,"props":45784,"children":45785},{"style":400},[45786],{"type":50,"value":786},{"type":44,"tag":100,"props":45788,"children":45789},{"style":113},[45790],{"type":50,"value":5671},{"type":44,"tag":100,"props":45792,"children":45793},{"class":102,"line":531},[45794,45798],{"type":44,"tag":100,"props":45795,"children":45796},{"style":390},[45797],{"type":50,"value":2725},{"type":44,"tag":100,"props":45799,"children":45800},{"style":400},[45801],{"type":50,"value":5683},{"type":44,"tag":100,"props":45803,"children":45804},{"class":102,"line":604},[45805],{"type":44,"tag":100,"props":45806,"children":45807},{"style":400},[45808],{"type":50,"value":2643},{"type":44,"tag":100,"props":45810,"children":45811},{"class":102,"line":626},[45812,45816,45820],{"type":44,"tag":100,"props":45813,"children":45814},{"style":400},[45815],{"type":50,"value":5698},{"type":44,"tag":100,"props":45817,"children":45818},{"style":390},[45819],{"type":50,"value":408},{"type":44,"tag":100,"props":45821,"children":45822},{"style":400},[45823],{"type":50,"value":2401},{"type":44,"tag":100,"props":45825,"children":45826},{"class":102,"line":648},[45827],{"type":44,"tag":100,"props":45828,"children":45829},{"style":390},[45830],{"type":50,"value":2409},{"type":44,"tag":100,"props":45832,"children":45833},{"class":102,"line":705},[45834],{"type":44,"tag":100,"props":45835,"children":45836},{"style":400},[45837],{"type":50,"value":5721},{"type":44,"tag":100,"props":45839,"children":45840},{"class":102,"line":770},[45841],{"type":44,"tag":100,"props":45842,"children":45843},{"style":400},[45844],{"type":50,"value":5566},{"type":44,"tag":100,"props":45846,"children":45847},{"class":102,"line":794},[45848,45852,45856,45860,45864],{"type":44,"tag":100,"props":45849,"children":45850},{"style":113},[45851],{"type":50,"value":5574},{"type":44,"tag":100,"props":45853,"children":45854},{"style":400},[45855],{"type":50,"value":5740},{"type":44,"tag":100,"props":45857,"children":45858},{"style":390},[45859],{"type":50,"value":408},{"type":44,"tag":100,"props":45861,"children":45862},{"style":390},[45863],{"type":50,"value":5749},{"type":44,"tag":100,"props":45865,"children":45866},{"style":400},[45867],{"type":50,"value":2431},{"type":44,"tag":100,"props":45869,"children":45870},{"class":102,"line":808},[45871,45875,45879,45883],{"type":44,"tag":100,"props":45872,"children":45873},{"style":113},[45874],{"type":50,"value":5574},{"type":44,"tag":100,"props":45876,"children":45877},{"style":400},[45878],{"type":50,"value":5765},{"type":44,"tag":100,"props":45880,"children":45881},{"style":390},[45882],{"type":50,"value":408},{"type":44,"tag":100,"props":45884,"children":45885},{"style":400},[45886],{"type":50,"value":5774},{"type":44,"tag":100,"props":45888,"children":45889},{"class":102,"line":1484},[45890,45894,45898,45902],{"type":44,"tag":100,"props":45891,"children":45892},{"style":113},[45893],{"type":50,"value":5574},{"type":44,"tag":100,"props":45895,"children":45896},{"style":400},[45897],{"type":50,"value":5786},{"type":44,"tag":100,"props":45899,"children":45900},{"style":390},[45901],{"type":50,"value":408},{"type":44,"tag":100,"props":45903,"children":45904},{"style":400},[45905],{"type":50,"value":5795},{"type":44,"tag":100,"props":45907,"children":45908},{"class":102,"line":2747},[45909,45913,45917,45921],{"type":44,"tag":100,"props":45910,"children":45911},{"style":390},[45912],{"type":50,"value":2524},{"type":44,"tag":100,"props":45914,"children":45915},{"style":113},[45916],{"type":50,"value":781},{"type":44,"tag":100,"props":45918,"children":45919},{"style":400},[45920],{"type":50,"value":786},{"type":44,"tag":100,"props":45922,"children":45923},{"style":113},[45924],{"type":50,"value":5815},{"type":44,"tag":100,"props":45926,"children":45927},{"class":102,"line":2769},[45928,45932],{"type":44,"tag":100,"props":45929,"children":45930},{"style":390},[45931],{"type":50,"value":2725},{"type":44,"tag":100,"props":45933,"children":45934},{"style":400},[45935],{"type":50,"value":5827},{"type":44,"tag":100,"props":45937,"children":45938},{"class":102,"line":2791},[45939],{"type":44,"tag":100,"props":45940,"children":45941},{"style":400},[45942],{"type":50,"value":2643},{"type":44,"tag":100,"props":45944,"children":45945},{"class":102,"line":2856},[45946,45950,45954],{"type":44,"tag":100,"props":45947,"children":45948},{"style":400},[45949],{"type":50,"value":5842},{"type":44,"tag":100,"props":45951,"children":45952},{"style":390},[45953],{"type":50,"value":408},{"type":44,"tag":100,"props":45955,"children":45956},{"style":400},[45957],{"type":50,"value":2401},{"type":44,"tag":100,"props":45959,"children":45960},{"class":102,"line":2898},[45961],{"type":44,"tag":100,"props":45962,"children":45963},{"style":390},[45964],{"type":50,"value":2409},{"type":44,"tag":100,"props":45966,"children":45967},{"class":102,"line":2977},[45968,45972,45976],{"type":44,"tag":100,"props":45969,"children":45970},{"style":400},[45971],{"type":50,"value":5865},{"type":44,"tag":100,"props":45973,"children":45974},{"style":390},[45975],{"type":50,"value":408},{"type":44,"tag":100,"props":45977,"children":45978},{"style":400},[45979],{"type":50,"value":413},{"type":44,"tag":100,"props":45981,"children":45982},{"class":102,"line":3015},[45983,45987,45991,45995],{"type":44,"tag":100,"props":45984,"children":45985},{"style":113},[45986],{"type":50,"value":5881},{"type":44,"tag":100,"props":45988,"children":45989},{"style":400},[45990],{"type":50,"value":786},{"type":44,"tag":100,"props":45992,"children":45993},{"style":113},[45994],{"type":50,"value":5890},{"type":44,"tag":100,"props":45996,"children":45997},{"style":400},[45998],{"type":50,"value":2431},{"type":44,"tag":100,"props":46000,"children":46001},{"class":102,"line":3081},[46002,46006,46010,46014,46018,46022,46026,46030],{"type":44,"tag":100,"props":46003,"children":46004},{"style":113},[46005],{"type":50,"value":5574},{"type":44,"tag":100,"props":46007,"children":46008},{"style":400},[46009],{"type":50,"value":427},{"type":44,"tag":100,"props":46011,"children":46012},{"style":113},[46013],{"type":50,"value":2478},{"type":44,"tag":100,"props":46015,"children":46016},{"style":400},[46017],{"type":50,"value":786},{"type":44,"tag":100,"props":46019,"children":46020},{"style":113},[46021],{"type":50,"value":2999},{"type":44,"tag":100,"props":46023,"children":46024},{"style":400},[46025],{"type":50,"value":437},{"type":44,"tag":100,"props":46027,"children":46028},{"style":390},[46029],{"type":50,"value":408},{"type":44,"tag":100,"props":46031,"children":46032},{"style":400},[46033],{"type":50,"value":5930},{"type":44,"tag":100,"props":46035,"children":46036},{"class":102,"line":3094},[46037,46041,46045,46049,46053],{"type":44,"tag":100,"props":46038,"children":46039},{"style":390},[46040],{"type":50,"value":2524},{"type":44,"tag":100,"props":46042,"children":46043},{"style":113},[46044],{"type":50,"value":781},{"type":44,"tag":100,"props":46046,"children":46047},{"style":400},[46048],{"type":50,"value":786},{"type":44,"tag":100,"props":46050,"children":46051},{"style":113},[46052],{"type":50,"value":1408},{"type":44,"tag":100,"props":46054,"children":46055},{"style":400},[46056],{"type":50,"value":1413},{"type":44,"tag":100,"props":46058,"children":46059},{"class":102,"line":3108},[46060,46064,46068,46072,46076],{"type":44,"tag":100,"props":46061,"children":46062},{"style":390},[46063],{"type":50,"value":2548},{"type":44,"tag":100,"props":46065,"children":46066},{"style":113},[46067],{"type":50,"value":781},{"type":44,"tag":100,"props":46069,"children":46070},{"style":400},[46071],{"type":50,"value":786},{"type":44,"tag":100,"props":46073,"children":46074},{"style":113},[46075],{"type":50,"value":5973},{"type":44,"tag":100,"props":46077,"children":46078},{"style":400},[46079],{"type":50,"value":5978},{"type":44,"tag":100,"props":46081,"children":46082},{"class":102,"line":3147},[46083,46087,46091,46095,46099,46103,46107,46111,46115,46119],{"type":44,"tag":100,"props":46084,"children":46085},{"style":390},[46086],{"type":50,"value":2574},{"type":44,"tag":100,"props":46088,"children":46089},{"style":400},[46090],{"type":50,"value":5990},{"type":44,"tag":100,"props":46092,"children":46093},{"style":113},[46094],{"type":50,"value":2478},{"type":44,"tag":100,"props":46096,"children":46097},{"style":400},[46098],{"type":50,"value":786},{"type":44,"tag":100,"props":46100,"children":46101},{"style":113},[46102],{"type":50,"value":2487},{"type":44,"tag":100,"props":46104,"children":46105},{"style":400},[46106],{"type":50,"value":437},{"type":44,"tag":100,"props":46108,"children":46109},{"style":390},[46110],{"type":50,"value":460},{"type":44,"tag":100,"props":46112,"children":46113},{"style":113},[46114],{"type":50,"value":6015},{"type":44,"tag":100,"props":46116,"children":46117},{"style":400},[46118],{"type":50,"value":786},{"type":44,"tag":100,"props":46120,"children":46121},{"style":113},[46122],{"type":50,"value":6024},{"type":44,"tag":100,"props":46124,"children":46125},{"class":102,"line":3188},[46126,46130,46134,46138,46142,46146],{"type":44,"tag":100,"props":46127,"children":46128},{"style":390},[46129],{"type":50,"value":2613},{"type":44,"tag":100,"props":46131,"children":46132},{"style":113},[46133],{"type":50,"value":1426},{"type":44,"tag":100,"props":46135,"children":46136},{"style":400},[46137],{"type":50,"value":786},{"type":44,"tag":100,"props":46139,"children":46140},{"style":113},[46141],{"type":50,"value":2626},{"type":44,"tag":100,"props":46143,"children":46144},{"style":390},[46145],{"type":50,"value":2591},{"type":44,"tag":100,"props":46147,"children":46148},{"style":119},[46149],{"type":50,"value":2635},{"type":44,"tag":100,"props":46151,"children":46152},{"class":102,"line":6054},[46153,46157,46161,46165,46169],{"type":44,"tag":100,"props":46154,"children":46155},{"style":390},[46156],{"type":50,"value":2725},{"type":44,"tag":100,"props":46158,"children":46159},{"style":400},[46160],{"type":50,"value":6064},{"type":44,"tag":100,"props":46162,"children":46163},{"style":113},[46164],{"type":50,"value":6069},{"type":44,"tag":100,"props":46166,"children":46167},{"style":400},[46168],{"type":50,"value":786},{"type":44,"tag":100,"props":46170,"children":46171},{"style":113},[46172],{"type":50,"value":6078},{"type":44,"tag":100,"props":46174,"children":46175},{"class":102,"line":6081},[46176],{"type":44,"tag":100,"props":46177,"children":46178},{"style":400},[46179],{"type":50,"value":1464},{"type":44,"tag":100,"props":46181,"children":46182},{"class":102,"line":6089},[46183],{"type":44,"tag":100,"props":46184,"children":46185},{"style":390},[46186],{"type":50,"value":393},{"type":44,"tag":100,"props":46188,"children":46189},{"class":102,"line":6097},[46190,46194,46198,46202,46206],{"type":44,"tag":100,"props":46191,"children":46192},{"style":113},[46193],{"type":50,"value":2775},{"type":44,"tag":100,"props":46195,"children":46196},{"style":400},[46197],{"type":50,"value":786},{"type":44,"tag":100,"props":46199,"children":46200},{"style":113},[46201],{"type":50,"value":6111},{"type":44,"tag":100,"props":46203,"children":46204},{"style":390},[46205],{"type":50,"value":1661},{"type":44,"tag":100,"props":46207,"children":46208},{"style":400},[46209],{"type":50,"value":6120},{"type":44,"tag":100,"props":46211,"children":46212},{"class":102,"line":6123},[46213,46217,46221,46225],{"type":44,"tag":100,"props":46214,"children":46215},{"style":113},[46216],{"type":50,"value":2775},{"type":44,"tag":100,"props":46218,"children":46219},{"style":400},[46220],{"type":50,"value":786},{"type":44,"tag":100,"props":46222,"children":46223},{"style":113},[46224],{"type":50,"value":5890},{"type":44,"tag":100,"props":46226,"children":46227},{"style":400},[46228],{"type":50,"value":2431},{"type":44,"tag":100,"props":46230,"children":46231},{"class":102,"line":6143},[46232,46236,46240,46244],{"type":44,"tag":100,"props":46233,"children":46234},{"style":113},[46235],{"type":50,"value":2775},{"type":44,"tag":100,"props":46237,"children":46238},{"style":400},[46239],{"type":50,"value":786},{"type":44,"tag":100,"props":46241,"children":46242},{"style":113},[46243],{"type":50,"value":6157},{"type":44,"tag":100,"props":46245,"children":46246},{"style":400},[46247],{"type":50,"value":2431},{"type":44,"tag":100,"props":46249,"children":46250},{"class":102,"line":6164},[46251,46255,46259,46263],{"type":44,"tag":100,"props":46252,"children":46253},{"style":113},[46254],{"type":50,"value":2775},{"type":44,"tag":100,"props":46256,"children":46257},{"style":400},[46258],{"type":50,"value":786},{"type":44,"tag":100,"props":46260,"children":46261},{"style":113},[46262],{"type":50,"value":6178},{"type":44,"tag":100,"props":46264,"children":46265},{"style":400},[46266],{"type":50,"value":2431},{"type":44,"tag":100,"props":46268,"children":46269},{"class":102,"line":6185},[46270,46274,46278,46282],{"type":44,"tag":100,"props":46271,"children":46272},{"style":113},[46273],{"type":50,"value":2775},{"type":44,"tag":100,"props":46275,"children":46276},{"style":400},[46277],{"type":50,"value":786},{"type":44,"tag":100,"props":46279,"children":46280},{"style":113},[46281],{"type":50,"value":6199},{"type":44,"tag":100,"props":46283,"children":46284},{"style":400},[46285],{"type":50,"value":2431},{"type":44,"tag":100,"props":46287,"children":46288},{"class":102,"line":6206},[46289,46293,46297,46301],{"type":44,"tag":100,"props":46290,"children":46291},{"style":113},[46292],{"type":50,"value":2775},{"type":44,"tag":100,"props":46294,"children":46295},{"style":400},[46296],{"type":50,"value":786},{"type":44,"tag":100,"props":46298,"children":46299},{"style":113},[46300],{"type":50,"value":6220},{"type":44,"tag":100,"props":46302,"children":46303},{"style":400},[46304],{"type":50,"value":2431},{"type":44,"tag":100,"props":46306,"children":46307},{"class":102,"line":6227},[46308,46312,46316,46320],{"type":44,"tag":100,"props":46309,"children":46310},{"style":113},[46311],{"type":50,"value":6233},{"type":44,"tag":100,"props":46313,"children":46314},{"style":400},[46315],{"type":50,"value":786},{"type":44,"tag":100,"props":46317,"children":46318},{"style":113},[46319],{"type":50,"value":6242},{"type":44,"tag":100,"props":46321,"children":46322},{"style":400},[46323],{"type":50,"value":2431},{"type":44,"tag":100,"props":46325,"children":46326},{"class":102,"line":6249},[46327,46331,46335,46339],{"type":44,"tag":100,"props":46328,"children":46329},{"style":113},[46330],{"type":50,"value":6233},{"type":44,"tag":100,"props":46332,"children":46333},{"style":400},[46334],{"type":50,"value":786},{"type":44,"tag":100,"props":46336,"children":46337},{"style":113},[46338],{"type":50,"value":6263},{"type":44,"tag":100,"props":46340,"children":46341},{"style":400},[46342],{"type":50,"value":2431},{"type":44,"tag":100,"props":46344,"children":46345},{"class":102,"line":6270},[46346,46350,46354,46358],{"type":44,"tag":100,"props":46347,"children":46348},{"style":113},[46349],{"type":50,"value":6276},{"type":44,"tag":100,"props":46351,"children":46352},{"style":400},[46353],{"type":50,"value":786},{"type":44,"tag":100,"props":46355,"children":46356},{"style":113},[46357],{"type":50,"value":6285},{"type":44,"tag":100,"props":46359,"children":46360},{"style":400},[46361],{"type":50,"value":2431},{"type":44,"tag":100,"props":46363,"children":46364},{"class":102,"line":6292},[46365,46369,46373,46377,46381,46385,46389,46393,46397,46401,46405,46409,46413,46417,46421,46425,46429,46433],{"type":44,"tag":100,"props":46366,"children":46367},{"style":113},[46368],{"type":50,"value":654},{"type":44,"tag":100,"props":46370,"children":46371},{"style":400},[46372],{"type":50,"value":427},{"type":44,"tag":100,"props":46374,"children":46375},{"style":113},[46376],{"type":50,"value":6306},{"type":44,"tag":100,"props":46378,"children":46379},{"style":400},[46380],{"type":50,"value":786},{"type":44,"tag":100,"props":46382,"children":46383},{"style":113},[46384],{"type":50,"value":6285},{"type":44,"tag":100,"props":46386,"children":46387},{"style":390},[46388],{"type":50,"value":6319},{"type":44,"tag":100,"props":46390,"children":46391},{"style":113},[46392],{"type":50,"value":669},{"type":44,"tag":100,"props":46394,"children":46395},{"style":400},[46396],{"type":50,"value":427},{"type":44,"tag":100,"props":46398,"children":46399},{"style":113},[46400],{"type":50,"value":2925},{"type":44,"tag":100,"props":46402,"children":46403},{"style":400},[46404],{"type":50,"value":786},{"type":44,"tag":100,"props":46406,"children":46407},{"style":113},[46408],{"type":50,"value":6157},{"type":44,"tag":100,"props":46410,"children":46411},{"style":400},[46412],{"type":50,"value":750},{"type":44,"tag":100,"props":46414,"children":46415},{"style":113},[46416],{"type":50,"value":679},{"type":44,"tag":100,"props":46418,"children":46419},{"style":400},[46420],{"type":50,"value":684},{"type":44,"tag":100,"props":46422,"children":46423},{"style":113},[46424],{"type":50,"value":689},{"type":44,"tag":100,"props":46426,"children":46427},{"style":400},[46428],{"type":50,"value":437},{"type":44,"tag":100,"props":46430,"children":46431},{"style":390},[46432],{"type":50,"value":408},{"type":44,"tag":100,"props":46434,"children":46435},{"style":400},[46436],{"type":50,"value":6368},{"type":44,"tag":100,"props":46438,"children":46439},{"class":102,"line":6371},[46440,46444,46448,46452,46456,46460,46464,46468,46472,46476,46480,46484,46488,46492,46496,46500,46504,46508],{"type":44,"tag":100,"props":46441,"children":46442},{"style":113},[46443],{"type":50,"value":654},{"type":44,"tag":100,"props":46445,"children":46446},{"style":400},[46447],{"type":50,"value":427},{"type":44,"tag":100,"props":46449,"children":46450},{"style":113},[46451],{"type":50,"value":2925},{"type":44,"tag":100,"props":46453,"children":46454},{"style":400},[46455],{"type":50,"value":786},{"type":44,"tag":100,"props":46457,"children":46458},{"style":113},[46459],{"type":50,"value":6157},{"type":44,"tag":100,"props":46461,"children":46462},{"style":390},[46463],{"type":50,"value":6319},{"type":44,"tag":100,"props":46465,"children":46466},{"style":113},[46467],{"type":50,"value":669},{"type":44,"tag":100,"props":46469,"children":46470},{"style":400},[46471],{"type":50,"value":427},{"type":44,"tag":100,"props":46473,"children":46474},{"style":113},[46475],{"type":50,"value":2925},{"type":44,"tag":100,"props":46477,"children":46478},{"style":400},[46479],{"type":50,"value":786},{"type":44,"tag":100,"props":46481,"children":46482},{"style":113},[46483],{"type":50,"value":6220},{"type":44,"tag":100,"props":46485,"children":46486},{"style":400},[46487],{"type":50,"value":750},{"type":44,"tag":100,"props":46489,"children":46490},{"style":113},[46491],{"type":50,"value":679},{"type":44,"tag":100,"props":46493,"children":46494},{"style":400},[46495],{"type":50,"value":684},{"type":44,"tag":100,"props":46497,"children":46498},{"style":113},[46499],{"type":50,"value":689},{"type":44,"tag":100,"props":46501,"children":46502},{"style":400},[46503],{"type":50,"value":437},{"type":44,"tag":100,"props":46505,"children":46506},{"style":390},[46507],{"type":50,"value":408},{"type":44,"tag":100,"props":46509,"children":46510},{"style":400},[46511],{"type":50,"value":6445},{"type":44,"tag":100,"props":46513,"children":46514},{"class":102,"line":6448},[46515,46519,46523,46527,46531,46535,46539,46543,46547,46551,46555,46559,46563,46567,46571,46575,46579,46583,46587,46591,46595],{"type":44,"tag":100,"props":46516,"children":46517},{"style":113},[46518],{"type":50,"value":654},{"type":44,"tag":100,"props":46520,"children":46521},{"style":400},[46522],{"type":50,"value":427},{"type":44,"tag":100,"props":46524,"children":46525},{"style":113},[46526],{"type":50,"value":2925},{"type":44,"tag":100,"props":46528,"children":46529},{"style":400},[46530],{"type":50,"value":786},{"type":44,"tag":100,"props":46532,"children":46533},{"style":113},[46534],{"type":50,"value":6199},{"type":44,"tag":100,"props":46536,"children":46537},{"style":390},[46538],{"type":50,"value":6319},{"type":44,"tag":100,"props":46540,"children":46541},{"style":113},[46542],{"type":50,"value":669},{"type":44,"tag":100,"props":46544,"children":46545},{"style":400},[46546],{"type":50,"value":427},{"type":44,"tag":100,"props":46548,"children":46549},{"style":113},[46550],{"type":50,"value":2925},{"type":44,"tag":100,"props":46552,"children":46553},{"style":400},[46554],{"type":50,"value":786},{"type":44,"tag":100,"props":46556,"children":46557},{"style":113},[46558],{"type":50,"value":6178},{"type":44,"tag":100,"props":46560,"children":46561},{"style":400},[46562],{"type":50,"value":750},{"type":44,"tag":100,"props":46564,"children":46565},{"style":113},[46566],{"type":50,"value":679},{"type":44,"tag":100,"props":46568,"children":46569},{"style":400},[46570],{"type":50,"value":437},{"type":44,"tag":100,"props":46572,"children":46573},{"style":390},[46574],{"type":50,"value":432},{"type":44,"tag":100,"props":46576,"children":46577},{"style":113},[46578],{"type":50,"value":745},{"type":44,"tag":100,"props":46580,"children":46581},{"style":400},[46582],{"type":50,"value":750},{"type":44,"tag":100,"props":46584,"children":46585},{"style":113},[46586],{"type":50,"value":689},{"type":44,"tag":100,"props":46588,"children":46589},{"style":400},[46590],{"type":50,"value":437},{"type":44,"tag":100,"props":46592,"children":46593},{"style":390},[46594],{"type":50,"value":408},{"type":44,"tag":100,"props":46596,"children":46597},{"style":400},[46598],{"type":50,"value":6534},{"type":44,"tag":100,"props":46600,"children":46601},{"class":102,"line":6537},[46602,46606],{"type":44,"tag":100,"props":46603,"children":46604},{"style":390},[46605],{"type":50,"value":776},{"type":44,"tag":100,"props":46607,"children":46608},{"style":400},[46609],{"type":50,"value":6547},{"type":44,"tag":100,"props":46611,"children":46612},{"class":102,"line":6550},[46613,46617],{"type":44,"tag":100,"props":46614,"children":46615},{"style":390},[46616],{"type":50,"value":6556},{"type":44,"tag":100,"props":46618,"children":46619},{"style":400},[46620],{"type":50,"value":6561},{"type":44,"tag":100,"props":46622,"children":46623},{"class":102,"line":6564},[46624,46628,46632,46636,46640,46644,46648,46652],{"type":44,"tag":100,"props":46625,"children":46626},{"style":390},[46627],{"type":50,"value":3114},{"type":44,"tag":100,"props":46629,"children":46630},{"style":113},[46631],{"type":50,"value":3135},{"type":44,"tag":100,"props":46633,"children":46634},{"style":400},[46635],{"type":50,"value":786},{"type":44,"tag":100,"props":46637,"children":46638},{"style":113},[46639],{"type":50,"value":6111},{"type":44,"tag":100,"props":46641,"children":46642},{"style":390},[46643],{"type":50,"value":2591},{"type":44,"tag":100,"props":46645,"children":46646},{"style":113},[46647],{"type":50,"value":6590},{"type":44,"tag":100,"props":46649,"children":46650},{"style":400},[46651],{"type":50,"value":786},{"type":44,"tag":100,"props":46653,"children":46654},{"style":113},[46655],{"type":50,"value":6024},{"type":44,"tag":100,"props":46657,"children":46658},{"class":102,"line":6601},[46659,46663,46667,46671,46675,46679,46683,46687],{"type":44,"tag":100,"props":46660,"children":46661},{"style":390},[46662],{"type":50,"value":6607},{"type":44,"tag":100,"props":46664,"children":46665},{"style":113},[46666],{"type":50,"value":3135},{"type":44,"tag":100,"props":46668,"children":46669},{"style":400},[46670],{"type":50,"value":786},{"type":44,"tag":100,"props":46672,"children":46673},{"style":113},[46674],{"type":50,"value":5890},{"type":44,"tag":100,"props":46676,"children":46677},{"style":390},[46678],{"type":50,"value":2591},{"type":44,"tag":100,"props":46680,"children":46681},{"style":113},[46682],{"type":50,"value":6590},{"type":44,"tag":100,"props":46684,"children":46685},{"style":400},[46686],{"type":50,"value":786},{"type":44,"tag":100,"props":46688,"children":46689},{"style":113},[46690],{"type":50,"value":6078},{"type":44,"tag":100,"props":46692,"children":46693},{"class":102,"line":6638},[46694,46698],{"type":44,"tag":100,"props":46695,"children":46696},{"style":390},[46697],{"type":50,"value":6556},{"type":44,"tag":100,"props":46699,"children":46700},{"style":400},[46701],{"type":50,"value":6648},{"type":44,"tag":100,"props":46703,"children":46704},{"class":102,"line":6651},[46705,46709,46713,46717,46721,46725,46729,46733],{"type":44,"tag":100,"props":46706,"children":46707},{"style":390},[46708],{"type":50,"value":3114},{"type":44,"tag":100,"props":46710,"children":46711},{"style":113},[46712],{"type":50,"value":3135},{"type":44,"tag":100,"props":46714,"children":46715},{"style":400},[46716],{"type":50,"value":786},{"type":44,"tag":100,"props":46718,"children":46719},{"style":113},[46720],{"type":50,"value":6111},{"type":44,"tag":100,"props":46722,"children":46723},{"style":390},[46724],{"type":50,"value":2591},{"type":44,"tag":100,"props":46726,"children":46727},{"style":113},[46728],{"type":50,"value":6677},{"type":44,"tag":100,"props":46730,"children":46731},{"style":400},[46732],{"type":50,"value":786},{"type":44,"tag":100,"props":46734,"children":46735},{"style":113},[46736],{"type":50,"value":6686},{"type":44,"tag":100,"props":46738,"children":46739},{"class":102,"line":6689},[46740,46744,46748,46752,46756,46760,46764,46768],{"type":44,"tag":100,"props":46741,"children":46742},{"style":390},[46743],{"type":50,"value":6607},{"type":44,"tag":100,"props":46745,"children":46746},{"style":113},[46747],{"type":50,"value":3135},{"type":44,"tag":100,"props":46749,"children":46750},{"style":400},[46751],{"type":50,"value":786},{"type":44,"tag":100,"props":46753,"children":46754},{"style":113},[46755],{"type":50,"value":5890},{"type":44,"tag":100,"props":46757,"children":46758},{"style":390},[46759],{"type":50,"value":2591},{"type":44,"tag":100,"props":46761,"children":46762},{"style":113},[46763],{"type":50,"value":6677},{"type":44,"tag":100,"props":46765,"children":46766},{"style":400},[46767],{"type":50,"value":786},{"type":44,"tag":100,"props":46769,"children":46770},{"style":113},[46771],{"type":50,"value":6078},{"type":44,"tag":100,"props":46773,"children":46774},{"class":102,"line":6725},[46775,46779,46783,46787,46791,46795,46799,46803,46807,46811],{"type":44,"tag":100,"props":46776,"children":46777},{"style":390},[46778],{"type":50,"value":814},{"type":44,"tag":100,"props":46780,"children":46781},{"style":113},[46782],{"type":50,"value":3135},{"type":44,"tag":100,"props":46784,"children":46785},{"style":400},[46786],{"type":50,"value":786},{"type":44,"tag":100,"props":46788,"children":46789},{"style":113},[46790],{"type":50,"value":6111},{"type":44,"tag":100,"props":46792,"children":46793},{"style":390},[46794],{"type":50,"value":6747},{"type":44,"tag":100,"props":46796,"children":46797},{"style":400},[46798],{"type":50,"value":750},{"type":44,"tag":100,"props":46800,"children":46801},{"style":113},[46802],{"type":50,"value":2925},{"type":44,"tag":100,"props":46804,"children":46805},{"style":400},[46806],{"type":50,"value":786},{"type":44,"tag":100,"props":46808,"children":46809},{"style":113},[46810],{"type":50,"value":6157},{"type":44,"tag":100,"props":46812,"children":46813},{"style":390},[46814],{"type":50,"value":6768},{"type":44,"tag":203,"props":46816,"children":46817},{"v-slot:bigquery":7},[46818],{"type":44,"tag":90,"props":46819,"children":46820},{"className":208,"code":6774,"language":210,"meta":7,"style":7},[46821],{"type":44,"tag":81,"props":46822,"children":46823},{"__ignoreMap":7},[46824,46831,46838,46845,46852,46859,46866,46873,46880,46887,46894,46901,46908,46915,46922,46929,46936,46955,46962,46969,46976,46995,47014,47033,47052,47071,47082,47089,47104,47111,47118,47125,47148,47167,47186,47205,47216,47223,47238,47245,47264,47283,47318,47341,47364,47411,47438,47465,47472,47479,47502,47521,47540,47559,47578,47597,47616,47635,47654,47729,47804,47891,47902,47913,47948,47983,47994,48029,48064],{"type":44,"tag":100,"props":46825,"children":46826},{"class":102,"line":103},[46827],{"type":44,"tag":100,"props":46828,"children":46829},{"style":220},[46830],{"type":50,"value":223},{"type":44,"tag":100,"props":46832,"children":46833},{"class":102,"line":226},[46834],{"type":44,"tag":100,"props":46835,"children":46836},{"style":220},[46837],{"type":50,"value":5422},{"type":44,"tag":100,"props":46839,"children":46840},{"class":102,"line":235},[46841],{"type":44,"tag":100,"props":46842,"children":46843},{"style":220},[46844],{"type":50,"value":241},{"type":44,"tag":100,"props":46846,"children":46847},{"class":102,"line":24},[46848],{"type":44,"tag":100,"props":46849,"children":46850},{"style":220},[46851],{"type":50,"value":249},{"type":44,"tag":100,"props":46853,"children":46854},{"class":102,"line":252},[46855],{"type":44,"tag":100,"props":46856,"children":46857},{"style":220},[46858],{"type":50,"value":258},{"type":44,"tag":100,"props":46860,"children":46861},{"class":102,"line":261},[46862],{"type":44,"tag":100,"props":46863,"children":46864},{"style":220},[46865],{"type":50,"value":267},{"type":44,"tag":100,"props":46867,"children":46868},{"class":102,"line":270},[46869],{"type":44,"tag":100,"props":46870,"children":46871},{"style":220},[46872],{"type":50,"value":5458},{"type":44,"tag":100,"props":46874,"children":46875},{"class":102,"line":279},[46876],{"type":44,"tag":100,"props":46877,"children":46878},{"style":220},[46879],{"type":50,"value":5466},{"type":44,"tag":100,"props":46881,"children":46882},{"class":102,"line":288},[46883],{"type":44,"tag":100,"props":46884,"children":46885},{"style":220},[46886],{"type":50,"value":276},{"type":44,"tag":100,"props":46888,"children":46889},{"class":102,"line":297},[46890],{"type":44,"tag":100,"props":46891,"children":46892},{"style":220},[46893],{"type":50,"value":285},{"type":44,"tag":100,"props":46895,"children":46896},{"class":102,"line":306},[46897],{"type":44,"tag":100,"props":46898,"children":46899},{"style":220},[46900],{"type":50,"value":5488},{"type":44,"tag":100,"props":46902,"children":46903},{"class":102,"line":315},[46904],{"type":44,"tag":100,"props":46905,"children":46906},{"style":220},[46907],{"type":50,"value":5225},{"type":44,"tag":100,"props":46909,"children":46910},{"class":102,"line":324},[46911],{"type":44,"tag":100,"props":46912,"children":46913},{"style":220},[46914],{"type":50,"value":312},{"type":44,"tag":100,"props":46916,"children":46917},{"class":102,"line":333},[46918],{"type":44,"tag":100,"props":46919,"children":46920},{"style":220},[46921],{"type":50,"value":321},{"type":44,"tag":100,"props":46923,"children":46924},{"class":102,"line":11},[46925],{"type":44,"tag":100,"props":46926,"children":46927},{"style":220},[46928],{"type":50,"value":374},{"type":44,"tag":100,"props":46930,"children":46931},{"class":102,"line":350},[46932],{"type":44,"tag":100,"props":46933,"children":46934},{"emptyLinePlaceholder":23},[46935],{"type":50,"value":383},{"type":44,"tag":100,"props":46937,"children":46938},{"class":102,"line":359},[46939,46943,46947,46951],{"type":44,"tag":100,"props":46940,"children":46941},{"style":390},[46942],{"type":50,"value":2387},{"type":44,"tag":100,"props":46944,"children":46945},{"style":400},[46946],{"type":50,"value":5535},{"type":44,"tag":100,"props":46948,"children":46949},{"style":390},[46950],{"type":50,"value":408},{"type":44,"tag":100,"props":46952,"children":46953},{"style":400},[46954],{"type":50,"value":2401},{"type":44,"tag":100,"props":46956,"children":46957},{"class":102,"line":368},[46958],{"type":44,"tag":100,"props":46959,"children":46960},{"style":390},[46961],{"type":50,"value":2409},{"type":44,"tag":100,"props":46963,"children":46964},{"class":102,"line":377},[46965],{"type":44,"tag":100,"props":46966,"children":46967},{"style":400},[46968],{"type":50,"value":5558},{"type":44,"tag":100,"props":46970,"children":46971},{"class":102,"line":386},[46972],{"type":44,"tag":100,"props":46973,"children":46974},{"style":400},[46975],{"type":50,"value":5566},{"type":44,"tag":100,"props":46977,"children":46978},{"class":102,"line":396},[46979,46983,46987,46991],{"type":44,"tag":100,"props":46980,"children":46981},{"style":113},[46982],{"type":50,"value":5574},{"type":44,"tag":100,"props":46984,"children":46985},{"style":400},[46986],{"type":50,"value":5579},{"type":44,"tag":100,"props":46988,"children":46989},{"style":390},[46990],{"type":50,"value":408},{"type":44,"tag":100,"props":46992,"children":46993},{"style":400},[46994],{"type":50,"value":5588},{"type":44,"tag":100,"props":46996,"children":46997},{"class":102,"line":416},[46998,47002,47006,47010],{"type":44,"tag":100,"props":46999,"children":47000},{"style":113},[47001],{"type":50,"value":5574},{"type":44,"tag":100,"props":47003,"children":47004},{"style":400},[47005],{"type":50,"value":5600},{"type":44,"tag":100,"props":47007,"children":47008},{"style":390},[47009],{"type":50,"value":408},{"type":44,"tag":100,"props":47011,"children":47012},{"style":400},[47013],{"type":50,"value":5609},{"type":44,"tag":100,"props":47015,"children":47016},{"class":102,"line":449},[47017,47021,47025,47029],{"type":44,"tag":100,"props":47018,"children":47019},{"style":113},[47020],{"type":50,"value":5574},{"type":44,"tag":100,"props":47022,"children":47023},{"style":400},[47024],{"type":50,"value":5621},{"type":44,"tag":100,"props":47026,"children":47027},{"style":390},[47028],{"type":50,"value":408},{"type":44,"tag":100,"props":47030,"children":47031},{"style":400},[47032],{"type":50,"value":5630},{"type":44,"tag":100,"props":47034,"children":47035},{"class":102,"line":481},[47036,47040,47044,47048],{"type":44,"tag":100,"props":47037,"children":47038},{"style":113},[47039],{"type":50,"value":5574},{"type":44,"tag":100,"props":47041,"children":47042},{"style":400},[47043],{"type":50,"value":5642},{"type":44,"tag":100,"props":47045,"children":47046},{"style":390},[47047],{"type":50,"value":408},{"type":44,"tag":100,"props":47049,"children":47050},{"style":400},[47051],{"type":50,"value":5651},{"type":44,"tag":100,"props":47053,"children":47054},{"class":102,"line":508},[47055,47059,47063,47067],{"type":44,"tag":100,"props":47056,"children":47057},{"style":390},[47058],{"type":50,"value":2524},{"type":44,"tag":100,"props":47060,"children":47061},{"style":113},[47062],{"type":50,"value":781},{"type":44,"tag":100,"props":47064,"children":47065},{"style":400},[47066],{"type":50,"value":786},{"type":44,"tag":100,"props":47068,"children":47069},{"style":113},[47070],{"type":50,"value":5671},{"type":44,"tag":100,"props":47072,"children":47073},{"class":102,"line":531},[47074,47078],{"type":44,"tag":100,"props":47075,"children":47076},{"style":390},[47077],{"type":50,"value":2725},{"type":44,"tag":100,"props":47079,"children":47080},{"style":400},[47081],{"type":50,"value":5683},{"type":44,"tag":100,"props":47083,"children":47084},{"class":102,"line":604},[47085],{"type":44,"tag":100,"props":47086,"children":47087},{"style":400},[47088],{"type":50,"value":2643},{"type":44,"tag":100,"props":47090,"children":47091},{"class":102,"line":626},[47092,47096,47100],{"type":44,"tag":100,"props":47093,"children":47094},{"style":400},[47095],{"type":50,"value":5698},{"type":44,"tag":100,"props":47097,"children":47098},{"style":390},[47099],{"type":50,"value":408},{"type":44,"tag":100,"props":47101,"children":47102},{"style":400},[47103],{"type":50,"value":2401},{"type":44,"tag":100,"props":47105,"children":47106},{"class":102,"line":648},[47107],{"type":44,"tag":100,"props":47108,"children":47109},{"style":390},[47110],{"type":50,"value":2409},{"type":44,"tag":100,"props":47112,"children":47113},{"class":102,"line":705},[47114],{"type":44,"tag":100,"props":47115,"children":47116},{"style":400},[47117],{"type":50,"value":5721},{"type":44,"tag":100,"props":47119,"children":47120},{"class":102,"line":770},[47121],{"type":44,"tag":100,"props":47122,"children":47123},{"style":400},[47124],{"type":50,"value":5566},{"type":44,"tag":100,"props":47126,"children":47127},{"class":102,"line":794},[47128,47132,47136,47140,47144],{"type":44,"tag":100,"props":47129,"children":47130},{"style":113},[47131],{"type":50,"value":5574},{"type":44,"tag":100,"props":47133,"children":47134},{"style":400},[47135],{"type":50,"value":5740},{"type":44,"tag":100,"props":47137,"children":47138},{"style":390},[47139],{"type":50,"value":408},{"type":44,"tag":100,"props":47141,"children":47142},{"style":390},[47143],{"type":50,"value":5749},{"type":44,"tag":100,"props":47145,"children":47146},{"style":400},[47147],{"type":50,"value":2431},{"type":44,"tag":100,"props":47149,"children":47150},{"class":102,"line":808},[47151,47155,47159,47163],{"type":44,"tag":100,"props":47152,"children":47153},{"style":113},[47154],{"type":50,"value":5574},{"type":44,"tag":100,"props":47156,"children":47157},{"style":400},[47158],{"type":50,"value":5765},{"type":44,"tag":100,"props":47160,"children":47161},{"style":390},[47162],{"type":50,"value":408},{"type":44,"tag":100,"props":47164,"children":47165},{"style":400},[47166],{"type":50,"value":5774},{"type":44,"tag":100,"props":47168,"children":47169},{"class":102,"line":1484},[47170,47174,47178,47182],{"type":44,"tag":100,"props":47171,"children":47172},{"style":113},[47173],{"type":50,"value":5574},{"type":44,"tag":100,"props":47175,"children":47176},{"style":400},[47177],{"type":50,"value":5786},{"type":44,"tag":100,"props":47179,"children":47180},{"style":390},[47181],{"type":50,"value":408},{"type":44,"tag":100,"props":47183,"children":47184},{"style":400},[47185],{"type":50,"value":5795},{"type":44,"tag":100,"props":47187,"children":47188},{"class":102,"line":2747},[47189,47193,47197,47201],{"type":44,"tag":100,"props":47190,"children":47191},{"style":390},[47192],{"type":50,"value":2524},{"type":44,"tag":100,"props":47194,"children":47195},{"style":113},[47196],{"type":50,"value":781},{"type":44,"tag":100,"props":47198,"children":47199},{"style":400},[47200],{"type":50,"value":786},{"type":44,"tag":100,"props":47202,"children":47203},{"style":113},[47204],{"type":50,"value":5815},{"type":44,"tag":100,"props":47206,"children":47207},{"class":102,"line":2769},[47208,47212],{"type":44,"tag":100,"props":47209,"children":47210},{"style":390},[47211],{"type":50,"value":2725},{"type":44,"tag":100,"props":47213,"children":47214},{"style":400},[47215],{"type":50,"value":5827},{"type":44,"tag":100,"props":47217,"children":47218},{"class":102,"line":2791},[47219],{"type":44,"tag":100,"props":47220,"children":47221},{"style":400},[47222],{"type":50,"value":2643},{"type":44,"tag":100,"props":47224,"children":47225},{"class":102,"line":2856},[47226,47230,47234],{"type":44,"tag":100,"props":47227,"children":47228},{"style":400},[47229],{"type":50,"value":5842},{"type":44,"tag":100,"props":47231,"children":47232},{"style":390},[47233],{"type":50,"value":408},{"type":44,"tag":100,"props":47235,"children":47236},{"style":400},[47237],{"type":50,"value":2401},{"type":44,"tag":100,"props":47239,"children":47240},{"class":102,"line":2898},[47241],{"type":44,"tag":100,"props":47242,"children":47243},{"style":390},[47244],{"type":50,"value":2409},{"type":44,"tag":100,"props":47246,"children":47247},{"class":102,"line":2977},[47248,47252,47256,47260],{"type":44,"tag":100,"props":47249,"children":47250},{"style":390},[47251],{"type":50,"value":7207},{"type":44,"tag":100,"props":47253,"children":47254},{"style":400},[47255],{"type":50,"value":982},{"type":44,"tag":100,"props":47257,"children":47258},{"style":390},[47259],{"type":50,"value":408},{"type":44,"tag":100,"props":47261,"children":47262},{"style":400},[47263],{"type":50,"value":413},{"type":44,"tag":100,"props":47265,"children":47266},{"class":102,"line":3015},[47267,47271,47275,47279],{"type":44,"tag":100,"props":47268,"children":47269},{"style":113},[47270],{"type":50,"value":5881},{"type":44,"tag":100,"props":47272,"children":47273},{"style":400},[47274],{"type":50,"value":786},{"type":44,"tag":100,"props":47276,"children":47277},{"style":113},[47278],{"type":50,"value":5890},{"type":44,"tag":100,"props":47280,"children":47281},{"style":400},[47282],{"type":50,"value":2431},{"type":44,"tag":100,"props":47284,"children":47285},{"class":102,"line":3081},[47286,47290,47294,47298,47302,47306,47310,47314],{"type":44,"tag":100,"props":47287,"children":47288},{"style":113},[47289],{"type":50,"value":5574},{"type":44,"tag":100,"props":47291,"children":47292},{"style":400},[47293],{"type":50,"value":427},{"type":44,"tag":100,"props":47295,"children":47296},{"style":113},[47297],{"type":50,"value":2478},{"type":44,"tag":100,"props":47299,"children":47300},{"style":400},[47301],{"type":50,"value":786},{"type":44,"tag":100,"props":47303,"children":47304},{"style":113},[47305],{"type":50,"value":2999},{"type":44,"tag":100,"props":47307,"children":47308},{"style":400},[47309],{"type":50,"value":437},{"type":44,"tag":100,"props":47311,"children":47312},{"style":390},[47313],{"type":50,"value":408},{"type":44,"tag":100,"props":47315,"children":47316},{"style":400},[47317],{"type":50,"value":5930},{"type":44,"tag":100,"props":47319,"children":47320},{"class":102,"line":3094},[47321,47325,47329,47333,47337],{"type":44,"tag":100,"props":47322,"children":47323},{"style":390},[47324],{"type":50,"value":2524},{"type":44,"tag":100,"props":47326,"children":47327},{"style":113},[47328],{"type":50,"value":781},{"type":44,"tag":100,"props":47330,"children":47331},{"style":400},[47332],{"type":50,"value":786},{"type":44,"tag":100,"props":47334,"children":47335},{"style":113},[47336],{"type":50,"value":1408},{"type":44,"tag":100,"props":47338,"children":47339},{"style":400},[47340],{"type":50,"value":1413},{"type":44,"tag":100,"props":47342,"children":47343},{"class":102,"line":3108},[47344,47348,47352,47356,47360],{"type":44,"tag":100,"props":47345,"children":47346},{"style":390},[47347],{"type":50,"value":2548},{"type":44,"tag":100,"props":47349,"children":47350},{"style":113},[47351],{"type":50,"value":781},{"type":44,"tag":100,"props":47353,"children":47354},{"style":400},[47355],{"type":50,"value":786},{"type":44,"tag":100,"props":47357,"children":47358},{"style":113},[47359],{"type":50,"value":5973},{"type":44,"tag":100,"props":47361,"children":47362},{"style":400},[47363],{"type":50,"value":5978},{"type":44,"tag":100,"props":47365,"children":47366},{"class":102,"line":3147},[47367,47371,47375,47379,47383,47387,47391,47395,47399,47403,47407],{"type":44,"tag":100,"props":47368,"children":47369},{"style":390},[47370],{"type":50,"value":2574},{"type":44,"tag":100,"props":47372,"children":47373},{"style":390},[47374],{"type":50,"value":1476},{"type":44,"tag":100,"props":47376,"children":47377},{"style":400},[47378],{"type":50,"value":427},{"type":44,"tag":100,"props":47380,"children":47381},{"style":113},[47382],{"type":50,"value":2478},{"type":44,"tag":100,"props":47384,"children":47385},{"style":400},[47386],{"type":50,"value":786},{"type":44,"tag":100,"props":47388,"children":47389},{"style":113},[47390],{"type":50,"value":2487},{"type":44,"tag":100,"props":47392,"children":47393},{"style":400},[47394],{"type":50,"value":437},{"type":44,"tag":100,"props":47396,"children":47397},{"style":390},[47398],{"type":50,"value":460},{"type":44,"tag":100,"props":47400,"children":47401},{"style":113},[47402],{"type":50,"value":6015},{"type":44,"tag":100,"props":47404,"children":47405},{"style":400},[47406],{"type":50,"value":786},{"type":44,"tag":100,"props":47408,"children":47409},{"style":113},[47410],{"type":50,"value":6024},{"type":44,"tag":100,"props":47412,"children":47413},{"class":102,"line":3188},[47414,47418,47422,47426,47430,47434],{"type":44,"tag":100,"props":47415,"children":47416},{"style":390},[47417],{"type":50,"value":2613},{"type":44,"tag":100,"props":47419,"children":47420},{"style":113},[47421],{"type":50,"value":1426},{"type":44,"tag":100,"props":47423,"children":47424},{"style":400},[47425],{"type":50,"value":786},{"type":44,"tag":100,"props":47427,"children":47428},{"style":113},[47429],{"type":50,"value":2626},{"type":44,"tag":100,"props":47431,"children":47432},{"style":390},[47433],{"type":50,"value":2591},{"type":44,"tag":100,"props":47435,"children":47436},{"style":119},[47437],{"type":50,"value":2635},{"type":44,"tag":100,"props":47439,"children":47440},{"class":102,"line":6054},[47441,47445,47449,47453,47457,47461],{"type":44,"tag":100,"props":47442,"children":47443},{"style":390},[47444],{"type":50,"value":2725},{"type":44,"tag":100,"props":47446,"children":47447},{"style":390},[47448],{"type":50,"value":1476},{"type":44,"tag":100,"props":47450,"children":47451},{"style":400},[47452],{"type":50,"value":7409},{"type":44,"tag":100,"props":47454,"children":47455},{"style":113},[47456],{"type":50,"value":6069},{"type":44,"tag":100,"props":47458,"children":47459},{"style":400},[47460],{"type":50,"value":786},{"type":44,"tag":100,"props":47462,"children":47463},{"style":113},[47464],{"type":50,"value":6078},{"type":44,"tag":100,"props":47466,"children":47467},{"class":102,"line":6081},[47468],{"type":44,"tag":100,"props":47469,"children":47470},{"style":400},[47471],{"type":50,"value":1464},{"type":44,"tag":100,"props":47473,"children":47474},{"class":102,"line":6089},[47475],{"type":44,"tag":100,"props":47476,"children":47477},{"style":390},[47478],{"type":50,"value":393},{"type":44,"tag":100,"props":47480,"children":47481},{"class":102,"line":6097},[47482,47486,47490,47494,47498],{"type":44,"tag":100,"props":47483,"children":47484},{"style":113},[47485],{"type":50,"value":2775},{"type":44,"tag":100,"props":47487,"children":47488},{"style":400},[47489],{"type":50,"value":786},{"type":44,"tag":100,"props":47491,"children":47492},{"style":113},[47493],{"type":50,"value":6111},{"type":44,"tag":100,"props":47495,"children":47496},{"style":390},[47497],{"type":50,"value":1661},{"type":44,"tag":100,"props":47499,"children":47500},{"style":400},[47501],{"type":50,"value":6120},{"type":44,"tag":100,"props":47503,"children":47504},{"class":102,"line":6123},[47505,47509,47513,47517],{"type":44,"tag":100,"props":47506,"children":47507},{"style":113},[47508],{"type":50,"value":2775},{"type":44,"tag":100,"props":47510,"children":47511},{"style":400},[47512],{"type":50,"value":786},{"type":44,"tag":100,"props":47514,"children":47515},{"style":113},[47516],{"type":50,"value":5890},{"type":44,"tag":100,"props":47518,"children":47519},{"style":400},[47520],{"type":50,"value":2431},{"type":44,"tag":100,"props":47522,"children":47523},{"class":102,"line":6143},[47524,47528,47532,47536],{"type":44,"tag":100,"props":47525,"children":47526},{"style":113},[47527],{"type":50,"value":2775},{"type":44,"tag":100,"props":47529,"children":47530},{"style":400},[47531],{"type":50,"value":786},{"type":44,"tag":100,"props":47533,"children":47534},{"style":113},[47535],{"type":50,"value":6157},{"type":44,"tag":100,"props":47537,"children":47538},{"style":400},[47539],{"type":50,"value":2431},{"type":44,"tag":100,"props":47541,"children":47542},{"class":102,"line":6164},[47543,47547,47551,47555],{"type":44,"tag":100,"props":47544,"children":47545},{"style":113},[47546],{"type":50,"value":2775},{"type":44,"tag":100,"props":47548,"children":47549},{"style":400},[47550],{"type":50,"value":786},{"type":44,"tag":100,"props":47552,"children":47553},{"style":113},[47554],{"type":50,"value":6178},{"type":44,"tag":100,"props":47556,"children":47557},{"style":400},[47558],{"type":50,"value":2431},{"type":44,"tag":100,"props":47560,"children":47561},{"class":102,"line":6185},[47562,47566,47570,47574],{"type":44,"tag":100,"props":47563,"children":47564},{"style":113},[47565],{"type":50,"value":2775},{"type":44,"tag":100,"props":47567,"children":47568},{"style":400},[47569],{"type":50,"value":786},{"type":44,"tag":100,"props":47571,"children":47572},{"style":113},[47573],{"type":50,"value":6199},{"type":44,"tag":100,"props":47575,"children":47576},{"style":400},[47577],{"type":50,"value":2431},{"type":44,"tag":100,"props":47579,"children":47580},{"class":102,"line":6206},[47581,47585,47589,47593],{"type":44,"tag":100,"props":47582,"children":47583},{"style":113},[47584],{"type":50,"value":2775},{"type":44,"tag":100,"props":47586,"children":47587},{"style":400},[47588],{"type":50,"value":786},{"type":44,"tag":100,"props":47590,"children":47591},{"style":113},[47592],{"type":50,"value":6220},{"type":44,"tag":100,"props":47594,"children":47595},{"style":400},[47596],{"type":50,"value":2431},{"type":44,"tag":100,"props":47598,"children":47599},{"class":102,"line":6227},[47600,47604,47608,47612],{"type":44,"tag":100,"props":47601,"children":47602},{"style":113},[47603],{"type":50,"value":6233},{"type":44,"tag":100,"props":47605,"children":47606},{"style":400},[47607],{"type":50,"value":786},{"type":44,"tag":100,"props":47609,"children":47610},{"style":113},[47611],{"type":50,"value":6242},{"type":44,"tag":100,"props":47613,"children":47614},{"style":400},[47615],{"type":50,"value":2431},{"type":44,"tag":100,"props":47617,"children":47618},{"class":102,"line":6249},[47619,47623,47627,47631],{"type":44,"tag":100,"props":47620,"children":47621},{"style":113},[47622],{"type":50,"value":6233},{"type":44,"tag":100,"props":47624,"children":47625},{"style":400},[47626],{"type":50,"value":786},{"type":44,"tag":100,"props":47628,"children":47629},{"style":113},[47630],{"type":50,"value":6263},{"type":44,"tag":100,"props":47632,"children":47633},{"style":400},[47634],{"type":50,"value":2431},{"type":44,"tag":100,"props":47636,"children":47637},{"class":102,"line":6270},[47638,47642,47646,47650],{"type":44,"tag":100,"props":47639,"children":47640},{"style":113},[47641],{"type":50,"value":6276},{"type":44,"tag":100,"props":47643,"children":47644},{"style":400},[47645],{"type":50,"value":786},{"type":44,"tag":100,"props":47647,"children":47648},{"style":113},[47649],{"type":50,"value":6285},{"type":44,"tag":100,"props":47651,"children":47652},{"style":400},[47653],{"type":50,"value":2431},{"type":44,"tag":100,"props":47655,"children":47656},{"class":102,"line":6292},[47657,47661,47665,47669,47673,47677,47681,47685,47689,47693,47697,47701,47705,47709,47713,47717,47721,47725],{"type":44,"tag":100,"props":47658,"children":47659},{"style":113},[47660],{"type":50,"value":654},{"type":44,"tag":100,"props":47662,"children":47663},{"style":400},[47664],{"type":50,"value":427},{"type":44,"tag":100,"props":47666,"children":47667},{"style":113},[47668],{"type":50,"value":6306},{"type":44,"tag":100,"props":47670,"children":47671},{"style":400},[47672],{"type":50,"value":786},{"type":44,"tag":100,"props":47674,"children":47675},{"style":113},[47676],{"type":50,"value":6285},{"type":44,"tag":100,"props":47678,"children":47679},{"style":390},[47680],{"type":50,"value":6319},{"type":44,"tag":100,"props":47682,"children":47683},{"style":113},[47684],{"type":50,"value":1262},{"type":44,"tag":100,"props":47686,"children":47687},{"style":400},[47688],{"type":50,"value":427},{"type":44,"tag":100,"props":47690,"children":47691},{"style":113},[47692],{"type":50,"value":2925},{"type":44,"tag":100,"props":47694,"children":47695},{"style":400},[47696],{"type":50,"value":786},{"type":44,"tag":100,"props":47698,"children":47699},{"style":113},[47700],{"type":50,"value":6157},{"type":44,"tag":100,"props":47702,"children":47703},{"style":400},[47704],{"type":50,"value":750},{"type":44,"tag":100,"props":47706,"children":47707},{"style":113},[47708],{"type":50,"value":679},{"type":44,"tag":100,"props":47710,"children":47711},{"style":400},[47712],{"type":50,"value":684},{"type":44,"tag":100,"props":47714,"children":47715},{"style":113},[47716],{"type":50,"value":689},{"type":44,"tag":100,"props":47718,"children":47719},{"style":400},[47720],{"type":50,"value":437},{"type":44,"tag":100,"props":47722,"children":47723},{"style":390},[47724],{"type":50,"value":408},{"type":44,"tag":100,"props":47726,"children":47727},{"style":400},[47728],{"type":50,"value":6368},{"type":44,"tag":100,"props":47730,"children":47731},{"class":102,"line":6371},[47732,47736,47740,47744,47748,47752,47756,47760,47764,47768,47772,47776,47780,47784,47788,47792,47796,47800],{"type":44,"tag":100,"props":47733,"children":47734},{"style":113},[47735],{"type":50,"value":654},{"type":44,"tag":100,"props":47737,"children":47738},{"style":400},[47739],{"type":50,"value":427},{"type":44,"tag":100,"props":47741,"children":47742},{"style":113},[47743],{"type":50,"value":2925},{"type":44,"tag":100,"props":47745,"children":47746},{"style":400},[47747],{"type":50,"value":786},{"type":44,"tag":100,"props":47749,"children":47750},{"style":113},[47751],{"type":50,"value":6157},{"type":44,"tag":100,"props":47753,"children":47754},{"style":390},[47755],{"type":50,"value":6319},{"type":44,"tag":100,"props":47757,"children":47758},{"style":113},[47759],{"type":50,"value":1262},{"type":44,"tag":100,"props":47761,"children":47762},{"style":400},[47763],{"type":50,"value":427},{"type":44,"tag":100,"props":47765,"children":47766},{"style":113},[47767],{"type":50,"value":2925},{"type":44,"tag":100,"props":47769,"children":47770},{"style":400},[47771],{"type":50,"value":786},{"type":44,"tag":100,"props":47773,"children":47774},{"style":113},[47775],{"type":50,"value":6220},{"type":44,"tag":100,"props":47777,"children":47778},{"style":400},[47779],{"type":50,"value":750},{"type":44,"tag":100,"props":47781,"children":47782},{"style":113},[47783],{"type":50,"value":679},{"type":44,"tag":100,"props":47785,"children":47786},{"style":400},[47787],{"type":50,"value":684},{"type":44,"tag":100,"props":47789,"children":47790},{"style":113},[47791],{"type":50,"value":689},{"type":44,"tag":100,"props":47793,"children":47794},{"style":400},[47795],{"type":50,"value":437},{"type":44,"tag":100,"props":47797,"children":47798},{"style":390},[47799],{"type":50,"value":408},{"type":44,"tag":100,"props":47801,"children":47802},{"style":400},[47803],{"type":50,"value":6445},{"type":44,"tag":100,"props":47805,"children":47806},{"class":102,"line":6448},[47807,47811,47815,47819,47823,47827,47831,47835,47839,47843,47847,47851,47855,47859,47863,47867,47871,47875,47879,47883,47887],{"type":44,"tag":100,"props":47808,"children":47809},{"style":113},[47810],{"type":50,"value":654},{"type":44,"tag":100,"props":47812,"children":47813},{"style":400},[47814],{"type":50,"value":427},{"type":44,"tag":100,"props":47816,"children":47817},{"style":113},[47818],{"type":50,"value":2925},{"type":44,"tag":100,"props":47820,"children":47821},{"style":400},[47822],{"type":50,"value":786},{"type":44,"tag":100,"props":47824,"children":47825},{"style":113},[47826],{"type":50,"value":6199},{"type":44,"tag":100,"props":47828,"children":47829},{"style":390},[47830],{"type":50,"value":6319},{"type":44,"tag":100,"props":47832,"children":47833},{"style":113},[47834],{"type":50,"value":1262},{"type":44,"tag":100,"props":47836,"children":47837},{"style":400},[47838],{"type":50,"value":427},{"type":44,"tag":100,"props":47840,"children":47841},{"style":113},[47842],{"type":50,"value":2925},{"type":44,"tag":100,"props":47844,"children":47845},{"style":400},[47846],{"type":50,"value":786},{"type":44,"tag":100,"props":47848,"children":47849},{"style":113},[47850],{"type":50,"value":6178},{"type":44,"tag":100,"props":47852,"children":47853},{"style":400},[47854],{"type":50,"value":750},{"type":44,"tag":100,"props":47856,"children":47857},{"style":113},[47858],{"type":50,"value":679},{"type":44,"tag":100,"props":47860,"children":47861},{"style":400},[47862],{"type":50,"value":437},{"type":44,"tag":100,"props":47864,"children":47865},{"style":390},[47866],{"type":50,"value":432},{"type":44,"tag":100,"props":47868,"children":47869},{"style":113},[47870],{"type":50,"value":745},{"type":44,"tag":100,"props":47872,"children":47873},{"style":400},[47874],{"type":50,"value":750},{"type":44,"tag":100,"props":47876,"children":47877},{"style":113},[47878],{"type":50,"value":689},{"type":44,"tag":100,"props":47880,"children":47881},{"style":400},[47882],{"type":50,"value":437},{"type":44,"tag":100,"props":47884,"children":47885},{"style":390},[47886],{"type":50,"value":408},{"type":44,"tag":100,"props":47888,"children":47889},{"style":400},[47890],{"type":50,"value":6534},{"type":44,"tag":100,"props":47892,"children":47893},{"class":102,"line":6537},[47894,47898],{"type":44,"tag":100,"props":47895,"children":47896},{"style":390},[47897],{"type":50,"value":776},{"type":44,"tag":100,"props":47899,"children":47900},{"style":400},[47901],{"type":50,"value":6547},{"type":44,"tag":100,"props":47903,"children":47904},{"class":102,"line":6550},[47905,47909],{"type":44,"tag":100,"props":47906,"children":47907},{"style":390},[47908],{"type":50,"value":6556},{"type":44,"tag":100,"props":47910,"children":47911},{"style":400},[47912],{"type":50,"value":6561},{"type":44,"tag":100,"props":47914,"children":47915},{"class":102,"line":6564},[47916,47920,47924,47928,47932,47936,47940,47944],{"type":44,"tag":100,"props":47917,"children":47918},{"style":390},[47919],{"type":50,"value":3114},{"type":44,"tag":100,"props":47921,"children":47922},{"style":113},[47923],{"type":50,"value":3135},{"type":44,"tag":100,"props":47925,"children":47926},{"style":400},[47927],{"type":50,"value":786},{"type":44,"tag":100,"props":47929,"children":47930},{"style":113},[47931],{"type":50,"value":6111},{"type":44,"tag":100,"props":47933,"children":47934},{"style":390},[47935],{"type":50,"value":2591},{"type":44,"tag":100,"props":47937,"children":47938},{"style":113},[47939],{"type":50,"value":6590},{"type":44,"tag":100,"props":47941,"children":47942},{"style":400},[47943],{"type":50,"value":786},{"type":44,"tag":100,"props":47945,"children":47946},{"style":113},[47947],{"type":50,"value":6024},{"type":44,"tag":100,"props":47949,"children":47950},{"class":102,"line":6601},[47951,47955,47959,47963,47967,47971,47975,47979],{"type":44,"tag":100,"props":47952,"children":47953},{"style":390},[47954],{"type":50,"value":6607},{"type":44,"tag":100,"props":47956,"children":47957},{"style":113},[47958],{"type":50,"value":3135},{"type":44,"tag":100,"props":47960,"children":47961},{"style":400},[47962],{"type":50,"value":786},{"type":44,"tag":100,"props":47964,"children":47965},{"style":113},[47966],{"type":50,"value":5890},{"type":44,"tag":100,"props":47968,"children":47969},{"style":390},[47970],{"type":50,"value":2591},{"type":44,"tag":100,"props":47972,"children":47973},{"style":113},[47974],{"type":50,"value":6590},{"type":44,"tag":100,"props":47976,"children":47977},{"style":400},[47978],{"type":50,"value":786},{"type":44,"tag":100,"props":47980,"children":47981},{"style":113},[47982],{"type":50,"value":6078},{"type":44,"tag":100,"props":47984,"children":47985},{"class":102,"line":6638},[47986,47990],{"type":44,"tag":100,"props":47987,"children":47988},{"style":390},[47989],{"type":50,"value":6556},{"type":44,"tag":100,"props":47991,"children":47992},{"style":400},[47993],{"type":50,"value":6648},{"type":44,"tag":100,"props":47995,"children":47996},{"class":102,"line":6651},[47997,48001,48005,48009,48013,48017,48021,48025],{"type":44,"tag":100,"props":47998,"children":47999},{"style":390},[48000],{"type":50,"value":3114},{"type":44,"tag":100,"props":48002,"children":48003},{"style":113},[48004],{"type":50,"value":3135},{"type":44,"tag":100,"props":48006,"children":48007},{"style":400},[48008],{"type":50,"value":786},{"type":44,"tag":100,"props":48010,"children":48011},{"style":113},[48012],{"type":50,"value":6111},{"type":44,"tag":100,"props":48014,"children":48015},{"style":390},[48016],{"type":50,"value":2591},{"type":44,"tag":100,"props":48018,"children":48019},{"style":113},[48020],{"type":50,"value":6677},{"type":44,"tag":100,"props":48022,"children":48023},{"style":400},[48024],{"type":50,"value":786},{"type":44,"tag":100,"props":48026,"children":48027},{"style":113},[48028],{"type":50,"value":6686},{"type":44,"tag":100,"props":48030,"children":48031},{"class":102,"line":6689},[48032,48036,48040,48044,48048,48052,48056,48060],{"type":44,"tag":100,"props":48033,"children":48034},{"style":390},[48035],{"type":50,"value":6607},{"type":44,"tag":100,"props":48037,"children":48038},{"style":113},[48039],{"type":50,"value":3135},{"type":44,"tag":100,"props":48041,"children":48042},{"style":400},[48043],{"type":50,"value":786},{"type":44,"tag":100,"props":48045,"children":48046},{"style":113},[48047],{"type":50,"value":5890},{"type":44,"tag":100,"props":48049,"children":48050},{"style":390},[48051],{"type":50,"value":2591},{"type":44,"tag":100,"props":48053,"children":48054},{"style":113},[48055],{"type":50,"value":6677},{"type":44,"tag":100,"props":48057,"children":48058},{"style":400},[48059],{"type":50,"value":786},{"type":44,"tag":100,"props":48061,"children":48062},{"style":113},[48063],{"type":50,"value":6078},{"type":44,"tag":100,"props":48065,"children":48066},{"class":102,"line":6725},[48067,48071,48075,48079,48083,48087,48091,48095,48099,48103],{"type":44,"tag":100,"props":48068,"children":48069},{"style":390},[48070],{"type":50,"value":814},{"type":44,"tag":100,"props":48072,"children":48073},{"style":113},[48074],{"type":50,"value":3135},{"type":44,"tag":100,"props":48076,"children":48077},{"style":400},[48078],{"type":50,"value":786},{"type":44,"tag":100,"props":48080,"children":48081},{"style":113},[48082],{"type":50,"value":6111},{"type":44,"tag":100,"props":48084,"children":48085},{"style":390},[48086],{"type":50,"value":6747},{"type":44,"tag":100,"props":48088,"children":48089},{"style":400},[48090],{"type":50,"value":750},{"type":44,"tag":100,"props":48092,"children":48093},{"style":113},[48094],{"type":50,"value":2925},{"type":44,"tag":100,"props":48096,"children":48097},{"style":400},[48098],{"type":50,"value":786},{"type":44,"tag":100,"props":48100,"children":48101},{"style":113},[48102],{"type":50,"value":6157},{"type":44,"tag":100,"props":48104,"children":48105},{"style":390},[48106],{"type":50,"value":6768},{"type":44,"tag":203,"props":48108,"children":48109},{"v-slot:snowflake":7},[48110],{"type":44,"tag":90,"props":48111,"children":48112},{"className":208,"code":8069,"language":210,"meta":7,"style":7},[48113],{"type":44,"tag":81,"props":48114,"children":48115},{"__ignoreMap":7},[48116,48123,48130,48137,48144,48151,48158,48165,48172,48179,48186,48193,48200,48207,48214,48221,48228,48247,48254,48261,48268,48287,48306,48325,48344,48363,48374,48381,48396,48403,48410,48417,48440,48459,48478,48497,48508,48515,48530,48537,48556,48575,48610,48633,48656,48687,48714,48745,48752,48759,48782,48801,48820,48839,48858,48877,48896,48915,48934,49009,49084,49171,49182,49193,49228,49263,49274,49309,49344],{"type":44,"tag":100,"props":48117,"children":48118},{"class":102,"line":103},[48119],{"type":44,"tag":100,"props":48120,"children":48121},{"style":220},[48122],{"type":50,"value":223},{"type":44,"tag":100,"props":48124,"children":48125},{"class":102,"line":226},[48126],{"type":44,"tag":100,"props":48127,"children":48128},{"style":220},[48129],{"type":50,"value":5422},{"type":44,"tag":100,"props":48131,"children":48132},{"class":102,"line":235},[48133],{"type":44,"tag":100,"props":48134,"children":48135},{"style":220},[48136],{"type":50,"value":241},{"type":44,"tag":100,"props":48138,"children":48139},{"class":102,"line":24},[48140],{"type":44,"tag":100,"props":48141,"children":48142},{"style":220},[48143],{"type":50,"value":249},{"type":44,"tag":100,"props":48145,"children":48146},{"class":102,"line":252},[48147],{"type":44,"tag":100,"props":48148,"children":48149},{"style":220},[48150],{"type":50,"value":258},{"type":44,"tag":100,"props":48152,"children":48153},{"class":102,"line":261},[48154],{"type":44,"tag":100,"props":48155,"children":48156},{"style":220},[48157],{"type":50,"value":267},{"type":44,"tag":100,"props":48159,"children":48160},{"class":102,"line":270},[48161],{"type":44,"tag":100,"props":48162,"children":48163},{"style":220},[48164],{"type":50,"value":5458},{"type":44,"tag":100,"props":48166,"children":48167},{"class":102,"line":279},[48168],{"type":44,"tag":100,"props":48169,"children":48170},{"style":220},[48171],{"type":50,"value":5466},{"type":44,"tag":100,"props":48173,"children":48174},{"class":102,"line":288},[48175],{"type":44,"tag":100,"props":48176,"children":48177},{"style":220},[48178],{"type":50,"value":276},{"type":44,"tag":100,"props":48180,"children":48181},{"class":102,"line":297},[48182],{"type":44,"tag":100,"props":48183,"children":48184},{"style":220},[48185],{"type":50,"value":285},{"type":44,"tag":100,"props":48187,"children":48188},{"class":102,"line":306},[48189],{"type":44,"tag":100,"props":48190,"children":48191},{"style":220},[48192],{"type":50,"value":5488},{"type":44,"tag":100,"props":48194,"children":48195},{"class":102,"line":315},[48196],{"type":44,"tag":100,"props":48197,"children":48198},{"style":220},[48199],{"type":50,"value":5225},{"type":44,"tag":100,"props":48201,"children":48202},{"class":102,"line":324},[48203],{"type":44,"tag":100,"props":48204,"children":48205},{"style":220},[48206],{"type":50,"value":312},{"type":44,"tag":100,"props":48208,"children":48209},{"class":102,"line":333},[48210],{"type":44,"tag":100,"props":48211,"children":48212},{"style":220},[48213],{"type":50,"value":321},{"type":44,"tag":100,"props":48215,"children":48216},{"class":102,"line":11},[48217],{"type":44,"tag":100,"props":48218,"children":48219},{"style":220},[48220],{"type":50,"value":374},{"type":44,"tag":100,"props":48222,"children":48223},{"class":102,"line":350},[48224],{"type":44,"tag":100,"props":48225,"children":48226},{"emptyLinePlaceholder":23},[48227],{"type":50,"value":383},{"type":44,"tag":100,"props":48229,"children":48230},{"class":102,"line":359},[48231,48235,48239,48243],{"type":44,"tag":100,"props":48232,"children":48233},{"style":390},[48234],{"type":50,"value":2387},{"type":44,"tag":100,"props":48236,"children":48237},{"style":400},[48238],{"type":50,"value":5535},{"type":44,"tag":100,"props":48240,"children":48241},{"style":390},[48242],{"type":50,"value":408},{"type":44,"tag":100,"props":48244,"children":48245},{"style":400},[48246],{"type":50,"value":2401},{"type":44,"tag":100,"props":48248,"children":48249},{"class":102,"line":368},[48250],{"type":44,"tag":100,"props":48251,"children":48252},{"style":390},[48253],{"type":50,"value":2409},{"type":44,"tag":100,"props":48255,"children":48256},{"class":102,"line":377},[48257],{"type":44,"tag":100,"props":48258,"children":48259},{"style":400},[48260],{"type":50,"value":5558},{"type":44,"tag":100,"props":48262,"children":48263},{"class":102,"line":386},[48264],{"type":44,"tag":100,"props":48265,"children":48266},{"style":400},[48267],{"type":50,"value":5566},{"type":44,"tag":100,"props":48269,"children":48270},{"class":102,"line":396},[48271,48275,48279,48283],{"type":44,"tag":100,"props":48272,"children":48273},{"style":113},[48274],{"type":50,"value":5574},{"type":44,"tag":100,"props":48276,"children":48277},{"style":400},[48278],{"type":50,"value":5579},{"type":44,"tag":100,"props":48280,"children":48281},{"style":390},[48282],{"type":50,"value":408},{"type":44,"tag":100,"props":48284,"children":48285},{"style":400},[48286],{"type":50,"value":5588},{"type":44,"tag":100,"props":48288,"children":48289},{"class":102,"line":416},[48290,48294,48298,48302],{"type":44,"tag":100,"props":48291,"children":48292},{"style":113},[48293],{"type":50,"value":5574},{"type":44,"tag":100,"props":48295,"children":48296},{"style":400},[48297],{"type":50,"value":5600},{"type":44,"tag":100,"props":48299,"children":48300},{"style":390},[48301],{"type":50,"value":408},{"type":44,"tag":100,"props":48303,"children":48304},{"style":400},[48305],{"type":50,"value":5609},{"type":44,"tag":100,"props":48307,"children":48308},{"class":102,"line":449},[48309,48313,48317,48321],{"type":44,"tag":100,"props":48310,"children":48311},{"style":113},[48312],{"type":50,"value":5574},{"type":44,"tag":100,"props":48314,"children":48315},{"style":400},[48316],{"type":50,"value":5621},{"type":44,"tag":100,"props":48318,"children":48319},{"style":390},[48320],{"type":50,"value":408},{"type":44,"tag":100,"props":48322,"children":48323},{"style":400},[48324],{"type":50,"value":5630},{"type":44,"tag":100,"props":48326,"children":48327},{"class":102,"line":481},[48328,48332,48336,48340],{"type":44,"tag":100,"props":48329,"children":48330},{"style":113},[48331],{"type":50,"value":5574},{"type":44,"tag":100,"props":48333,"children":48334},{"style":400},[48335],{"type":50,"value":5642},{"type":44,"tag":100,"props":48337,"children":48338},{"style":390},[48339],{"type":50,"value":408},{"type":44,"tag":100,"props":48341,"children":48342},{"style":400},[48343],{"type":50,"value":5651},{"type":44,"tag":100,"props":48345,"children":48346},{"class":102,"line":508},[48347,48351,48355,48359],{"type":44,"tag":100,"props":48348,"children":48349},{"style":390},[48350],{"type":50,"value":2524},{"type":44,"tag":100,"props":48352,"children":48353},{"style":113},[48354],{"type":50,"value":781},{"type":44,"tag":100,"props":48356,"children":48357},{"style":400},[48358],{"type":50,"value":786},{"type":44,"tag":100,"props":48360,"children":48361},{"style":113},[48362],{"type":50,"value":5671},{"type":44,"tag":100,"props":48364,"children":48365},{"class":102,"line":531},[48366,48370],{"type":44,"tag":100,"props":48367,"children":48368},{"style":390},[48369],{"type":50,"value":2725},{"type":44,"tag":100,"props":48371,"children":48372},{"style":400},[48373],{"type":50,"value":5683},{"type":44,"tag":100,"props":48375,"children":48376},{"class":102,"line":604},[48377],{"type":44,"tag":100,"props":48378,"children":48379},{"style":400},[48380],{"type":50,"value":2643},{"type":44,"tag":100,"props":48382,"children":48383},{"class":102,"line":626},[48384,48388,48392],{"type":44,"tag":100,"props":48385,"children":48386},{"style":400},[48387],{"type":50,"value":5698},{"type":44,"tag":100,"props":48389,"children":48390},{"style":390},[48391],{"type":50,"value":408},{"type":44,"tag":100,"props":48393,"children":48394},{"style":400},[48395],{"type":50,"value":2401},{"type":44,"tag":100,"props":48397,"children":48398},{"class":102,"line":648},[48399],{"type":44,"tag":100,"props":48400,"children":48401},{"style":390},[48402],{"type":50,"value":2409},{"type":44,"tag":100,"props":48404,"children":48405},{"class":102,"line":705},[48406],{"type":44,"tag":100,"props":48407,"children":48408},{"style":400},[48409],{"type":50,"value":5721},{"type":44,"tag":100,"props":48411,"children":48412},{"class":102,"line":770},[48413],{"type":44,"tag":100,"props":48414,"children":48415},{"style":400},[48416],{"type":50,"value":5566},{"type":44,"tag":100,"props":48418,"children":48419},{"class":102,"line":794},[48420,48424,48428,48432,48436],{"type":44,"tag":100,"props":48421,"children":48422},{"style":113},[48423],{"type":50,"value":5574},{"type":44,"tag":100,"props":48425,"children":48426},{"style":400},[48427],{"type":50,"value":5740},{"type":44,"tag":100,"props":48429,"children":48430},{"style":390},[48431],{"type":50,"value":408},{"type":44,"tag":100,"props":48433,"children":48434},{"style":390},[48435],{"type":50,"value":5749},{"type":44,"tag":100,"props":48437,"children":48438},{"style":400},[48439],{"type":50,"value":2431},{"type":44,"tag":100,"props":48441,"children":48442},{"class":102,"line":808},[48443,48447,48451,48455],{"type":44,"tag":100,"props":48444,"children":48445},{"style":113},[48446],{"type":50,"value":5574},{"type":44,"tag":100,"props":48448,"children":48449},{"style":400},[48450],{"type":50,"value":5765},{"type":44,"tag":100,"props":48452,"children":48453},{"style":390},[48454],{"type":50,"value":408},{"type":44,"tag":100,"props":48456,"children":48457},{"style":400},[48458],{"type":50,"value":5774},{"type":44,"tag":100,"props":48460,"children":48461},{"class":102,"line":1484},[48462,48466,48470,48474],{"type":44,"tag":100,"props":48463,"children":48464},{"style":113},[48465],{"type":50,"value":5574},{"type":44,"tag":100,"props":48467,"children":48468},{"style":400},[48469],{"type":50,"value":5786},{"type":44,"tag":100,"props":48471,"children":48472},{"style":390},[48473],{"type":50,"value":408},{"type":44,"tag":100,"props":48475,"children":48476},{"style":400},[48477],{"type":50,"value":5795},{"type":44,"tag":100,"props":48479,"children":48480},{"class":102,"line":2747},[48481,48485,48489,48493],{"type":44,"tag":100,"props":48482,"children":48483},{"style":390},[48484],{"type":50,"value":2524},{"type":44,"tag":100,"props":48486,"children":48487},{"style":113},[48488],{"type":50,"value":781},{"type":44,"tag":100,"props":48490,"children":48491},{"style":400},[48492],{"type":50,"value":786},{"type":44,"tag":100,"props":48494,"children":48495},{"style":113},[48496],{"type":50,"value":5815},{"type":44,"tag":100,"props":48498,"children":48499},{"class":102,"line":2769},[48500,48504],{"type":44,"tag":100,"props":48501,"children":48502},{"style":390},[48503],{"type":50,"value":2725},{"type":44,"tag":100,"props":48505,"children":48506},{"style":400},[48507],{"type":50,"value":5827},{"type":44,"tag":100,"props":48509,"children":48510},{"class":102,"line":2791},[48511],{"type":44,"tag":100,"props":48512,"children":48513},{"style":400},[48514],{"type":50,"value":2643},{"type":44,"tag":100,"props":48516,"children":48517},{"class":102,"line":2856},[48518,48522,48526],{"type":44,"tag":100,"props":48519,"children":48520},{"style":400},[48521],{"type":50,"value":5842},{"type":44,"tag":100,"props":48523,"children":48524},{"style":390},[48525],{"type":50,"value":408},{"type":44,"tag":100,"props":48527,"children":48528},{"style":400},[48529],{"type":50,"value":2401},{"type":44,"tag":100,"props":48531,"children":48532},{"class":102,"line":2898},[48533],{"type":44,"tag":100,"props":48534,"children":48535},{"style":390},[48536],{"type":50,"value":2409},{"type":44,"tag":100,"props":48538,"children":48539},{"class":102,"line":2977},[48540,48544,48548,48552],{"type":44,"tag":100,"props":48541,"children":48542},{"style":400},[48543],{"type":50,"value":8502},{"type":44,"tag":100,"props":48545,"children":48546},{"style":390},[48547],{"type":50,"value":1656},{"type":44,"tag":100,"props":48549,"children":48550},{"style":390},[48551],{"type":50,"value":1661},{"type":44,"tag":100,"props":48553,"children":48554},{"style":400},[48555],{"type":50,"value":413},{"type":44,"tag":100,"props":48557,"children":48558},{"class":102,"line":3015},[48559,48563,48567,48571],{"type":44,"tag":100,"props":48560,"children":48561},{"style":113},[48562],{"type":50,"value":5881},{"type":44,"tag":100,"props":48564,"children":48565},{"style":400},[48566],{"type":50,"value":786},{"type":44,"tag":100,"props":48568,"children":48569},{"style":113},[48570],{"type":50,"value":5890},{"type":44,"tag":100,"props":48572,"children":48573},{"style":400},[48574],{"type":50,"value":2431},{"type":44,"tag":100,"props":48576,"children":48577},{"class":102,"line":3081},[48578,48582,48586,48590,48594,48598,48602,48606],{"type":44,"tag":100,"props":48579,"children":48580},{"style":113},[48581],{"type":50,"value":5574},{"type":44,"tag":100,"props":48583,"children":48584},{"style":400},[48585],{"type":50,"value":427},{"type":44,"tag":100,"props":48587,"children":48588},{"style":113},[48589],{"type":50,"value":2478},{"type":44,"tag":100,"props":48591,"children":48592},{"style":400},[48593],{"type":50,"value":786},{"type":44,"tag":100,"props":48595,"children":48596},{"style":113},[48597],{"type":50,"value":2999},{"type":44,"tag":100,"props":48599,"children":48600},{"style":400},[48601],{"type":50,"value":437},{"type":44,"tag":100,"props":48603,"children":48604},{"style":390},[48605],{"type":50,"value":408},{"type":44,"tag":100,"props":48607,"children":48608},{"style":400},[48609],{"type":50,"value":5930},{"type":44,"tag":100,"props":48611,"children":48612},{"class":102,"line":3094},[48613,48617,48621,48625,48629],{"type":44,"tag":100,"props":48614,"children":48615},{"style":390},[48616],{"type":50,"value":2524},{"type":44,"tag":100,"props":48618,"children":48619},{"style":113},[48620],{"type":50,"value":781},{"type":44,"tag":100,"props":48622,"children":48623},{"style":400},[48624],{"type":50,"value":786},{"type":44,"tag":100,"props":48626,"children":48627},{"style":113},[48628],{"type":50,"value":1408},{"type":44,"tag":100,"props":48630,"children":48631},{"style":400},[48632],{"type":50,"value":1413},{"type":44,"tag":100,"props":48634,"children":48635},{"class":102,"line":3108},[48636,48640,48644,48648,48652],{"type":44,"tag":100,"props":48637,"children":48638},{"style":390},[48639],{"type":50,"value":2548},{"type":44,"tag":100,"props":48641,"children":48642},{"style":113},[48643],{"type":50,"value":781},{"type":44,"tag":100,"props":48645,"children":48646},{"style":400},[48647],{"type":50,"value":786},{"type":44,"tag":100,"props":48649,"children":48650},{"style":113},[48651],{"type":50,"value":5973},{"type":44,"tag":100,"props":48653,"children":48654},{"style":400},[48655],{"type":50,"value":5978},{"type":44,"tag":100,"props":48657,"children":48658},{"class":102,"line":3147},[48659,48663,48667,48671,48675,48679,48683],{"type":44,"tag":100,"props":48660,"children":48661},{"style":390},[48662],{"type":50,"value":2574},{"type":44,"tag":100,"props":48664,"children":48665},{"style":400},[48666],{"type":50,"value":2211},{"type":44,"tag":100,"props":48668,"children":48669},{"style":390},[48670],{"type":50,"value":1656},{"type":44,"tag":100,"props":48672,"children":48673},{"style":390},[48674],{"type":50,"value":2591},{"type":44,"tag":100,"props":48676,"children":48677},{"style":113},[48678],{"type":50,"value":6015},{"type":44,"tag":100,"props":48680,"children":48681},{"style":400},[48682],{"type":50,"value":786},{"type":44,"tag":100,"props":48684,"children":48685},{"style":113},[48686],{"type":50,"value":6024},{"type":44,"tag":100,"props":48688,"children":48689},{"class":102,"line":3188},[48690,48694,48698,48702,48706,48710],{"type":44,"tag":100,"props":48691,"children":48692},{"style":390},[48693],{"type":50,"value":2613},{"type":44,"tag":100,"props":48695,"children":48696},{"style":113},[48697],{"type":50,"value":1426},{"type":44,"tag":100,"props":48699,"children":48700},{"style":400},[48701],{"type":50,"value":786},{"type":44,"tag":100,"props":48703,"children":48704},{"style":113},[48705],{"type":50,"value":2626},{"type":44,"tag":100,"props":48707,"children":48708},{"style":390},[48709],{"type":50,"value":2591},{"type":44,"tag":100,"props":48711,"children":48712},{"style":119},[48713],{"type":50,"value":2635},{"type":44,"tag":100,"props":48715,"children":48716},{"class":102,"line":6054},[48717,48721,48725,48729,48733,48737,48741],{"type":44,"tag":100,"props":48718,"children":48719},{"style":390},[48720],{"type":50,"value":2725},{"type":44,"tag":100,"props":48722,"children":48723},{"style":400},[48724],{"type":50,"value":2211},{"type":44,"tag":100,"props":48726,"children":48727},{"style":390},[48728],{"type":50,"value":1656},{"type":44,"tag":100,"props":48730,"children":48731},{"style":400},[48732],{"type":50,"value":750},{"type":44,"tag":100,"props":48734,"children":48735},{"style":113},[48736],{"type":50,"value":6069},{"type":44,"tag":100,"props":48738,"children":48739},{"style":400},[48740],{"type":50,"value":786},{"type":44,"tag":100,"props":48742,"children":48743},{"style":113},[48744],{"type":50,"value":6078},{"type":44,"tag":100,"props":48746,"children":48747},{"class":102,"line":6081},[48748],{"type":44,"tag":100,"props":48749,"children":48750},{"style":400},[48751],{"type":50,"value":1464},{"type":44,"tag":100,"props":48753,"children":48754},{"class":102,"line":6089},[48755],{"type":44,"tag":100,"props":48756,"children":48757},{"style":390},[48758],{"type":50,"value":393},{"type":44,"tag":100,"props":48760,"children":48761},{"class":102,"line":6097},[48762,48766,48770,48774,48778],{"type":44,"tag":100,"props":48763,"children":48764},{"style":113},[48765],{"type":50,"value":2775},{"type":44,"tag":100,"props":48767,"children":48768},{"style":400},[48769],{"type":50,"value":786},{"type":44,"tag":100,"props":48771,"children":48772},{"style":113},[48773],{"type":50,"value":6111},{"type":44,"tag":100,"props":48775,"children":48776},{"style":390},[48777],{"type":50,"value":1661},{"type":44,"tag":100,"props":48779,"children":48780},{"style":400},[48781],{"type":50,"value":6120},{"type":44,"tag":100,"props":48783,"children":48784},{"class":102,"line":6123},[48785,48789,48793,48797],{"type":44,"tag":100,"props":48786,"children":48787},{"style":113},[48788],{"type":50,"value":2775},{"type":44,"tag":100,"props":48790,"children":48791},{"style":400},[48792],{"type":50,"value":786},{"type":44,"tag":100,"props":48794,"children":48795},{"style":113},[48796],{"type":50,"value":5890},{"type":44,"tag":100,"props":48798,"children":48799},{"style":400},[48800],{"type":50,"value":2431},{"type":44,"tag":100,"props":48802,"children":48803},{"class":102,"line":6143},[48804,48808,48812,48816],{"type":44,"tag":100,"props":48805,"children":48806},{"style":113},[48807],{"type":50,"value":2775},{"type":44,"tag":100,"props":48809,"children":48810},{"style":400},[48811],{"type":50,"value":786},{"type":44,"tag":100,"props":48813,"children":48814},{"style":113},[48815],{"type":50,"value":6157},{"type":44,"tag":100,"props":48817,"children":48818},{"style":400},[48819],{"type":50,"value":2431},{"type":44,"tag":100,"props":48821,"children":48822},{"class":102,"line":6164},[48823,48827,48831,48835],{"type":44,"tag":100,"props":48824,"children":48825},{"style":113},[48826],{"type":50,"value":2775},{"type":44,"tag":100,"props":48828,"children":48829},{"style":400},[48830],{"type":50,"value":786},{"type":44,"tag":100,"props":48832,"children":48833},{"style":113},[48834],{"type":50,"value":6178},{"type":44,"tag":100,"props":48836,"children":48837},{"style":400},[48838],{"type":50,"value":2431},{"type":44,"tag":100,"props":48840,"children":48841},{"class":102,"line":6185},[48842,48846,48850,48854],{"type":44,"tag":100,"props":48843,"children":48844},{"style":113},[48845],{"type":50,"value":2775},{"type":44,"tag":100,"props":48847,"children":48848},{"style":400},[48849],{"type":50,"value":786},{"type":44,"tag":100,"props":48851,"children":48852},{"style":113},[48853],{"type":50,"value":6199},{"type":44,"tag":100,"props":48855,"children":48856},{"style":400},[48857],{"type":50,"value":2431},{"type":44,"tag":100,"props":48859,"children":48860},{"class":102,"line":6206},[48861,48865,48869,48873],{"type":44,"tag":100,"props":48862,"children":48863},{"style":113},[48864],{"type":50,"value":2775},{"type":44,"tag":100,"props":48866,"children":48867},{"style":400},[48868],{"type":50,"value":786},{"type":44,"tag":100,"props":48870,"children":48871},{"style":113},[48872],{"type":50,"value":6220},{"type":44,"tag":100,"props":48874,"children":48875},{"style":400},[48876],{"type":50,"value":2431},{"type":44,"tag":100,"props":48878,"children":48879},{"class":102,"line":6227},[48880,48884,48888,48892],{"type":44,"tag":100,"props":48881,"children":48882},{"style":113},[48883],{"type":50,"value":6233},{"type":44,"tag":100,"props":48885,"children":48886},{"style":400},[48887],{"type":50,"value":786},{"type":44,"tag":100,"props":48889,"children":48890},{"style":113},[48891],{"type":50,"value":6242},{"type":44,"tag":100,"props":48893,"children":48894},{"style":400},[48895],{"type":50,"value":2431},{"type":44,"tag":100,"props":48897,"children":48898},{"class":102,"line":6249},[48899,48903,48907,48911],{"type":44,"tag":100,"props":48900,"children":48901},{"style":113},[48902],{"type":50,"value":6233},{"type":44,"tag":100,"props":48904,"children":48905},{"style":400},[48906],{"type":50,"value":786},{"type":44,"tag":100,"props":48908,"children":48909},{"style":113},[48910],{"type":50,"value":6263},{"type":44,"tag":100,"props":48912,"children":48913},{"style":400},[48914],{"type":50,"value":2431},{"type":44,"tag":100,"props":48916,"children":48917},{"class":102,"line":6270},[48918,48922,48926,48930],{"type":44,"tag":100,"props":48919,"children":48920},{"style":113},[48921],{"type":50,"value":6276},{"type":44,"tag":100,"props":48923,"children":48924},{"style":400},[48925],{"type":50,"value":786},{"type":44,"tag":100,"props":48927,"children":48928},{"style":113},[48929],{"type":50,"value":6285},{"type":44,"tag":100,"props":48931,"children":48932},{"style":400},[48933],{"type":50,"value":2431},{"type":44,"tag":100,"props":48935,"children":48936},{"class":102,"line":6292},[48937,48941,48945,48949,48953,48957,48961,48965,48969,48973,48977,48981,48985,48989,48993,48997,49001,49005],{"type":44,"tag":100,"props":48938,"children":48939},{"style":113},[48940],{"type":50,"value":654},{"type":44,"tag":100,"props":48942,"children":48943},{"style":400},[48944],{"type":50,"value":427},{"type":44,"tag":100,"props":48946,"children":48947},{"style":113},[48948],{"type":50,"value":6306},{"type":44,"tag":100,"props":48950,"children":48951},{"style":400},[48952],{"type":50,"value":786},{"type":44,"tag":100,"props":48954,"children":48955},{"style":113},[48956],{"type":50,"value":6285},{"type":44,"tag":100,"props":48958,"children":48959},{"style":390},[48960],{"type":50,"value":6319},{"type":44,"tag":100,"props":48962,"children":48963},{"style":113},[48964],{"type":50,"value":1262},{"type":44,"tag":100,"props":48966,"children":48967},{"style":400},[48968],{"type":50,"value":427},{"type":44,"tag":100,"props":48970,"children":48971},{"style":113},[48972],{"type":50,"value":2925},{"type":44,"tag":100,"props":48974,"children":48975},{"style":400},[48976],{"type":50,"value":786},{"type":44,"tag":100,"props":48978,"children":48979},{"style":113},[48980],{"type":50,"value":6157},{"type":44,"tag":100,"props":48982,"children":48983},{"style":400},[48984],{"type":50,"value":750},{"type":44,"tag":100,"props":48986,"children":48987},{"style":113},[48988],{"type":50,"value":679},{"type":44,"tag":100,"props":48990,"children":48991},{"style":400},[48992],{"type":50,"value":684},{"type":44,"tag":100,"props":48994,"children":48995},{"style":113},[48996],{"type":50,"value":689},{"type":44,"tag":100,"props":48998,"children":48999},{"style":400},[49000],{"type":50,"value":437},{"type":44,"tag":100,"props":49002,"children":49003},{"style":390},[49004],{"type":50,"value":408},{"type":44,"tag":100,"props":49006,"children":49007},{"style":400},[49008],{"type":50,"value":6368},{"type":44,"tag":100,"props":49010,"children":49011},{"class":102,"line":6371},[49012,49016,49020,49024,49028,49032,49036,49040,49044,49048,49052,49056,49060,49064,49068,49072,49076,49080],{"type":44,"tag":100,"props":49013,"children":49014},{"style":113},[49015],{"type":50,"value":654},{"type":44,"tag":100,"props":49017,"children":49018},{"style":400},[49019],{"type":50,"value":427},{"type":44,"tag":100,"props":49021,"children":49022},{"style":113},[49023],{"type":50,"value":2925},{"type":44,"tag":100,"props":49025,"children":49026},{"style":400},[49027],{"type":50,"value":786},{"type":44,"tag":100,"props":49029,"children":49030},{"style":113},[49031],{"type":50,"value":6157},{"type":44,"tag":100,"props":49033,"children":49034},{"style":390},[49035],{"type":50,"value":6319},{"type":44,"tag":100,"props":49037,"children":49038},{"style":113},[49039],{"type":50,"value":1262},{"type":44,"tag":100,"props":49041,"children":49042},{"style":400},[49043],{"type":50,"value":427},{"type":44,"tag":100,"props":49045,"children":49046},{"style":113},[49047],{"type":50,"value":2925},{"type":44,"tag":100,"props":49049,"children":49050},{"style":400},[49051],{"type":50,"value":786},{"type":44,"tag":100,"props":49053,"children":49054},{"style":113},[49055],{"type":50,"value":6220},{"type":44,"tag":100,"props":49057,"children":49058},{"style":400},[49059],{"type":50,"value":750},{"type":44,"tag":100,"props":49061,"children":49062},{"style":113},[49063],{"type":50,"value":679},{"type":44,"tag":100,"props":49065,"children":49066},{"style":400},[49067],{"type":50,"value":684},{"type":44,"tag":100,"props":49069,"children":49070},{"style":113},[49071],{"type":50,"value":689},{"type":44,"tag":100,"props":49073,"children":49074},{"style":400},[49075],{"type":50,"value":437},{"type":44,"tag":100,"props":49077,"children":49078},{"style":390},[49079],{"type":50,"value":408},{"type":44,"tag":100,"props":49081,"children":49082},{"style":400},[49083],{"type":50,"value":6445},{"type":44,"tag":100,"props":49085,"children":49086},{"class":102,"line":6448},[49087,49091,49095,49099,49103,49107,49111,49115,49119,49123,49127,49131,49135,49139,49143,49147,49151,49155,49159,49163,49167],{"type":44,"tag":100,"props":49088,"children":49089},{"style":113},[49090],{"type":50,"value":654},{"type":44,"tag":100,"props":49092,"children":49093},{"style":400},[49094],{"type":50,"value":427},{"type":44,"tag":100,"props":49096,"children":49097},{"style":113},[49098],{"type":50,"value":2925},{"type":44,"tag":100,"props":49100,"children":49101},{"style":400},[49102],{"type":50,"value":786},{"type":44,"tag":100,"props":49104,"children":49105},{"style":113},[49106],{"type":50,"value":6199},{"type":44,"tag":100,"props":49108,"children":49109},{"style":390},[49110],{"type":50,"value":6319},{"type":44,"tag":100,"props":49112,"children":49113},{"style":113},[49114],{"type":50,"value":1262},{"type":44,"tag":100,"props":49116,"children":49117},{"style":400},[49118],{"type":50,"value":427},{"type":44,"tag":100,"props":49120,"children":49121},{"style":113},[49122],{"type":50,"value":2925},{"type":44,"tag":100,"props":49124,"children":49125},{"style":400},[49126],{"type":50,"value":786},{"type":44,"tag":100,"props":49128,"children":49129},{"style":113},[49130],{"type":50,"value":6178},{"type":44,"tag":100,"props":49132,"children":49133},{"style":400},[49134],{"type":50,"value":750},{"type":44,"tag":100,"props":49136,"children":49137},{"style":113},[49138],{"type":50,"value":679},{"type":44,"tag":100,"props":49140,"children":49141},{"style":400},[49142],{"type":50,"value":437},{"type":44,"tag":100,"props":49144,"children":49145},{"style":390},[49146],{"type":50,"value":432},{"type":44,"tag":100,"props":49148,"children":49149},{"style":113},[49150],{"type":50,"value":745},{"type":44,"tag":100,"props":49152,"children":49153},{"style":400},[49154],{"type":50,"value":750},{"type":44,"tag":100,"props":49156,"children":49157},{"style":113},[49158],{"type":50,"value":689},{"type":44,"tag":100,"props":49160,"children":49161},{"style":400},[49162],{"type":50,"value":437},{"type":44,"tag":100,"props":49164,"children":49165},{"style":390},[49166],{"type":50,"value":408},{"type":44,"tag":100,"props":49168,"children":49169},{"style":400},[49170],{"type":50,"value":6534},{"type":44,"tag":100,"props":49172,"children":49173},{"class":102,"line":6537},[49174,49178],{"type":44,"tag":100,"props":49175,"children":49176},{"style":390},[49177],{"type":50,"value":776},{"type":44,"tag":100,"props":49179,"children":49180},{"style":400},[49181],{"type":50,"value":6547},{"type":44,"tag":100,"props":49183,"children":49184},{"class":102,"line":6550},[49185,49189],{"type":44,"tag":100,"props":49186,"children":49187},{"style":390},[49188],{"type":50,"value":6556},{"type":44,"tag":100,"props":49190,"children":49191},{"style":400},[49192],{"type":50,"value":6561},{"type":44,"tag":100,"props":49194,"children":49195},{"class":102,"line":6564},[49196,49200,49204,49208,49212,49216,49220,49224],{"type":44,"tag":100,"props":49197,"children":49198},{"style":390},[49199],{"type":50,"value":3114},{"type":44,"tag":100,"props":49201,"children":49202},{"style":113},[49203],{"type":50,"value":3135},{"type":44,"tag":100,"props":49205,"children":49206},{"style":400},[49207],{"type":50,"value":786},{"type":44,"tag":100,"props":49209,"children":49210},{"style":113},[49211],{"type":50,"value":6111},{"type":44,"tag":100,"props":49213,"children":49214},{"style":390},[49215],{"type":50,"value":2591},{"type":44,"tag":100,"props":49217,"children":49218},{"style":113},[49219],{"type":50,"value":6590},{"type":44,"tag":100,"props":49221,"children":49222},{"style":400},[49223],{"type":50,"value":786},{"type":44,"tag":100,"props":49225,"children":49226},{"style":113},[49227],{"type":50,"value":6024},{"type":44,"tag":100,"props":49229,"children":49230},{"class":102,"line":6601},[49231,49235,49239,49243,49247,49251,49255,49259],{"type":44,"tag":100,"props":49232,"children":49233},{"style":390},[49234],{"type":50,"value":6607},{"type":44,"tag":100,"props":49236,"children":49237},{"style":113},[49238],{"type":50,"value":3135},{"type":44,"tag":100,"props":49240,"children":49241},{"style":400},[49242],{"type":50,"value":786},{"type":44,"tag":100,"props":49244,"children":49245},{"style":113},[49246],{"type":50,"value":5890},{"type":44,"tag":100,"props":49248,"children":49249},{"style":390},[49250],{"type":50,"value":2591},{"type":44,"tag":100,"props":49252,"children":49253},{"style":113},[49254],{"type":50,"value":6590},{"type":44,"tag":100,"props":49256,"children":49257},{"style":400},[49258],{"type":50,"value":786},{"type":44,"tag":100,"props":49260,"children":49261},{"style":113},[49262],{"type":50,"value":6078},{"type":44,"tag":100,"props":49264,"children":49265},{"class":102,"line":6638},[49266,49270],{"type":44,"tag":100,"props":49267,"children":49268},{"style":390},[49269],{"type":50,"value":6556},{"type":44,"tag":100,"props":49271,"children":49272},{"style":400},[49273],{"type":50,"value":6648},{"type":44,"tag":100,"props":49275,"children":49276},{"class":102,"line":6651},[49277,49281,49285,49289,49293,49297,49301,49305],{"type":44,"tag":100,"props":49278,"children":49279},{"style":390},[49280],{"type":50,"value":3114},{"type":44,"tag":100,"props":49282,"children":49283},{"style":113},[49284],{"type":50,"value":3135},{"type":44,"tag":100,"props":49286,"children":49287},{"style":400},[49288],{"type":50,"value":786},{"type":44,"tag":100,"props":49290,"children":49291},{"style":113},[49292],{"type":50,"value":6111},{"type":44,"tag":100,"props":49294,"children":49295},{"style":390},[49296],{"type":50,"value":2591},{"type":44,"tag":100,"props":49298,"children":49299},{"style":113},[49300],{"type":50,"value":6677},{"type":44,"tag":100,"props":49302,"children":49303},{"style":400},[49304],{"type":50,"value":786},{"type":44,"tag":100,"props":49306,"children":49307},{"style":113},[49308],{"type":50,"value":6686},{"type":44,"tag":100,"props":49310,"children":49311},{"class":102,"line":6689},[49312,49316,49320,49324,49328,49332,49336,49340],{"type":44,"tag":100,"props":49313,"children":49314},{"style":390},[49315],{"type":50,"value":6607},{"type":44,"tag":100,"props":49317,"children":49318},{"style":113},[49319],{"type":50,"value":3135},{"type":44,"tag":100,"props":49321,"children":49322},{"style":400},[49323],{"type":50,"value":786},{"type":44,"tag":100,"props":49325,"children":49326},{"style":113},[49327],{"type":50,"value":5890},{"type":44,"tag":100,"props":49329,"children":49330},{"style":390},[49331],{"type":50,"value":2591},{"type":44,"tag":100,"props":49333,"children":49334},{"style":113},[49335],{"type":50,"value":6677},{"type":44,"tag":100,"props":49337,"children":49338},{"style":400},[49339],{"type":50,"value":786},{"type":44,"tag":100,"props":49341,"children":49342},{"style":113},[49343],{"type":50,"value":6078},{"type":44,"tag":100,"props":49345,"children":49346},{"class":102,"line":6725},[49347,49351,49355,49359,49363,49367,49371,49375,49379,49383],{"type":44,"tag":100,"props":49348,"children":49349},{"style":390},[49350],{"type":50,"value":814},{"type":44,"tag":100,"props":49352,"children":49353},{"style":113},[49354],{"type":50,"value":3135},{"type":44,"tag":100,"props":49356,"children":49357},{"style":400},[49358],{"type":50,"value":786},{"type":44,"tag":100,"props":49360,"children":49361},{"style":113},[49362],{"type":50,"value":6111},{"type":44,"tag":100,"props":49364,"children":49365},{"style":390},[49366],{"type":50,"value":6747},{"type":44,"tag":100,"props":49368,"children":49369},{"style":400},[49370],{"type":50,"value":750},{"type":44,"tag":100,"props":49372,"children":49373},{"style":113},[49374],{"type":50,"value":2925},{"type":44,"tag":100,"props":49376,"children":49377},{"style":400},[49378],{"type":50,"value":786},{"type":44,"tag":100,"props":49380,"children":49381},{"style":113},[49382],{"type":50,"value":6157},{"type":44,"tag":100,"props":49384,"children":49385},{"style":390},[49386],{"type":50,"value":6768},{"type":44,"tag":124,"props":49388,"children":49389},{"id":9348},[49390,49391],{"type":50,"value":9351},{"type":44,"tag":81,"props":49392,"children":49394},{"className":49393},[],[49395],{"type":50,"value":9357},{"type":44,"tag":53,"props":49397,"children":49398},{},[49399],{"type":50,"value":9362},{"type":44,"tag":53,"props":49401,"children":49402},{},[49403,49404,49412],{"type":50,"value":183},{"type":44,"tag":185,"props":49405,"children":49406},{},[49407],{"type":44,"tag":81,"props":49408,"children":49410},{"className":49409},[],[49411],{"type":50,"value":9375},{"type":50,"value":195},{"type":44,"tag":197,"props":49414,"children":49415},{":variants":199,"group":200},[49416,50628,51872],{"type":44,"tag":203,"props":49417,"children":49418},{"v-slot:clickhouse":7},[49419],{"type":44,"tag":90,"props":49420,"children":49421},{"className":208,"code":9385,"language":210,"meta":7,"style":7},[49422],{"type":44,"tag":81,"props":49423,"children":49424},{"__ignoreMap":7},[49425,49432,49439,49446,49453,49460,49467,49474,49481,49488,49495,49502,49509,49516,49523,49530,49537,49544,49551,49558,49577,49584,49615,49670,49725,49748,49771,49806,49833,49860,49867,49882,49889,49896,49919,49938,49957,49976,49987,49994,50009,50016,50023,50042,50061,50072,50079,50086,50109,50128,50147,50166,50185,50204,50223,50242,50261,50280,50367,50386,50461,50484,50527,50570,50613],{"type":44,"tag":100,"props":49426,"children":49427},{"class":102,"line":103},[49428],{"type":44,"tag":100,"props":49429,"children":49430},{"style":220},[49431],{"type":50,"value":223},{"type":44,"tag":100,"props":49433,"children":49434},{"class":102,"line":226},[49435],{"type":44,"tag":100,"props":49436,"children":49437},{"style":220},[49438],{"type":50,"value":9404},{"type":44,"tag":100,"props":49440,"children":49441},{"class":102,"line":235},[49442],{"type":44,"tag":100,"props":49443,"children":49444},{"style":220},[49445],{"type":50,"value":241},{"type":44,"tag":100,"props":49447,"children":49448},{"class":102,"line":24},[49449],{"type":44,"tag":100,"props":49450,"children":49451},{"style":220},[49452],{"type":50,"value":249},{"type":44,"tag":100,"props":49454,"children":49455},{"class":102,"line":252},[49456],{"type":44,"tag":100,"props":49457,"children":49458},{"style":220},[49459],{"type":50,"value":258},{"type":44,"tag":100,"props":49461,"children":49462},{"class":102,"line":261},[49463],{"type":44,"tag":100,"props":49464,"children":49465},{"style":220},[49466],{"type":50,"value":267},{"type":44,"tag":100,"props":49468,"children":49469},{"class":102,"line":270},[49470],{"type":44,"tag":100,"props":49471,"children":49472},{"style":220},[49473],{"type":50,"value":9440},{"type":44,"tag":100,"props":49475,"children":49476},{"class":102,"line":279},[49477],{"type":44,"tag":100,"props":49478,"children":49479},{"style":220},[49480],{"type":50,"value":2329},{"type":44,"tag":100,"props":49482,"children":49483},{"class":102,"line":288},[49484],{"type":44,"tag":100,"props":49485,"children":49486},{"style":220},[49487],{"type":50,"value":276},{"type":44,"tag":100,"props":49489,"children":49490},{"class":102,"line":297},[49491],{"type":44,"tag":100,"props":49492,"children":49493},{"style":220},[49494],{"type":50,"value":5466},{"type":44,"tag":100,"props":49496,"children":49497},{"class":102,"line":306},[49498],{"type":44,"tag":100,"props":49499,"children":49500},{"style":220},[49501],{"type":50,"value":5458},{"type":44,"tag":100,"props":49503,"children":49504},{"class":102,"line":315},[49505],{"type":44,"tag":100,"props":49506,"children":49507},{"style":220},[49508],{"type":50,"value":285},{"type":44,"tag":100,"props":49510,"children":49511},{"class":102,"line":324},[49512],{"type":44,"tag":100,"props":49513,"children":49514},{"style":220},[49515],{"type":50,"value":9483},{"type":44,"tag":100,"props":49517,"children":49518},{"class":102,"line":333},[49519],{"type":44,"tag":100,"props":49520,"children":49521},{"style":220},[49522],{"type":50,"value":303},{"type":44,"tag":100,"props":49524,"children":49525},{"class":102,"line":11},[49526],{"type":44,"tag":100,"props":49527,"children":49528},{"style":220},[49529],{"type":50,"value":312},{"type":44,"tag":100,"props":49531,"children":49532},{"class":102,"line":350},[49533],{"type":44,"tag":100,"props":49534,"children":49535},{"style":220},[49536],{"type":50,"value":321},{"type":44,"tag":100,"props":49538,"children":49539},{"class":102,"line":359},[49540],{"type":44,"tag":100,"props":49541,"children":49542},{"style":220},[49543],{"type":50,"value":330},{"type":44,"tag":100,"props":49545,"children":49546},{"class":102,"line":368},[49547],{"type":44,"tag":100,"props":49548,"children":49549},{"style":220},[49550],{"type":50,"value":374},{"type":44,"tag":100,"props":49552,"children":49553},{"class":102,"line":377},[49554],{"type":44,"tag":100,"props":49555,"children":49556},{"emptyLinePlaceholder":23},[49557],{"type":50,"value":383},{"type":44,"tag":100,"props":49559,"children":49560},{"class":102,"line":386},[49561,49565,49569,49573],{"type":44,"tag":100,"props":49562,"children":49563},{"style":390},[49564],{"type":50,"value":2387},{"type":44,"tag":100,"props":49566,"children":49567},{"style":400},[49568],{"type":50,"value":9537},{"type":44,"tag":100,"props":49570,"children":49571},{"style":390},[49572],{"type":50,"value":408},{"type":44,"tag":100,"props":49574,"children":49575},{"style":400},[49576],{"type":50,"value":2401},{"type":44,"tag":100,"props":49578,"children":49579},{"class":102,"line":396},[49580],{"type":44,"tag":100,"props":49581,"children":49582},{"style":390},[49583],{"type":50,"value":2409},{"type":44,"tag":100,"props":49585,"children":49586},{"class":102,"line":416},[49587,49591,49595,49599,49603,49607,49611],{"type":44,"tag":100,"props":49588,"children":49589},{"style":400},[49590],{"type":50,"value":9560},{"type":44,"tag":100,"props":49592,"children":49593},{"style":113},[49594],{"type":50,"value":2478},{"type":44,"tag":100,"props":49596,"children":49597},{"style":400},[49598],{"type":50,"value":786},{"type":44,"tag":100,"props":49600,"children":49601},{"style":113},[49602],{"type":50,"value":2487},{"type":44,"tag":100,"props":49604,"children":49605},{"style":400},[49606],{"type":50,"value":437},{"type":44,"tag":100,"props":49608,"children":49609},{"style":390},[49610],{"type":50,"value":408},{"type":44,"tag":100,"props":49612,"children":49613},{"style":400},[49614],{"type":50,"value":413},{"type":44,"tag":100,"props":49616,"children":49617},{"class":102,"line":449},[49618,49622,49626,49630,49634,49638,49642,49646,49650,49654,49658,49662,49666],{"type":44,"tag":100,"props":49619,"children":49620},{"style":400},[49621],{"type":50,"value":9592},{"type":44,"tag":100,"props":49623,"children":49624},{"style":113},[49625],{"type":50,"value":2444},{"type":44,"tag":100,"props":49627,"children":49628},{"style":400},[49629],{"type":50,"value":786},{"type":44,"tag":100,"props":49631,"children":49632},{"style":113},[49633],{"type":50,"value":2453},{"type":44,"tag":100,"props":49635,"children":49636},{"style":400},[49637],{"type":50,"value":437},{"type":44,"tag":100,"props":49639,"children":49640},{"style":390},[49641],{"type":50,"value":460},{"type":44,"tag":100,"props":49643,"children":49644},{"style":400},[49645],{"type":50,"value":5990},{"type":44,"tag":100,"props":49647,"children":49648},{"style":113},[49649],{"type":50,"value":2478},{"type":44,"tag":100,"props":49651,"children":49652},{"style":400},[49653],{"type":50,"value":786},{"type":44,"tag":100,"props":49655,"children":49656},{"style":113},[49657],{"type":50,"value":2487},{"type":44,"tag":100,"props":49659,"children":49660},{"style":400},[49661],{"type":50,"value":9633},{"type":44,"tag":100,"props":49663,"children":49664},{"style":390},[49665],{"type":50,"value":408},{"type":44,"tag":100,"props":49667,"children":49668},{"style":400},[49669],{"type":50,"value":9642},{"type":44,"tag":100,"props":49671,"children":49672},{"class":102,"line":481},[49673,49677,49681,49685,49689,49693,49697,49701,49705,49709,49713,49717,49721],{"type":44,"tag":100,"props":49674,"children":49675},{"style":400},[49676],{"type":50,"value":9592},{"type":44,"tag":100,"props":49678,"children":49679},{"style":113},[49680],{"type":50,"value":2444},{"type":44,"tag":100,"props":49682,"children":49683},{"style":400},[49684],{"type":50,"value":786},{"type":44,"tag":100,"props":49686,"children":49687},{"style":113},[49688],{"type":50,"value":2453},{"type":44,"tag":100,"props":49690,"children":49691},{"style":400},[49692],{"type":50,"value":437},{"type":44,"tag":100,"props":49694,"children":49695},{"style":390},[49696],{"type":50,"value":9670},{"type":44,"tag":100,"props":49698,"children":49699},{"style":400},[49700],{"type":50,"value":5990},{"type":44,"tag":100,"props":49702,"children":49703},{"style":113},[49704],{"type":50,"value":2478},{"type":44,"tag":100,"props":49706,"children":49707},{"style":400},[49708],{"type":50,"value":786},{"type":44,"tag":100,"props":49710,"children":49711},{"style":113},[49712],{"type":50,"value":2487},{"type":44,"tag":100,"props":49714,"children":49715},{"style":400},[49716],{"type":50,"value":9633},{"type":44,"tag":100,"props":49718,"children":49719},{"style":390},[49720],{"type":50,"value":408},{"type":44,"tag":100,"props":49722,"children":49723},{"style":400},[49724],{"type":50,"value":9699},{"type":44,"tag":100,"props":49726,"children":49727},{"class":102,"line":508},[49728,49732,49736,49740,49744],{"type":44,"tag":100,"props":49729,"children":49730},{"style":390},[49731],{"type":50,"value":2524},{"type":44,"tag":100,"props":49733,"children":49734},{"style":113},[49735],{"type":50,"value":781},{"type":44,"tag":100,"props":49737,"children":49738},{"style":400},[49739],{"type":50,"value":786},{"type":44,"tag":100,"props":49741,"children":49742},{"style":113},[49743],{"type":50,"value":1408},{"type":44,"tag":100,"props":49745,"children":49746},{"style":400},[49747],{"type":50,"value":1413},{"type":44,"tag":100,"props":49749,"children":49750},{"class":102,"line":531},[49751,49755,49759,49763,49767],{"type":44,"tag":100,"props":49752,"children":49753},{"style":390},[49754],{"type":50,"value":9730},{"type":44,"tag":100,"props":49756,"children":49757},{"style":113},[49758],{"type":50,"value":781},{"type":44,"tag":100,"props":49760,"children":49761},{"style":400},[49762],{"type":50,"value":786},{"type":44,"tag":100,"props":49764,"children":49765},{"style":113},[49766],{"type":50,"value":2561},{"type":44,"tag":100,"props":49768,"children":49769},{"style":400},[49770],{"type":50,"value":2566},{"type":44,"tag":100,"props":49772,"children":49773},{"class":102,"line":604},[49774,49778,49782,49786,49790,49794,49798,49802],{"type":44,"tag":100,"props":49775,"children":49776},{"style":390},[49777],{"type":50,"value":2574},{"type":44,"tag":100,"props":49779,"children":49780},{"style":113},[49781],{"type":50,"value":1426},{"type":44,"tag":100,"props":49783,"children":49784},{"style":400},[49785],{"type":50,"value":786},{"type":44,"tag":100,"props":49787,"children":49788},{"style":113},[49789],{"type":50,"value":2426},{"type":44,"tag":100,"props":49791,"children":49792},{"style":390},[49793],{"type":50,"value":2591},{"type":44,"tag":100,"props":49795,"children":49796},{"style":113},[49797],{"type":50,"value":2596},{"type":44,"tag":100,"props":49799,"children":49800},{"style":400},[49801],{"type":50,"value":786},{"type":44,"tag":100,"props":49803,"children":49804},{"style":113},[49805],{"type":50,"value":2605},{"type":44,"tag":100,"props":49807,"children":49808},{"class":102,"line":626},[49809,49813,49817,49821,49825,49829],{"type":44,"tag":100,"props":49810,"children":49811},{"style":390},[49812],{"type":50,"value":2613},{"type":44,"tag":100,"props":49814,"children":49815},{"style":113},[49816],{"type":50,"value":1426},{"type":44,"tag":100,"props":49818,"children":49819},{"style":400},[49820],{"type":50,"value":786},{"type":44,"tag":100,"props":49822,"children":49823},{"style":113},[49824],{"type":50,"value":2626},{"type":44,"tag":100,"props":49826,"children":49827},{"style":390},[49828],{"type":50,"value":2591},{"type":44,"tag":100,"props":49830,"children":49831},{"style":119},[49832],{"type":50,"value":2635},{"type":44,"tag":100,"props":49834,"children":49835},{"class":102,"line":648},[49836,49840,49844,49848,49852,49856],{"type":44,"tag":100,"props":49837,"children":49838},{"style":390},[49839],{"type":50,"value":2725},{"type":44,"tag":100,"props":49841,"children":49842},{"style":400},[49843],{"type":50,"value":5990},{"type":44,"tag":100,"props":49845,"children":49846},{"style":113},[49847],{"type":50,"value":2478},{"type":44,"tag":100,"props":49849,"children":49850},{"style":400},[49851],{"type":50,"value":786},{"type":44,"tag":100,"props":49853,"children":49854},{"style":113},[49855],{"type":50,"value":2487},{"type":44,"tag":100,"props":49857,"children":49858},{"style":400},[49859],{"type":50,"value":1464},{"type":44,"tag":100,"props":49861,"children":49862},{"class":102,"line":705},[49863],{"type":44,"tag":100,"props":49864,"children":49865},{"style":400},[49866],{"type":50,"value":2643},{"type":44,"tag":100,"props":49868,"children":49869},{"class":102,"line":770},[49870,49874,49878],{"type":44,"tag":100,"props":49871,"children":49872},{"style":400},[49873],{"type":50,"value":9850},{"type":44,"tag":100,"props":49875,"children":49876},{"style":390},[49877],{"type":50,"value":408},{"type":44,"tag":100,"props":49879,"children":49880},{"style":400},[49881],{"type":50,"value":2401},{"type":44,"tag":100,"props":49883,"children":49884},{"class":102,"line":794},[49885],{"type":44,"tag":100,"props":49886,"children":49887},{"style":390},[49888],{"type":50,"value":2409},{"type":44,"tag":100,"props":49890,"children":49891},{"class":102,"line":808},[49892],{"type":44,"tag":100,"props":49893,"children":49894},{"style":400},[49895],{"type":50,"value":5721},{"type":44,"tag":100,"props":49897,"children":49898},{"class":102,"line":1484},[49899,49903,49907,49911,49915],{"type":44,"tag":100,"props":49900,"children":49901},{"style":113},[49902],{"type":50,"value":5574},{"type":44,"tag":100,"props":49904,"children":49905},{"style":400},[49906],{"type":50,"value":5740},{"type":44,"tag":100,"props":49908,"children":49909},{"style":390},[49910],{"type":50,"value":408},{"type":44,"tag":100,"props":49912,"children":49913},{"style":390},[49914],{"type":50,"value":5749},{"type":44,"tag":100,"props":49916,"children":49917},{"style":400},[49918],{"type":50,"value":2431},{"type":44,"tag":100,"props":49920,"children":49921},{"class":102,"line":2747},[49922,49926,49930,49934],{"type":44,"tag":100,"props":49923,"children":49924},{"style":113},[49925],{"type":50,"value":5574},{"type":44,"tag":100,"props":49927,"children":49928},{"style":400},[49929],{"type":50,"value":5765},{"type":44,"tag":100,"props":49931,"children":49932},{"style":390},[49933],{"type":50,"value":408},{"type":44,"tag":100,"props":49935,"children":49936},{"style":400},[49937],{"type":50,"value":9915},{"type":44,"tag":100,"props":49939,"children":49940},{"class":102,"line":2769},[49941,49945,49949,49953],{"type":44,"tag":100,"props":49942,"children":49943},{"style":113},[49944],{"type":50,"value":5574},{"type":44,"tag":100,"props":49946,"children":49947},{"style":400},[49948],{"type":50,"value":5786},{"type":44,"tag":100,"props":49950,"children":49951},{"style":390},[49952],{"type":50,"value":408},{"type":44,"tag":100,"props":49954,"children":49955},{"style":400},[49956],{"type":50,"value":5795},{"type":44,"tag":100,"props":49958,"children":49959},{"class":102,"line":2791},[49960,49964,49968,49972],{"type":44,"tag":100,"props":49961,"children":49962},{"style":390},[49963],{"type":50,"value":2524},{"type":44,"tag":100,"props":49965,"children":49966},{"style":113},[49967],{"type":50,"value":781},{"type":44,"tag":100,"props":49969,"children":49970},{"style":400},[49971],{"type":50,"value":786},{"type":44,"tag":100,"props":49973,"children":49974},{"style":113},[49975],{"type":50,"value":5815},{"type":44,"tag":100,"props":49977,"children":49978},{"class":102,"line":2856},[49979,49983],{"type":44,"tag":100,"props":49980,"children":49981},{"style":390},[49982],{"type":50,"value":2725},{"type":44,"tag":100,"props":49984,"children":49985},{"style":400},[49986],{"type":50,"value":9965},{"type":44,"tag":100,"props":49988,"children":49989},{"class":102,"line":2898},[49990],{"type":44,"tag":100,"props":49991,"children":49992},{"style":400},[49993],{"type":50,"value":2643},{"type":44,"tag":100,"props":49995,"children":49996},{"class":102,"line":2977},[49997,50001,50005],{"type":44,"tag":100,"props":49998,"children":49999},{"style":400},[50000],{"type":50,"value":9980},{"type":44,"tag":100,"props":50002,"children":50003},{"style":390},[50004],{"type":50,"value":408},{"type":44,"tag":100,"props":50006,"children":50007},{"style":400},[50008],{"type":50,"value":2401},{"type":44,"tag":100,"props":50010,"children":50011},{"class":102,"line":3015},[50012],{"type":44,"tag":100,"props":50013,"children":50014},{"style":390},[50015],{"type":50,"value":2409},{"type":44,"tag":100,"props":50017,"children":50018},{"class":102,"line":3081},[50019],{"type":44,"tag":100,"props":50020,"children":50021},{"style":400},[50022],{"type":50,"value":5558},{"type":44,"tag":100,"props":50024,"children":50025},{"class":102,"line":3094},[50026,50030,50034,50038],{"type":44,"tag":100,"props":50027,"children":50028},{"style":113},[50029],{"type":50,"value":5574},{"type":44,"tag":100,"props":50031,"children":50032},{"style":400},[50033],{"type":50,"value":5579},{"type":44,"tag":100,"props":50035,"children":50036},{"style":390},[50037],{"type":50,"value":408},{"type":44,"tag":100,"props":50039,"children":50040},{"style":400},[50041],{"type":50,"value":10022},{"type":44,"tag":100,"props":50043,"children":50044},{"class":102,"line":3108},[50045,50049,50053,50057],{"type":44,"tag":100,"props":50046,"children":50047},{"style":390},[50048],{"type":50,"value":2524},{"type":44,"tag":100,"props":50050,"children":50051},{"style":113},[50052],{"type":50,"value":781},{"type":44,"tag":100,"props":50054,"children":50055},{"style":400},[50056],{"type":50,"value":786},{"type":44,"tag":100,"props":50058,"children":50059},{"style":113},[50060],{"type":50,"value":5671},{"type":44,"tag":100,"props":50062,"children":50063},{"class":102,"line":3147},[50064,50068],{"type":44,"tag":100,"props":50065,"children":50066},{"style":390},[50067],{"type":50,"value":2725},{"type":44,"tag":100,"props":50069,"children":50070},{"style":400},[50071],{"type":50,"value":10053},{"type":44,"tag":100,"props":50073,"children":50074},{"class":102,"line":3188},[50075],{"type":44,"tag":100,"props":50076,"children":50077},{"style":400},[50078],{"type":50,"value":1464},{"type":44,"tag":100,"props":50080,"children":50081},{"class":102,"line":6054},[50082],{"type":44,"tag":100,"props":50083,"children":50084},{"style":390},[50085],{"type":50,"value":393},{"type":44,"tag":100,"props":50087,"children":50088},{"class":102,"line":6081},[50089,50093,50097,50101,50105],{"type":44,"tag":100,"props":50090,"children":50091},{"style":113},[50092],{"type":50,"value":10075},{"type":44,"tag":100,"props":50094,"children":50095},{"style":400},[50096],{"type":50,"value":786},{"type":44,"tag":100,"props":50098,"children":50099},{"style":113},[50100],{"type":50,"value":2487},{"type":44,"tag":100,"props":50102,"children":50103},{"style":390},[50104],{"type":50,"value":1661},{"type":44,"tag":100,"props":50106,"children":50107},{"style":400},[50108],{"type":50,"value":10092},{"type":44,"tag":100,"props":50110,"children":50111},{"class":102,"line":6089},[50112,50116,50120,50124],{"type":44,"tag":100,"props":50113,"children":50114},{"style":113},[50115],{"type":50,"value":10075},{"type":44,"tag":100,"props":50117,"children":50118},{"style":400},[50119],{"type":50,"value":786},{"type":44,"tag":100,"props":50121,"children":50122},{"style":113},[50123],{"type":50,"value":10108},{"type":44,"tag":100,"props":50125,"children":50126},{"style":400},[50127],{"type":50,"value":2431},{"type":44,"tag":100,"props":50129,"children":50130},{"class":102,"line":6097},[50131,50135,50139,50143],{"type":44,"tag":100,"props":50132,"children":50133},{"style":113},[50134],{"type":50,"value":10075},{"type":44,"tag":100,"props":50136,"children":50137},{"style":400},[50138],{"type":50,"value":786},{"type":44,"tag":100,"props":50140,"children":50141},{"style":113},[50142],{"type":50,"value":10128},{"type":44,"tag":100,"props":50144,"children":50145},{"style":400},[50146],{"type":50,"value":2431},{"type":44,"tag":100,"props":50148,"children":50149},{"class":102,"line":6123},[50150,50154,50158,50162],{"type":44,"tag":100,"props":50151,"children":50152},{"style":113},[50153],{"type":50,"value":10075},{"type":44,"tag":100,"props":50155,"children":50156},{"style":400},[50157],{"type":50,"value":786},{"type":44,"tag":100,"props":50159,"children":50160},{"style":113},[50161],{"type":50,"value":10148},{"type":44,"tag":100,"props":50163,"children":50164},{"style":400},[50165],{"type":50,"value":2431},{"type":44,"tag":100,"props":50167,"children":50168},{"class":102,"line":6143},[50169,50173,50177,50181],{"type":44,"tag":100,"props":50170,"children":50171},{"style":113},[50172],{"type":50,"value":10075},{"type":44,"tag":100,"props":50174,"children":50175},{"style":400},[50176],{"type":50,"value":786},{"type":44,"tag":100,"props":50178,"children":50179},{"style":113},[50180],{"type":50,"value":10168},{"type":44,"tag":100,"props":50182,"children":50183},{"style":400},[50184],{"type":50,"value":2431},{"type":44,"tag":100,"props":50186,"children":50187},{"class":102,"line":6164},[50188,50192,50196,50200],{"type":44,"tag":100,"props":50189,"children":50190},{"style":113},[50191],{"type":50,"value":10075},{"type":44,"tag":100,"props":50193,"children":50194},{"style":400},[50195],{"type":50,"value":786},{"type":44,"tag":100,"props":50197,"children":50198},{"style":113},[50199],{"type":50,"value":10188},{"type":44,"tag":100,"props":50201,"children":50202},{"style":400},[50203],{"type":50,"value":2431},{"type":44,"tag":100,"props":50205,"children":50206},{"class":102,"line":6185},[50207,50211,50215,50219],{"type":44,"tag":100,"props":50208,"children":50209},{"style":113},[50210],{"type":50,"value":10200},{"type":44,"tag":100,"props":50212,"children":50213},{"style":400},[50214],{"type":50,"value":786},{"type":44,"tag":100,"props":50216,"children":50217},{"style":113},[50218],{"type":50,"value":10209},{"type":44,"tag":100,"props":50220,"children":50221},{"style":400},[50222],{"type":50,"value":2431},{"type":44,"tag":100,"props":50224,"children":50225},{"class":102,"line":6206},[50226,50230,50234,50238],{"type":44,"tag":100,"props":50227,"children":50228},{"style":113},[50229],{"type":50,"value":10200},{"type":44,"tag":100,"props":50231,"children":50232},{"style":400},[50233],{"type":50,"value":786},{"type":44,"tag":100,"props":50235,"children":50236},{"style":113},[50237],{"type":50,"value":10229},{"type":44,"tag":100,"props":50239,"children":50240},{"style":400},[50241],{"type":50,"value":2431},{"type":44,"tag":100,"props":50243,"children":50244},{"class":102,"line":6227},[50245,50249,50253,50257],{"type":44,"tag":100,"props":50246,"children":50247},{"style":113},[50248],{"type":50,"value":10241},{"type":44,"tag":100,"props":50250,"children":50251},{"style":400},[50252],{"type":50,"value":786},{"type":44,"tag":100,"props":50254,"children":50255},{"style":113},[50256],{"type":50,"value":6242},{"type":44,"tag":100,"props":50258,"children":50259},{"style":400},[50260],{"type":50,"value":2431},{"type":44,"tag":100,"props":50262,"children":50263},{"class":102,"line":6249},[50264,50268,50272,50276],{"type":44,"tag":100,"props":50265,"children":50266},{"style":113},[50267],{"type":50,"value":10241},{"type":44,"tag":100,"props":50269,"children":50270},{"style":400},[50271],{"type":50,"value":786},{"type":44,"tag":100,"props":50273,"children":50274},{"style":113},[50275],{"type":50,"value":10269},{"type":44,"tag":100,"props":50277,"children":50278},{"style":400},[50279],{"type":50,"value":2431},{"type":44,"tag":100,"props":50281,"children":50282},{"class":102,"line":6270},[50283,50287,50291,50295,50299,50303,50307,50311,50315,50319,50323,50327,50331,50335,50339,50343,50347,50351,50355,50359,50363],{"type":44,"tag":100,"props":50284,"children":50285},{"style":113},[50286],{"type":50,"value":654},{"type":44,"tag":100,"props":50288,"children":50289},{"style":400},[50290],{"type":50,"value":427},{"type":44,"tag":100,"props":50292,"children":50293},{"style":113},[50294],{"type":50,"value":10289},{"type":44,"tag":100,"props":50296,"children":50297},{"style":400},[50298],{"type":50,"value":786},{"type":44,"tag":100,"props":50300,"children":50301},{"style":113},[50302],{"type":50,"value":10298},{"type":44,"tag":100,"props":50304,"children":50305},{"style":390},[50306],{"type":50,"value":6319},{"type":44,"tag":100,"props":50308,"children":50309},{"style":113},[50310],{"type":50,"value":669},{"type":44,"tag":100,"props":50312,"children":50313},{"style":400},[50314],{"type":50,"value":427},{"type":44,"tag":100,"props":50316,"children":50317},{"style":113},[50318],{"type":50,"value":10289},{"type":44,"tag":100,"props":50320,"children":50321},{"style":400},[50322],{"type":50,"value":786},{"type":44,"tag":100,"props":50324,"children":50325},{"style":113},[50326],{"type":50,"value":6242},{"type":44,"tag":100,"props":50328,"children":50329},{"style":400},[50330],{"type":50,"value":750},{"type":44,"tag":100,"props":50332,"children":50333},{"style":113},[50334],{"type":50,"value":679},{"type":44,"tag":100,"props":50336,"children":50337},{"style":400},[50338],{"type":50,"value":437},{"type":44,"tag":100,"props":50340,"children":50341},{"style":390},[50342],{"type":50,"value":432},{"type":44,"tag":100,"props":50344,"children":50345},{"style":113},[50346],{"type":50,"value":745},{"type":44,"tag":100,"props":50348,"children":50349},{"style":400},[50350],{"type":50,"value":750},{"type":44,"tag":100,"props":50352,"children":50353},{"style":113},[50354],{"type":50,"value":689},{"type":44,"tag":100,"props":50356,"children":50357},{"style":400},[50358],{"type":50,"value":437},{"type":44,"tag":100,"props":50360,"children":50361},{"style":390},[50362],{"type":50,"value":408},{"type":44,"tag":100,"props":50364,"children":50365},{"style":400},[50366],{"type":50,"value":10363},{"type":44,"tag":100,"props":50368,"children":50369},{"class":102,"line":6292},[50370,50374,50378,50382],{"type":44,"tag":100,"props":50371,"children":50372},{"style":113},[50373],{"type":50,"value":10371},{"type":44,"tag":100,"props":50375,"children":50376},{"style":400},[50377],{"type":50,"value":786},{"type":44,"tag":100,"props":50379,"children":50380},{"style":113},[50381],{"type":50,"value":10380},{"type":44,"tag":100,"props":50383,"children":50384},{"style":400},[50385],{"type":50,"value":2431},{"type":44,"tag":100,"props":50387,"children":50388},{"class":102,"line":6371},[50389,50393,50397,50401,50405,50409,50413,50417,50421,50425,50429,50433,50437,50441,50445,50449,50453,50457],{"type":44,"tag":100,"props":50390,"children":50391},{"style":113},[50392],{"type":50,"value":654},{"type":44,"tag":100,"props":50394,"children":50395},{"style":400},[50396],{"type":50,"value":427},{"type":44,"tag":100,"props":50398,"children":50399},{"style":113},[50400],{"type":50,"value":10400},{"type":44,"tag":100,"props":50402,"children":50403},{"style":400},[50404],{"type":50,"value":786},{"type":44,"tag":100,"props":50406,"children":50407},{"style":113},[50408],{"type":50,"value":10108},{"type":44,"tag":100,"props":50410,"children":50411},{"style":390},[50412],{"type":50,"value":6319},{"type":44,"tag":100,"props":50414,"children":50415},{"style":113},[50416],{"type":50,"value":669},{"type":44,"tag":100,"props":50418,"children":50419},{"style":400},[50420],{"type":50,"value":427},{"type":44,"tag":100,"props":50422,"children":50423},{"style":113},[50424],{"type":50,"value":10425},{"type":44,"tag":100,"props":50426,"children":50427},{"style":400},[50428],{"type":50,"value":786},{"type":44,"tag":100,"props":50430,"children":50431},{"style":113},[50432],{"type":50,"value":10380},{"type":44,"tag":100,"props":50434,"children":50435},{"style":400},[50436],{"type":50,"value":750},{"type":44,"tag":100,"props":50438,"children":50439},{"style":113},[50440],{"type":50,"value":679},{"type":44,"tag":100,"props":50442,"children":50443},{"style":400},[50444],{"type":50,"value":684},{"type":44,"tag":100,"props":50446,"children":50447},{"style":113},[50448],{"type":50,"value":689},{"type":44,"tag":100,"props":50450,"children":50451},{"style":400},[50452],{"type":50,"value":437},{"type":44,"tag":100,"props":50454,"children":50455},{"style":390},[50456],{"type":50,"value":408},{"type":44,"tag":100,"props":50458,"children":50459},{"style":400},[50460],{"type":50,"value":10462},{"type":44,"tag":100,"props":50462,"children":50463},{"class":102,"line":6448},[50464,50468,50472,50476,50480],{"type":44,"tag":100,"props":50465,"children":50466},{"style":390},[50467],{"type":50,"value":776},{"type":44,"tag":100,"props":50469,"children":50470},{"style":113},[50471],{"type":50,"value":10474},{"type":44,"tag":100,"props":50473,"children":50474},{"style":400},[50475],{"type":50,"value":786},{"type":44,"tag":100,"props":50477,"children":50478},{"style":113},[50479],{"type":50,"value":10483},{"type":44,"tag":100,"props":50481,"children":50482},{"style":400},[50483],{"type":50,"value":10488},{"type":44,"tag":100,"props":50485,"children":50486},{"class":102,"line":6537},[50487,50491,50495,50499,50503,50507,50511,50515,50519,50523],{"type":44,"tag":100,"props":50488,"children":50489},{"style":390},[50490],{"type":50,"value":6556},{"type":44,"tag":100,"props":50492,"children":50493},{"style":400},[50494],{"type":50,"value":10500},{"type":44,"tag":100,"props":50496,"children":50497},{"style":390},[50498],{"type":50,"value":10505},{"type":44,"tag":100,"props":50500,"children":50501},{"style":113},[50502],{"type":50,"value":10510},{"type":44,"tag":100,"props":50504,"children":50505},{"style":400},[50506],{"type":50,"value":786},{"type":44,"tag":100,"props":50508,"children":50509},{"style":113},[50510],{"type":50,"value":2487},{"type":44,"tag":100,"props":50512,"children":50513},{"style":390},[50514],{"type":50,"value":2591},{"type":44,"tag":100,"props":50516,"children":50517},{"style":113},[50518],{"type":50,"value":10527},{"type":44,"tag":100,"props":50520,"children":50521},{"style":400},[50522],{"type":50,"value":786},{"type":44,"tag":100,"props":50524,"children":50525},{"style":113},[50526],{"type":50,"value":6686},{"type":44,"tag":100,"props":50528,"children":50529},{"class":102,"line":6550},[50530,50534,50538,50542,50546,50550,50554,50558,50562,50566],{"type":44,"tag":100,"props":50531,"children":50532},{"style":390},[50533],{"type":50,"value":6556},{"type":44,"tag":100,"props":50535,"children":50536},{"style":400},[50537],{"type":50,"value":10547},{"type":44,"tag":100,"props":50539,"children":50540},{"style":390},[50541],{"type":50,"value":10505},{"type":44,"tag":100,"props":50543,"children":50544},{"style":113},[50545],{"type":50,"value":10510},{"type":44,"tag":100,"props":50547,"children":50548},{"style":400},[50549],{"type":50,"value":786},{"type":44,"tag":100,"props":50551,"children":50552},{"style":113},[50553],{"type":50,"value":2487},{"type":44,"tag":100,"props":50555,"children":50556},{"style":390},[50557],{"type":50,"value":2591},{"type":44,"tag":100,"props":50559,"children":50560},{"style":113},[50561],{"type":50,"value":10572},{"type":44,"tag":100,"props":50563,"children":50564},{"style":400},[50565],{"type":50,"value":786},{"type":44,"tag":100,"props":50567,"children":50568},{"style":113},[50569],{"type":50,"value":6024},{"type":44,"tag":100,"props":50571,"children":50572},{"class":102,"line":6564},[50573,50577,50581,50585,50589,50593,50597,50601,50605,50609],{"type":44,"tag":100,"props":50574,"children":50575},{"style":390},[50576],{"type":50,"value":6556},{"type":44,"tag":100,"props":50578,"children":50579},{"style":400},[50580],{"type":50,"value":10592},{"type":44,"tag":100,"props":50582,"children":50583},{"style":390},[50584],{"type":50,"value":10505},{"type":44,"tag":100,"props":50586,"children":50587},{"style":113},[50588],{"type":50,"value":10510},{"type":44,"tag":100,"props":50590,"children":50591},{"style":400},[50592],{"type":50,"value":786},{"type":44,"tag":100,"props":50594,"children":50595},{"style":113},[50596],{"type":50,"value":2487},{"type":44,"tag":100,"props":50598,"children":50599},{"style":390},[50600],{"type":50,"value":2591},{"type":44,"tag":100,"props":50602,"children":50603},{"style":113},[50604],{"type":50,"value":10617},{"type":44,"tag":100,"props":50606,"children":50607},{"style":400},[50608],{"type":50,"value":786},{"type":44,"tag":100,"props":50610,"children":50611},{"style":113},[50612],{"type":50,"value":10626},{"type":44,"tag":100,"props":50614,"children":50615},{"class":102,"line":6601},[50616,50620,50624],{"type":44,"tag":100,"props":50617,"children":50618},{"style":390},[50619],{"type":50,"value":814},{"type":44,"tag":100,"props":50621,"children":50622},{"style":400},[50623],{"type":50,"value":10638},{"type":44,"tag":100,"props":50625,"children":50626},{"style":390},[50627],{"type":50,"value":10643},{"type":44,"tag":203,"props":50629,"children":50630},{"v-slot:bigquery":7},[50631],{"type":44,"tag":90,"props":50632,"children":50633},{"className":208,"code":10649,"language":210,"meta":7,"style":7},[50634],{"type":44,"tag":81,"props":50635,"children":50636},{"__ignoreMap":7},[50637,50644,50651,50658,50665,50672,50679,50686,50693,50700,50707,50714,50721,50728,50735,50742,50749,50756,50763,50770,50789,50796,50831,50898,50965,50988,51011,51046,51073,51104,51111,51126,51133,51140,51163,51182,51201,51220,51231,51238,51253,51260,51267,51286,51305,51316,51323,51330,51353,51372,51391,51410,51429,51448,51467,51486,51505,51524,51611,51630,51705,51728,51771,51814,51857],{"type":44,"tag":100,"props":50638,"children":50639},{"class":102,"line":103},[50640],{"type":44,"tag":100,"props":50641,"children":50642},{"style":220},[50643],{"type":50,"value":223},{"type":44,"tag":100,"props":50645,"children":50646},{"class":102,"line":226},[50647],{"type":44,"tag":100,"props":50648,"children":50649},{"style":220},[50650],{"type":50,"value":9404},{"type":44,"tag":100,"props":50652,"children":50653},{"class":102,"line":235},[50654],{"type":44,"tag":100,"props":50655,"children":50656},{"style":220},[50657],{"type":50,"value":241},{"type":44,"tag":100,"props":50659,"children":50660},{"class":102,"line":24},[50661],{"type":44,"tag":100,"props":50662,"children":50663},{"style":220},[50664],{"type":50,"value":249},{"type":44,"tag":100,"props":50666,"children":50667},{"class":102,"line":252},[50668],{"type":44,"tag":100,"props":50669,"children":50670},{"style":220},[50671],{"type":50,"value":258},{"type":44,"tag":100,"props":50673,"children":50674},{"class":102,"line":261},[50675],{"type":44,"tag":100,"props":50676,"children":50677},{"style":220},[50678],{"type":50,"value":267},{"type":44,"tag":100,"props":50680,"children":50681},{"class":102,"line":270},[50682],{"type":44,"tag":100,"props":50683,"children":50684},{"style":220},[50685],{"type":50,"value":9440},{"type":44,"tag":100,"props":50687,"children":50688},{"class":102,"line":279},[50689],{"type":44,"tag":100,"props":50690,"children":50691},{"style":220},[50692],{"type":50,"value":2329},{"type":44,"tag":100,"props":50694,"children":50695},{"class":102,"line":288},[50696],{"type":44,"tag":100,"props":50697,"children":50698},{"style":220},[50699],{"type":50,"value":276},{"type":44,"tag":100,"props":50701,"children":50702},{"class":102,"line":297},[50703],{"type":44,"tag":100,"props":50704,"children":50705},{"style":220},[50706],{"type":50,"value":5466},{"type":44,"tag":100,"props":50708,"children":50709},{"class":102,"line":306},[50710],{"type":44,"tag":100,"props":50711,"children":50712},{"style":220},[50713],{"type":50,"value":5458},{"type":44,"tag":100,"props":50715,"children":50716},{"class":102,"line":315},[50717],{"type":44,"tag":100,"props":50718,"children":50719},{"style":220},[50720],{"type":50,"value":285},{"type":44,"tag":100,"props":50722,"children":50723},{"class":102,"line":324},[50724],{"type":44,"tag":100,"props":50725,"children":50726},{"style":220},[50727],{"type":50,"value":9483},{"type":44,"tag":100,"props":50729,"children":50730},{"class":102,"line":333},[50731],{"type":44,"tag":100,"props":50732,"children":50733},{"style":220},[50734],{"type":50,"value":303},{"type":44,"tag":100,"props":50736,"children":50737},{"class":102,"line":11},[50738],{"type":44,"tag":100,"props":50739,"children":50740},{"style":220},[50741],{"type":50,"value":312},{"type":44,"tag":100,"props":50743,"children":50744},{"class":102,"line":350},[50745],{"type":44,"tag":100,"props":50746,"children":50747},{"style":220},[50748],{"type":50,"value":321},{"type":44,"tag":100,"props":50750,"children":50751},{"class":102,"line":359},[50752],{"type":44,"tag":100,"props":50753,"children":50754},{"style":220},[50755],{"type":50,"value":330},{"type":44,"tag":100,"props":50757,"children":50758},{"class":102,"line":368},[50759],{"type":44,"tag":100,"props":50760,"children":50761},{"style":220},[50762],{"type":50,"value":374},{"type":44,"tag":100,"props":50764,"children":50765},{"class":102,"line":377},[50766],{"type":44,"tag":100,"props":50767,"children":50768},{"emptyLinePlaceholder":23},[50769],{"type":50,"value":383},{"type":44,"tag":100,"props":50771,"children":50772},{"class":102,"line":386},[50773,50777,50781,50785],{"type":44,"tag":100,"props":50774,"children":50775},{"style":390},[50776],{"type":50,"value":2387},{"type":44,"tag":100,"props":50778,"children":50779},{"style":400},[50780],{"type":50,"value":9537},{"type":44,"tag":100,"props":50782,"children":50783},{"style":390},[50784],{"type":50,"value":408},{"type":44,"tag":100,"props":50786,"children":50787},{"style":400},[50788],{"type":50,"value":2401},{"type":44,"tag":100,"props":50790,"children":50791},{"class":102,"line":396},[50792],{"type":44,"tag":100,"props":50793,"children":50794},{"style":390},[50795],{"type":50,"value":2409},{"type":44,"tag":100,"props":50797,"children":50798},{"class":102,"line":416},[50799,50803,50807,50811,50815,50819,50823,50827],{"type":44,"tag":100,"props":50800,"children":50801},{"style":390},[50802],{"type":50,"value":7207},{"type":44,"tag":100,"props":50804,"children":50805},{"style":400},[50806],{"type":50,"value":427},{"type":44,"tag":100,"props":50808,"children":50809},{"style":113},[50810],{"type":50,"value":2478},{"type":44,"tag":100,"props":50812,"children":50813},{"style":400},[50814],{"type":50,"value":786},{"type":44,"tag":100,"props":50816,"children":50817},{"style":113},[50818],{"type":50,"value":2487},{"type":44,"tag":100,"props":50820,"children":50821},{"style":400},[50822],{"type":50,"value":437},{"type":44,"tag":100,"props":50824,"children":50825},{"style":390},[50826],{"type":50,"value":408},{"type":44,"tag":100,"props":50828,"children":50829},{"style":400},[50830],{"type":50,"value":413},{"type":44,"tag":100,"props":50832,"children":50833},{"class":102,"line":449},[50834,50838,50842,50846,50850,50854,50858,50862,50866,50870,50874,50878,50882,50886,50890,50894],{"type":44,"tag":100,"props":50835,"children":50836},{"style":400},[50837],{"type":50,"value":10855},{"type":44,"tag":100,"props":50839,"children":50840},{"style":390},[50841],{"type":50,"value":1656},{"type":44,"tag":100,"props":50843,"children":50844},{"style":400},[50845],{"type":50,"value":427},{"type":44,"tag":100,"props":50847,"children":50848},{"style":113},[50849],{"type":50,"value":2444},{"type":44,"tag":100,"props":50851,"children":50852},{"style":400},[50853],{"type":50,"value":786},{"type":44,"tag":100,"props":50855,"children":50856},{"style":113},[50857],{"type":50,"value":2453},{"type":44,"tag":100,"props":50859,"children":50860},{"style":400},[50861],{"type":50,"value":437},{"type":44,"tag":100,"props":50863,"children":50864},{"style":390},[50865],{"type":50,"value":460},{"type":44,"tag":100,"props":50867,"children":50868},{"style":390},[50869],{"type":50,"value":1476},{"type":44,"tag":100,"props":50871,"children":50872},{"style":400},[50873],{"type":50,"value":427},{"type":44,"tag":100,"props":50875,"children":50876},{"style":113},[50877],{"type":50,"value":2478},{"type":44,"tag":100,"props":50879,"children":50880},{"style":400},[50881],{"type":50,"value":786},{"type":44,"tag":100,"props":50883,"children":50884},{"style":113},[50885],{"type":50,"value":2487},{"type":44,"tag":100,"props":50887,"children":50888},{"style":400},[50889],{"type":50,"value":9633},{"type":44,"tag":100,"props":50891,"children":50892},{"style":390},[50893],{"type":50,"value":408},{"type":44,"tag":100,"props":50895,"children":50896},{"style":400},[50897],{"type":50,"value":9642},{"type":44,"tag":100,"props":50899,"children":50900},{"class":102,"line":481},[50901,50905,50909,50913,50917,50921,50925,50929,50933,50937,50941,50945,50949,50953,50957,50961],{"type":44,"tag":100,"props":50902,"children":50903},{"style":400},[50904],{"type":50,"value":10855},{"type":44,"tag":100,"props":50906,"children":50907},{"style":390},[50908],{"type":50,"value":1656},{"type":44,"tag":100,"props":50910,"children":50911},{"style":400},[50912],{"type":50,"value":427},{"type":44,"tag":100,"props":50914,"children":50915},{"style":113},[50916],{"type":50,"value":2444},{"type":44,"tag":100,"props":50918,"children":50919},{"style":400},[50920],{"type":50,"value":786},{"type":44,"tag":100,"props":50922,"children":50923},{"style":113},[50924],{"type":50,"value":2453},{"type":44,"tag":100,"props":50926,"children":50927},{"style":400},[50928],{"type":50,"value":437},{"type":44,"tag":100,"props":50930,"children":50931},{"style":390},[50932],{"type":50,"value":9670},{"type":44,"tag":100,"props":50934,"children":50935},{"style":390},[50936],{"type":50,"value":1476},{"type":44,"tag":100,"props":50938,"children":50939},{"style":400},[50940],{"type":50,"value":427},{"type":44,"tag":100,"props":50942,"children":50943},{"style":113},[50944],{"type":50,"value":2478},{"type":44,"tag":100,"props":50946,"children":50947},{"style":400},[50948],{"type":50,"value":786},{"type":44,"tag":100,"props":50950,"children":50951},{"style":113},[50952],{"type":50,"value":2487},{"type":44,"tag":100,"props":50954,"children":50955},{"style":400},[50956],{"type":50,"value":9633},{"type":44,"tag":100,"props":50958,"children":50959},{"style":390},[50960],{"type":50,"value":408},{"type":44,"tag":100,"props":50962,"children":50963},{"style":400},[50964],{"type":50,"value":9699},{"type":44,"tag":100,"props":50966,"children":50967},{"class":102,"line":508},[50968,50972,50976,50980,50984],{"type":44,"tag":100,"props":50969,"children":50970},{"style":390},[50971],{"type":50,"value":2524},{"type":44,"tag":100,"props":50973,"children":50974},{"style":113},[50975],{"type":50,"value":781},{"type":44,"tag":100,"props":50977,"children":50978},{"style":400},[50979],{"type":50,"value":786},{"type":44,"tag":100,"props":50981,"children":50982},{"style":113},[50983],{"type":50,"value":1408},{"type":44,"tag":100,"props":50985,"children":50986},{"style":400},[50987],{"type":50,"value":1413},{"type":44,"tag":100,"props":50989,"children":50990},{"class":102,"line":531},[50991,50995,50999,51003,51007],{"type":44,"tag":100,"props":50992,"children":50993},{"style":390},[50994],{"type":50,"value":9730},{"type":44,"tag":100,"props":50996,"children":50997},{"style":113},[50998],{"type":50,"value":781},{"type":44,"tag":100,"props":51000,"children":51001},{"style":400},[51002],{"type":50,"value":786},{"type":44,"tag":100,"props":51004,"children":51005},{"style":113},[51006],{"type":50,"value":2561},{"type":44,"tag":100,"props":51008,"children":51009},{"style":400},[51010],{"type":50,"value":2566},{"type":44,"tag":100,"props":51012,"children":51013},{"class":102,"line":604},[51014,51018,51022,51026,51030,51034,51038,51042],{"type":44,"tag":100,"props":51015,"children":51016},{"style":390},[51017],{"type":50,"value":2574},{"type":44,"tag":100,"props":51019,"children":51020},{"style":113},[51021],{"type":50,"value":1426},{"type":44,"tag":100,"props":51023,"children":51024},{"style":400},[51025],{"type":50,"value":786},{"type":44,"tag":100,"props":51027,"children":51028},{"style":113},[51029],{"type":50,"value":2426},{"type":44,"tag":100,"props":51031,"children":51032},{"style":390},[51033],{"type":50,"value":2591},{"type":44,"tag":100,"props":51035,"children":51036},{"style":113},[51037],{"type":50,"value":2596},{"type":44,"tag":100,"props":51039,"children":51040},{"style":400},[51041],{"type":50,"value":786},{"type":44,"tag":100,"props":51043,"children":51044},{"style":113},[51045],{"type":50,"value":2605},{"type":44,"tag":100,"props":51047,"children":51048},{"class":102,"line":626},[51049,51053,51057,51061,51065,51069],{"type":44,"tag":100,"props":51050,"children":51051},{"style":390},[51052],{"type":50,"value":2613},{"type":44,"tag":100,"props":51054,"children":51055},{"style":113},[51056],{"type":50,"value":1426},{"type":44,"tag":100,"props":51058,"children":51059},{"style":400},[51060],{"type":50,"value":786},{"type":44,"tag":100,"props":51062,"children":51063},{"style":113},[51064],{"type":50,"value":2626},{"type":44,"tag":100,"props":51066,"children":51067},{"style":390},[51068],{"type":50,"value":2591},{"type":44,"tag":100,"props":51070,"children":51071},{"style":119},[51072],{"type":50,"value":2635},{"type":44,"tag":100,"props":51074,"children":51075},{"class":102,"line":648},[51076,51080,51084,51088,51092,51096,51100],{"type":44,"tag":100,"props":51077,"children":51078},{"style":390},[51079],{"type":50,"value":2725},{"type":44,"tag":100,"props":51081,"children":51082},{"style":390},[51083],{"type":50,"value":1476},{"type":44,"tag":100,"props":51085,"children":51086},{"style":400},[51087],{"type":50,"value":427},{"type":44,"tag":100,"props":51089,"children":51090},{"style":113},[51091],{"type":50,"value":2478},{"type":44,"tag":100,"props":51093,"children":51094},{"style":400},[51095],{"type":50,"value":786},{"type":44,"tag":100,"props":51097,"children":51098},{"style":113},[51099],{"type":50,"value":2487},{"type":44,"tag":100,"props":51101,"children":51102},{"style":400},[51103],{"type":50,"value":1464},{"type":44,"tag":100,"props":51105,"children":51106},{"class":102,"line":705},[51107],{"type":44,"tag":100,"props":51108,"children":51109},{"style":400},[51110],{"type":50,"value":2643},{"type":44,"tag":100,"props":51112,"children":51113},{"class":102,"line":770},[51114,51118,51122],{"type":44,"tag":100,"props":51115,"children":51116},{"style":400},[51117],{"type":50,"value":9850},{"type":44,"tag":100,"props":51119,"children":51120},{"style":390},[51121],{"type":50,"value":408},{"type":44,"tag":100,"props":51123,"children":51124},{"style":400},[51125],{"type":50,"value":2401},{"type":44,"tag":100,"props":51127,"children":51128},{"class":102,"line":794},[51129],{"type":44,"tag":100,"props":51130,"children":51131},{"style":390},[51132],{"type":50,"value":2409},{"type":44,"tag":100,"props":51134,"children":51135},{"class":102,"line":808},[51136],{"type":44,"tag":100,"props":51137,"children":51138},{"style":400},[51139],{"type":50,"value":5721},{"type":44,"tag":100,"props":51141,"children":51142},{"class":102,"line":1484},[51143,51147,51151,51155,51159],{"type":44,"tag":100,"props":51144,"children":51145},{"style":113},[51146],{"type":50,"value":5574},{"type":44,"tag":100,"props":51148,"children":51149},{"style":400},[51150],{"type":50,"value":5740},{"type":44,"tag":100,"props":51152,"children":51153},{"style":390},[51154],{"type":50,"value":408},{"type":44,"tag":100,"props":51156,"children":51157},{"style":390},[51158],{"type":50,"value":5749},{"type":44,"tag":100,"props":51160,"children":51161},{"style":400},[51162],{"type":50,"value":2431},{"type":44,"tag":100,"props":51164,"children":51165},{"class":102,"line":2747},[51166,51170,51174,51178],{"type":44,"tag":100,"props":51167,"children":51168},{"style":113},[51169],{"type":50,"value":5574},{"type":44,"tag":100,"props":51171,"children":51172},{"style":400},[51173],{"type":50,"value":5765},{"type":44,"tag":100,"props":51175,"children":51176},{"style":390},[51177],{"type":50,"value":408},{"type":44,"tag":100,"props":51179,"children":51180},{"style":400},[51181],{"type":50,"value":9915},{"type":44,"tag":100,"props":51183,"children":51184},{"class":102,"line":2769},[51185,51189,51193,51197],{"type":44,"tag":100,"props":51186,"children":51187},{"style":113},[51188],{"type":50,"value":5574},{"type":44,"tag":100,"props":51190,"children":51191},{"style":400},[51192],{"type":50,"value":5786},{"type":44,"tag":100,"props":51194,"children":51195},{"style":390},[51196],{"type":50,"value":408},{"type":44,"tag":100,"props":51198,"children":51199},{"style":400},[51200],{"type":50,"value":5795},{"type":44,"tag":100,"props":51202,"children":51203},{"class":102,"line":2791},[51204,51208,51212,51216],{"type":44,"tag":100,"props":51205,"children":51206},{"style":390},[51207],{"type":50,"value":2524},{"type":44,"tag":100,"props":51209,"children":51210},{"style":113},[51211],{"type":50,"value":781},{"type":44,"tag":100,"props":51213,"children":51214},{"style":400},[51215],{"type":50,"value":786},{"type":44,"tag":100,"props":51217,"children":51218},{"style":113},[51219],{"type":50,"value":5815},{"type":44,"tag":100,"props":51221,"children":51222},{"class":102,"line":2856},[51223,51227],{"type":44,"tag":100,"props":51224,"children":51225},{"style":390},[51226],{"type":50,"value":2725},{"type":44,"tag":100,"props":51228,"children":51229},{"style":400},[51230],{"type":50,"value":9965},{"type":44,"tag":100,"props":51232,"children":51233},{"class":102,"line":2898},[51234],{"type":44,"tag":100,"props":51235,"children":51236},{"style":400},[51237],{"type":50,"value":2643},{"type":44,"tag":100,"props":51239,"children":51240},{"class":102,"line":2977},[51241,51245,51249],{"type":44,"tag":100,"props":51242,"children":51243},{"style":400},[51244],{"type":50,"value":9980},{"type":44,"tag":100,"props":51246,"children":51247},{"style":390},[51248],{"type":50,"value":408},{"type":44,"tag":100,"props":51250,"children":51251},{"style":400},[51252],{"type":50,"value":2401},{"type":44,"tag":100,"props":51254,"children":51255},{"class":102,"line":3015},[51256],{"type":44,"tag":100,"props":51257,"children":51258},{"style":390},[51259],{"type":50,"value":2409},{"type":44,"tag":100,"props":51261,"children":51262},{"class":102,"line":3081},[51263],{"type":44,"tag":100,"props":51264,"children":51265},{"style":400},[51266],{"type":50,"value":5558},{"type":44,"tag":100,"props":51268,"children":51269},{"class":102,"line":3094},[51270,51274,51278,51282],{"type":44,"tag":100,"props":51271,"children":51272},{"style":113},[51273],{"type":50,"value":5574},{"type":44,"tag":100,"props":51275,"children":51276},{"style":400},[51277],{"type":50,"value":5579},{"type":44,"tag":100,"props":51279,"children":51280},{"style":390},[51281],{"type":50,"value":408},{"type":44,"tag":100,"props":51283,"children":51284},{"style":400},[51285],{"type":50,"value":10022},{"type":44,"tag":100,"props":51287,"children":51288},{"class":102,"line":3108},[51289,51293,51297,51301],{"type":44,"tag":100,"props":51290,"children":51291},{"style":390},[51292],{"type":50,"value":2524},{"type":44,"tag":100,"props":51294,"children":51295},{"style":113},[51296],{"type":50,"value":781},{"type":44,"tag":100,"props":51298,"children":51299},{"style":400},[51300],{"type":50,"value":786},{"type":44,"tag":100,"props":51302,"children":51303},{"style":113},[51304],{"type":50,"value":5671},{"type":44,"tag":100,"props":51306,"children":51307},{"class":102,"line":3147},[51308,51312],{"type":44,"tag":100,"props":51309,"children":51310},{"style":390},[51311],{"type":50,"value":2725},{"type":44,"tag":100,"props":51313,"children":51314},{"style":400},[51315],{"type":50,"value":10053},{"type":44,"tag":100,"props":51317,"children":51318},{"class":102,"line":3188},[51319],{"type":44,"tag":100,"props":51320,"children":51321},{"style":400},[51322],{"type":50,"value":1464},{"type":44,"tag":100,"props":51324,"children":51325},{"class":102,"line":6054},[51326],{"type":44,"tag":100,"props":51327,"children":51328},{"style":390},[51329],{"type":50,"value":393},{"type":44,"tag":100,"props":51331,"children":51332},{"class":102,"line":6081},[51333,51337,51341,51345,51349],{"type":44,"tag":100,"props":51334,"children":51335},{"style":113},[51336],{"type":50,"value":10075},{"type":44,"tag":100,"props":51338,"children":51339},{"style":400},[51340],{"type":50,"value":786},{"type":44,"tag":100,"props":51342,"children":51343},{"style":113},[51344],{"type":50,"value":2487},{"type":44,"tag":100,"props":51346,"children":51347},{"style":390},[51348],{"type":50,"value":1661},{"type":44,"tag":100,"props":51350,"children":51351},{"style":400},[51352],{"type":50,"value":10092},{"type":44,"tag":100,"props":51354,"children":51355},{"class":102,"line":6089},[51356,51360,51364,51368],{"type":44,"tag":100,"props":51357,"children":51358},{"style":113},[51359],{"type":50,"value":10075},{"type":44,"tag":100,"props":51361,"children":51362},{"style":400},[51363],{"type":50,"value":786},{"type":44,"tag":100,"props":51365,"children":51366},{"style":113},[51367],{"type":50,"value":10108},{"type":44,"tag":100,"props":51369,"children":51370},{"style":400},[51371],{"type":50,"value":2431},{"type":44,"tag":100,"props":51373,"children":51374},{"class":102,"line":6097},[51375,51379,51383,51387],{"type":44,"tag":100,"props":51376,"children":51377},{"style":113},[51378],{"type":50,"value":10075},{"type":44,"tag":100,"props":51380,"children":51381},{"style":400},[51382],{"type":50,"value":786},{"type":44,"tag":100,"props":51384,"children":51385},{"style":113},[51386],{"type":50,"value":10128},{"type":44,"tag":100,"props":51388,"children":51389},{"style":400},[51390],{"type":50,"value":2431},{"type":44,"tag":100,"props":51392,"children":51393},{"class":102,"line":6123},[51394,51398,51402,51406],{"type":44,"tag":100,"props":51395,"children":51396},{"style":113},[51397],{"type":50,"value":10075},{"type":44,"tag":100,"props":51399,"children":51400},{"style":400},[51401],{"type":50,"value":786},{"type":44,"tag":100,"props":51403,"children":51404},{"style":113},[51405],{"type":50,"value":10148},{"type":44,"tag":100,"props":51407,"children":51408},{"style":400},[51409],{"type":50,"value":2431},{"type":44,"tag":100,"props":51411,"children":51412},{"class":102,"line":6143},[51413,51417,51421,51425],{"type":44,"tag":100,"props":51414,"children":51415},{"style":113},[51416],{"type":50,"value":10075},{"type":44,"tag":100,"props":51418,"children":51419},{"style":400},[51420],{"type":50,"value":786},{"type":44,"tag":100,"props":51422,"children":51423},{"style":113},[51424],{"type":50,"value":10168},{"type":44,"tag":100,"props":51426,"children":51427},{"style":400},[51428],{"type":50,"value":2431},{"type":44,"tag":100,"props":51430,"children":51431},{"class":102,"line":6164},[51432,51436,51440,51444],{"type":44,"tag":100,"props":51433,"children":51434},{"style":113},[51435],{"type":50,"value":10075},{"type":44,"tag":100,"props":51437,"children":51438},{"style":400},[51439],{"type":50,"value":786},{"type":44,"tag":100,"props":51441,"children":51442},{"style":113},[51443],{"type":50,"value":10188},{"type":44,"tag":100,"props":51445,"children":51446},{"style":400},[51447],{"type":50,"value":2431},{"type":44,"tag":100,"props":51449,"children":51450},{"class":102,"line":6185},[51451,51455,51459,51463],{"type":44,"tag":100,"props":51452,"children":51453},{"style":113},[51454],{"type":50,"value":10200},{"type":44,"tag":100,"props":51456,"children":51457},{"style":400},[51458],{"type":50,"value":786},{"type":44,"tag":100,"props":51460,"children":51461},{"style":113},[51462],{"type":50,"value":10209},{"type":44,"tag":100,"props":51464,"children":51465},{"style":400},[51466],{"type":50,"value":2431},{"type":44,"tag":100,"props":51468,"children":51469},{"class":102,"line":6206},[51470,51474,51478,51482],{"type":44,"tag":100,"props":51471,"children":51472},{"style":113},[51473],{"type":50,"value":10200},{"type":44,"tag":100,"props":51475,"children":51476},{"style":400},[51477],{"type":50,"value":786},{"type":44,"tag":100,"props":51479,"children":51480},{"style":113},[51481],{"type":50,"value":10229},{"type":44,"tag":100,"props":51483,"children":51484},{"style":400},[51485],{"type":50,"value":2431},{"type":44,"tag":100,"props":51487,"children":51488},{"class":102,"line":6227},[51489,51493,51497,51501],{"type":44,"tag":100,"props":51490,"children":51491},{"style":113},[51492],{"type":50,"value":10241},{"type":44,"tag":100,"props":51494,"children":51495},{"style":400},[51496],{"type":50,"value":786},{"type":44,"tag":100,"props":51498,"children":51499},{"style":113},[51500],{"type":50,"value":6242},{"type":44,"tag":100,"props":51502,"children":51503},{"style":400},[51504],{"type":50,"value":2431},{"type":44,"tag":100,"props":51506,"children":51507},{"class":102,"line":6249},[51508,51512,51516,51520],{"type":44,"tag":100,"props":51509,"children":51510},{"style":113},[51511],{"type":50,"value":10241},{"type":44,"tag":100,"props":51513,"children":51514},{"style":400},[51515],{"type":50,"value":786},{"type":44,"tag":100,"props":51517,"children":51518},{"style":113},[51519],{"type":50,"value":10269},{"type":44,"tag":100,"props":51521,"children":51522},{"style":400},[51523],{"type":50,"value":2431},{"type":44,"tag":100,"props":51525,"children":51526},{"class":102,"line":6270},[51527,51531,51535,51539,51543,51547,51551,51555,51559,51563,51567,51571,51575,51579,51583,51587,51591,51595,51599,51603,51607],{"type":44,"tag":100,"props":51528,"children":51529},{"style":113},[51530],{"type":50,"value":654},{"type":44,"tag":100,"props":51532,"children":51533},{"style":400},[51534],{"type":50,"value":427},{"type":44,"tag":100,"props":51536,"children":51537},{"style":113},[51538],{"type":50,"value":10289},{"type":44,"tag":100,"props":51540,"children":51541},{"style":400},[51542],{"type":50,"value":786},{"type":44,"tag":100,"props":51544,"children":51545},{"style":113},[51546],{"type":50,"value":10298},{"type":44,"tag":100,"props":51548,"children":51549},{"style":390},[51550],{"type":50,"value":6319},{"type":44,"tag":100,"props":51552,"children":51553},{"style":113},[51554],{"type":50,"value":1262},{"type":44,"tag":100,"props":51556,"children":51557},{"style":400},[51558],{"type":50,"value":427},{"type":44,"tag":100,"props":51560,"children":51561},{"style":113},[51562],{"type":50,"value":10289},{"type":44,"tag":100,"props":51564,"children":51565},{"style":400},[51566],{"type":50,"value":786},{"type":44,"tag":100,"props":51568,"children":51569},{"style":113},[51570],{"type":50,"value":6242},{"type":44,"tag":100,"props":51572,"children":51573},{"style":400},[51574],{"type":50,"value":750},{"type":44,"tag":100,"props":51576,"children":51577},{"style":113},[51578],{"type":50,"value":679},{"type":44,"tag":100,"props":51580,"children":51581},{"style":400},[51582],{"type":50,"value":437},{"type":44,"tag":100,"props":51584,"children":51585},{"style":390},[51586],{"type":50,"value":432},{"type":44,"tag":100,"props":51588,"children":51589},{"style":113},[51590],{"type":50,"value":745},{"type":44,"tag":100,"props":51592,"children":51593},{"style":400},[51594],{"type":50,"value":750},{"type":44,"tag":100,"props":51596,"children":51597},{"style":113},[51598],{"type":50,"value":689},{"type":44,"tag":100,"props":51600,"children":51601},{"style":400},[51602],{"type":50,"value":437},{"type":44,"tag":100,"props":51604,"children":51605},{"style":390},[51606],{"type":50,"value":408},{"type":44,"tag":100,"props":51608,"children":51609},{"style":400},[51610],{"type":50,"value":10363},{"type":44,"tag":100,"props":51612,"children":51613},{"class":102,"line":6292},[51614,51618,51622,51626],{"type":44,"tag":100,"props":51615,"children":51616},{"style":113},[51617],{"type":50,"value":10371},{"type":44,"tag":100,"props":51619,"children":51620},{"style":400},[51621],{"type":50,"value":786},{"type":44,"tag":100,"props":51623,"children":51624},{"style":113},[51625],{"type":50,"value":10380},{"type":44,"tag":100,"props":51627,"children":51628},{"style":400},[51629],{"type":50,"value":2431},{"type":44,"tag":100,"props":51631,"children":51632},{"class":102,"line":6371},[51633,51637,51641,51645,51649,51653,51657,51661,51665,51669,51673,51677,51681,51685,51689,51693,51697,51701],{"type":44,"tag":100,"props":51634,"children":51635},{"style":113},[51636],{"type":50,"value":654},{"type":44,"tag":100,"props":51638,"children":51639},{"style":400},[51640],{"type":50,"value":427},{"type":44,"tag":100,"props":51642,"children":51643},{"style":113},[51644],{"type":50,"value":10400},{"type":44,"tag":100,"props":51646,"children":51647},{"style":400},[51648],{"type":50,"value":786},{"type":44,"tag":100,"props":51650,"children":51651},{"style":113},[51652],{"type":50,"value":10108},{"type":44,"tag":100,"props":51654,"children":51655},{"style":390},[51656],{"type":50,"value":6319},{"type":44,"tag":100,"props":51658,"children":51659},{"style":113},[51660],{"type":50,"value":1262},{"type":44,"tag":100,"props":51662,"children":51663},{"style":400},[51664],{"type":50,"value":427},{"type":44,"tag":100,"props":51666,"children":51667},{"style":113},[51668],{"type":50,"value":10425},{"type":44,"tag":100,"props":51670,"children":51671},{"style":400},[51672],{"type":50,"value":786},{"type":44,"tag":100,"props":51674,"children":51675},{"style":113},[51676],{"type":50,"value":10380},{"type":44,"tag":100,"props":51678,"children":51679},{"style":400},[51680],{"type":50,"value":750},{"type":44,"tag":100,"props":51682,"children":51683},{"style":113},[51684],{"type":50,"value":679},{"type":44,"tag":100,"props":51686,"children":51687},{"style":400},[51688],{"type":50,"value":684},{"type":44,"tag":100,"props":51690,"children":51691},{"style":113},[51692],{"type":50,"value":689},{"type":44,"tag":100,"props":51694,"children":51695},{"style":400},[51696],{"type":50,"value":437},{"type":44,"tag":100,"props":51698,"children":51699},{"style":390},[51700],{"type":50,"value":408},{"type":44,"tag":100,"props":51702,"children":51703},{"style":400},[51704],{"type":50,"value":10462},{"type":44,"tag":100,"props":51706,"children":51707},{"class":102,"line":6448},[51708,51712,51716,51720,51724],{"type":44,"tag":100,"props":51709,"children":51710},{"style":390},[51711],{"type":50,"value":776},{"type":44,"tag":100,"props":51713,"children":51714},{"style":113},[51715],{"type":50,"value":10474},{"type":44,"tag":100,"props":51717,"children":51718},{"style":400},[51719],{"type":50,"value":786},{"type":44,"tag":100,"props":51721,"children":51722},{"style":113},[51723],{"type":50,"value":10483},{"type":44,"tag":100,"props":51725,"children":51726},{"style":400},[51727],{"type":50,"value":10488},{"type":44,"tag":100,"props":51729,"children":51730},{"class":102,"line":6537},[51731,51735,51739,51743,51747,51751,51755,51759,51763,51767],{"type":44,"tag":100,"props":51732,"children":51733},{"style":390},[51734],{"type":50,"value":6556},{"type":44,"tag":100,"props":51736,"children":51737},{"style":400},[51738],{"type":50,"value":10500},{"type":44,"tag":100,"props":51740,"children":51741},{"style":390},[51742],{"type":50,"value":10505},{"type":44,"tag":100,"props":51744,"children":51745},{"style":113},[51746],{"type":50,"value":10510},{"type":44,"tag":100,"props":51748,"children":51749},{"style":400},[51750],{"type":50,"value":786},{"type":44,"tag":100,"props":51752,"children":51753},{"style":113},[51754],{"type":50,"value":2487},{"type":44,"tag":100,"props":51756,"children":51757},{"style":390},[51758],{"type":50,"value":2591},{"type":44,"tag":100,"props":51760,"children":51761},{"style":113},[51762],{"type":50,"value":10527},{"type":44,"tag":100,"props":51764,"children":51765},{"style":400},[51766],{"type":50,"value":786},{"type":44,"tag":100,"props":51768,"children":51769},{"style":113},[51770],{"type":50,"value":6686},{"type":44,"tag":100,"props":51772,"children":51773},{"class":102,"line":6550},[51774,51778,51782,51786,51790,51794,51798,51802,51806,51810],{"type":44,"tag":100,"props":51775,"children":51776},{"style":390},[51777],{"type":50,"value":6556},{"type":44,"tag":100,"props":51779,"children":51780},{"style":400},[51781],{"type":50,"value":10547},{"type":44,"tag":100,"props":51783,"children":51784},{"style":390},[51785],{"type":50,"value":10505},{"type":44,"tag":100,"props":51787,"children":51788},{"style":113},[51789],{"type":50,"value":10510},{"type":44,"tag":100,"props":51791,"children":51792},{"style":400},[51793],{"type":50,"value":786},{"type":44,"tag":100,"props":51795,"children":51796},{"style":113},[51797],{"type":50,"value":2487},{"type":44,"tag":100,"props":51799,"children":51800},{"style":390},[51801],{"type":50,"value":2591},{"type":44,"tag":100,"props":51803,"children":51804},{"style":113},[51805],{"type":50,"value":10572},{"type":44,"tag":100,"props":51807,"children":51808},{"style":400},[51809],{"type":50,"value":786},{"type":44,"tag":100,"props":51811,"children":51812},{"style":113},[51813],{"type":50,"value":6024},{"type":44,"tag":100,"props":51815,"children":51816},{"class":102,"line":6564},[51817,51821,51825,51829,51833,51837,51841,51845,51849,51853],{"type":44,"tag":100,"props":51818,"children":51819},{"style":390},[51820],{"type":50,"value":6556},{"type":44,"tag":100,"props":51822,"children":51823},{"style":400},[51824],{"type":50,"value":10592},{"type":44,"tag":100,"props":51826,"children":51827},{"style":390},[51828],{"type":50,"value":10505},{"type":44,"tag":100,"props":51830,"children":51831},{"style":113},[51832],{"type":50,"value":10510},{"type":44,"tag":100,"props":51834,"children":51835},{"style":400},[51836],{"type":50,"value":786},{"type":44,"tag":100,"props":51838,"children":51839},{"style":113},[51840],{"type":50,"value":2487},{"type":44,"tag":100,"props":51842,"children":51843},{"style":390},[51844],{"type":50,"value":2591},{"type":44,"tag":100,"props":51846,"children":51847},{"style":113},[51848],{"type":50,"value":10617},{"type":44,"tag":100,"props":51850,"children":51851},{"style":400},[51852],{"type":50,"value":786},{"type":44,"tag":100,"props":51854,"children":51855},{"style":113},[51856],{"type":50,"value":10626},{"type":44,"tag":100,"props":51858,"children":51859},{"class":102,"line":6601},[51860,51864,51868],{"type":44,"tag":100,"props":51861,"children":51862},{"style":390},[51863],{"type":50,"value":814},{"type":44,"tag":100,"props":51865,"children":51866},{"style":400},[51867],{"type":50,"value":10638},{"type":44,"tag":100,"props":51869,"children":51870},{"style":390},[51871],{"type":50,"value":10643},{"type":44,"tag":203,"props":51873,"children":51874},{"v-slot:snowflake":7},[51875],{"type":44,"tag":90,"props":51876,"children":51877},{"className":208,"code":11895,"language":210,"meta":7,"style":7},[51878],{"type":44,"tag":81,"props":51879,"children":51880},{"__ignoreMap":7},[51881,51888,51895,51902,51909,51916,51923,51930,51937,51944,51951,51958,51965,51972,51979,51986,51993,52000,52007,52014,52033,52040,52071,52158,52245,52268,52291,52326,52353,52380,52387,52402,52409,52416,52439,52458,52477,52496,52507,52514,52529,52536,52543,52562,52581,52592,52599,52606,52629,52648,52667,52686,52705,52724,52743,52762,52781,52800,52887,52906,52981,53004,53047,53090,53133],{"type":44,"tag":100,"props":51882,"children":51883},{"class":102,"line":103},[51884],{"type":44,"tag":100,"props":51885,"children":51886},{"style":220},[51887],{"type":50,"value":223},{"type":44,"tag":100,"props":51889,"children":51890},{"class":102,"line":226},[51891],{"type":44,"tag":100,"props":51892,"children":51893},{"style":220},[51894],{"type":50,"value":9404},{"type":44,"tag":100,"props":51896,"children":51897},{"class":102,"line":235},[51898],{"type":44,"tag":100,"props":51899,"children":51900},{"style":220},[51901],{"type":50,"value":241},{"type":44,"tag":100,"props":51903,"children":51904},{"class":102,"line":24},[51905],{"type":44,"tag":100,"props":51906,"children":51907},{"style":220},[51908],{"type":50,"value":249},{"type":44,"tag":100,"props":51910,"children":51911},{"class":102,"line":252},[51912],{"type":44,"tag":100,"props":51913,"children":51914},{"style":220},[51915],{"type":50,"value":258},{"type":44,"tag":100,"props":51917,"children":51918},{"class":102,"line":261},[51919],{"type":44,"tag":100,"props":51920,"children":51921},{"style":220},[51922],{"type":50,"value":267},{"type":44,"tag":100,"props":51924,"children":51925},{"class":102,"line":270},[51926],{"type":44,"tag":100,"props":51927,"children":51928},{"style":220},[51929],{"type":50,"value":9440},{"type":44,"tag":100,"props":51931,"children":51932},{"class":102,"line":279},[51933],{"type":44,"tag":100,"props":51934,"children":51935},{"style":220},[51936],{"type":50,"value":2329},{"type":44,"tag":100,"props":51938,"children":51939},{"class":102,"line":288},[51940],{"type":44,"tag":100,"props":51941,"children":51942},{"style":220},[51943],{"type":50,"value":276},{"type":44,"tag":100,"props":51945,"children":51946},{"class":102,"line":297},[51947],{"type":44,"tag":100,"props":51948,"children":51949},{"style":220},[51950],{"type":50,"value":5466},{"type":44,"tag":100,"props":51952,"children":51953},{"class":102,"line":306},[51954],{"type":44,"tag":100,"props":51955,"children":51956},{"style":220},[51957],{"type":50,"value":5458},{"type":44,"tag":100,"props":51959,"children":51960},{"class":102,"line":315},[51961],{"type":44,"tag":100,"props":51962,"children":51963},{"style":220},[51964],{"type":50,"value":285},{"type":44,"tag":100,"props":51966,"children":51967},{"class":102,"line":324},[51968],{"type":44,"tag":100,"props":51969,"children":51970},{"style":220},[51971],{"type":50,"value":9483},{"type":44,"tag":100,"props":51973,"children":51974},{"class":102,"line":333},[51975],{"type":44,"tag":100,"props":51976,"children":51977},{"style":220},[51978],{"type":50,"value":303},{"type":44,"tag":100,"props":51980,"children":51981},{"class":102,"line":11},[51982],{"type":44,"tag":100,"props":51983,"children":51984},{"style":220},[51985],{"type":50,"value":312},{"type":44,"tag":100,"props":51987,"children":51988},{"class":102,"line":350},[51989],{"type":44,"tag":100,"props":51990,"children":51991},{"style":220},[51992],{"type":50,"value":321},{"type":44,"tag":100,"props":51994,"children":51995},{"class":102,"line":359},[51996],{"type":44,"tag":100,"props":51997,"children":51998},{"style":220},[51999],{"type":50,"value":330},{"type":44,"tag":100,"props":52001,"children":52002},{"class":102,"line":368},[52003],{"type":44,"tag":100,"props":52004,"children":52005},{"style":220},[52006],{"type":50,"value":374},{"type":44,"tag":100,"props":52008,"children":52009},{"class":102,"line":377},[52010],{"type":44,"tag":100,"props":52011,"children":52012},{"emptyLinePlaceholder":23},[52013],{"type":50,"value":383},{"type":44,"tag":100,"props":52015,"children":52016},{"class":102,"line":386},[52017,52021,52025,52029],{"type":44,"tag":100,"props":52018,"children":52019},{"style":390},[52020],{"type":50,"value":2387},{"type":44,"tag":100,"props":52022,"children":52023},{"style":400},[52024],{"type":50,"value":9537},{"type":44,"tag":100,"props":52026,"children":52027},{"style":390},[52028],{"type":50,"value":408},{"type":44,"tag":100,"props":52030,"children":52031},{"style":400},[52032],{"type":50,"value":2401},{"type":44,"tag":100,"props":52034,"children":52035},{"class":102,"line":396},[52036],{"type":44,"tag":100,"props":52037,"children":52038},{"style":390},[52039],{"type":50,"value":2409},{"type":44,"tag":100,"props":52041,"children":52042},{"class":102,"line":416},[52043,52047,52051,52055,52059,52063,52067],{"type":44,"tag":100,"props":52044,"children":52045},{"style":113},[52046],{"type":50,"value":2417},{"type":44,"tag":100,"props":52048,"children":52049},{"style":400},[52050],{"type":50,"value":786},{"type":44,"tag":100,"props":52052,"children":52053},{"style":113},[52054],{"type":50,"value":2487},{"type":44,"tag":100,"props":52056,"children":52057},{"style":400},[52058],{"type":50,"value":12078},{"type":44,"tag":100,"props":52060,"children":52061},{"style":390},[52062],{"type":50,"value":1656},{"type":44,"tag":100,"props":52064,"children":52065},{"style":390},[52066],{"type":50,"value":1661},{"type":44,"tag":100,"props":52068,"children":52069},{"style":400},[52070],{"type":50,"value":413},{"type":44,"tag":100,"props":52072,"children":52073},{"class":102,"line":449},[52074,52078,52082,52086,52090,52094,52098,52102,52106,52110,52114,52118,52122,52126,52130,52134,52138,52142,52146,52150,52154],{"type":44,"tag":100,"props":52075,"children":52076},{"style":113},[52077],{"type":50,"value":12098},{"type":44,"tag":100,"props":52079,"children":52080},{"style":400},[52081],{"type":50,"value":427},{"type":44,"tag":100,"props":52083,"children":52084},{"style":390},[52085],{"type":50,"value":545},{"type":44,"tag":100,"props":52087,"children":52088},{"style":390},[52089],{"type":50,"value":550},{"type":44,"tag":100,"props":52091,"children":52092},{"style":113},[52093],{"type":50,"value":2596},{"type":44,"tag":100,"props":52095,"children":52096},{"style":400},[52097],{"type":50,"value":786},{"type":44,"tag":100,"props":52099,"children":52100},{"style":113},[52101],{"type":50,"value":2453},{"type":44,"tag":100,"props":52103,"children":52104},{"style":400},[52105],{"type":50,"value":12078},{"type":44,"tag":100,"props":52107,"children":52108},{"style":390},[52109],{"type":50,"value":1656},{"type":44,"tag":100,"props":52111,"children":52112},{"style":390},[52113],{"type":50,"value":2591},{"type":44,"tag":100,"props":52115,"children":52116},{"style":113},[52117],{"type":50,"value":1426},{"type":44,"tag":100,"props":52119,"children":52120},{"style":400},[52121],{"type":50,"value":786},{"type":44,"tag":100,"props":52123,"children":52124},{"style":113},[52125],{"type":50,"value":2487},{"type":44,"tag":100,"props":52127,"children":52128},{"style":400},[52129],{"type":50,"value":12078},{"type":44,"tag":100,"props":52131,"children":52132},{"style":390},[52133],{"type":50,"value":1656},{"type":44,"tag":100,"props":52135,"children":52136},{"style":390},[52137],{"type":50,"value":568},{"type":44,"tag":100,"props":52139,"children":52140},{"style":113},[52141],{"type":50,"value":1733},{"type":44,"tag":100,"props":52143,"children":52144},{"style":390},[52145],{"type":50,"value":588},{"type":44,"tag":100,"props":52147,"children":52148},{"style":400},[52149],{"type":50,"value":437},{"type":44,"tag":100,"props":52151,"children":52152},{"style":390},[52153],{"type":50,"value":408},{"type":44,"tag":100,"props":52155,"children":52156},{"style":400},[52157],{"type":50,"value":9642},{"type":44,"tag":100,"props":52159,"children":52160},{"class":102,"line":481},[52161,52165,52169,52173,52177,52181,52185,52189,52193,52197,52201,52205,52209,52213,52217,52221,52225,52229,52233,52237,52241],{"type":44,"tag":100,"props":52162,"children":52163},{"style":113},[52164],{"type":50,"value":12098},{"type":44,"tag":100,"props":52166,"children":52167},{"style":400},[52168],{"type":50,"value":427},{"type":44,"tag":100,"props":52170,"children":52171},{"style":390},[52172],{"type":50,"value":545},{"type":44,"tag":100,"props":52174,"children":52175},{"style":390},[52176],{"type":50,"value":550},{"type":44,"tag":100,"props":52178,"children":52179},{"style":113},[52180],{"type":50,"value":2596},{"type":44,"tag":100,"props":52182,"children":52183},{"style":400},[52184],{"type":50,"value":786},{"type":44,"tag":100,"props":52186,"children":52187},{"style":113},[52188],{"type":50,"value":2453},{"type":44,"tag":100,"props":52190,"children":52191},{"style":400},[52192],{"type":50,"value":12078},{"type":44,"tag":100,"props":52194,"children":52195},{"style":390},[52196],{"type":50,"value":1656},{"type":44,"tag":100,"props":52198,"children":52199},{"style":390},[52200],{"type":50,"value":12222},{"type":44,"tag":100,"props":52202,"children":52203},{"style":113},[52204],{"type":50,"value":1426},{"type":44,"tag":100,"props":52206,"children":52207},{"style":400},[52208],{"type":50,"value":786},{"type":44,"tag":100,"props":52210,"children":52211},{"style":113},[52212],{"type":50,"value":2487},{"type":44,"tag":100,"props":52214,"children":52215},{"style":400},[52216],{"type":50,"value":12078},{"type":44,"tag":100,"props":52218,"children":52219},{"style":390},[52220],{"type":50,"value":1656},{"type":44,"tag":100,"props":52222,"children":52223},{"style":390},[52224],{"type":50,"value":568},{"type":44,"tag":100,"props":52226,"children":52227},{"style":113},[52228],{"type":50,"value":1733},{"type":44,"tag":100,"props":52230,"children":52231},{"style":390},[52232],{"type":50,"value":588},{"type":44,"tag":100,"props":52234,"children":52235},{"style":400},[52236],{"type":50,"value":437},{"type":44,"tag":100,"props":52238,"children":52239},{"style":390},[52240],{"type":50,"value":408},{"type":44,"tag":100,"props":52242,"children":52243},{"style":400},[52244],{"type":50,"value":9699},{"type":44,"tag":100,"props":52246,"children":52247},{"class":102,"line":508},[52248,52252,52256,52260,52264],{"type":44,"tag":100,"props":52249,"children":52250},{"style":390},[52251],{"type":50,"value":2524},{"type":44,"tag":100,"props":52253,"children":52254},{"style":113},[52255],{"type":50,"value":781},{"type":44,"tag":100,"props":52257,"children":52258},{"style":400},[52259],{"type":50,"value":786},{"type":44,"tag":100,"props":52261,"children":52262},{"style":113},[52263],{"type":50,"value":1408},{"type":44,"tag":100,"props":52265,"children":52266},{"style":400},[52267],{"type":50,"value":1413},{"type":44,"tag":100,"props":52269,"children":52270},{"class":102,"line":531},[52271,52275,52279,52283,52287],{"type":44,"tag":100,"props":52272,"children":52273},{"style":390},[52274],{"type":50,"value":9730},{"type":44,"tag":100,"props":52276,"children":52277},{"style":113},[52278],{"type":50,"value":781},{"type":44,"tag":100,"props":52280,"children":52281},{"style":400},[52282],{"type":50,"value":786},{"type":44,"tag":100,"props":52284,"children":52285},{"style":113},[52286],{"type":50,"value":2561},{"type":44,"tag":100,"props":52288,"children":52289},{"style":400},[52290],{"type":50,"value":2566},{"type":44,"tag":100,"props":52292,"children":52293},{"class":102,"line":604},[52294,52298,52302,52306,52310,52314,52318,52322],{"type":44,"tag":100,"props":52295,"children":52296},{"style":390},[52297],{"type":50,"value":2574},{"type":44,"tag":100,"props":52299,"children":52300},{"style":113},[52301],{"type":50,"value":1426},{"type":44,"tag":100,"props":52303,"children":52304},{"style":400},[52305],{"type":50,"value":786},{"type":44,"tag":100,"props":52307,"children":52308},{"style":113},[52309],{"type":50,"value":2426},{"type":44,"tag":100,"props":52311,"children":52312},{"style":390},[52313],{"type":50,"value":2591},{"type":44,"tag":100,"props":52315,"children":52316},{"style":113},[52317],{"type":50,"value":2596},{"type":44,"tag":100,"props":52319,"children":52320},{"style":400},[52321],{"type":50,"value":786},{"type":44,"tag":100,"props":52323,"children":52324},{"style":113},[52325],{"type":50,"value":2605},{"type":44,"tag":100,"props":52327,"children":52328},{"class":102,"line":626},[52329,52333,52337,52341,52345,52349],{"type":44,"tag":100,"props":52330,"children":52331},{"style":390},[52332],{"type":50,"value":2613},{"type":44,"tag":100,"props":52334,"children":52335},{"style":113},[52336],{"type":50,"value":1426},{"type":44,"tag":100,"props":52338,"children":52339},{"style":400},[52340],{"type":50,"value":786},{"type":44,"tag":100,"props":52342,"children":52343},{"style":113},[52344],{"type":50,"value":2626},{"type":44,"tag":100,"props":52346,"children":52347},{"style":390},[52348],{"type":50,"value":2591},{"type":44,"tag":100,"props":52350,"children":52351},{"style":119},[52352],{"type":50,"value":2635},{"type":44,"tag":100,"props":52354,"children":52355},{"class":102,"line":648},[52356,52360,52364,52368,52372,52376],{"type":44,"tag":100,"props":52357,"children":52358},{"style":390},[52359],{"type":50,"value":2725},{"type":44,"tag":100,"props":52361,"children":52362},{"style":113},[52363],{"type":50,"value":1426},{"type":44,"tag":100,"props":52365,"children":52366},{"style":400},[52367],{"type":50,"value":786},{"type":44,"tag":100,"props":52369,"children":52370},{"style":113},[52371],{"type":50,"value":2487},{"type":44,"tag":100,"props":52373,"children":52374},{"style":400},[52375],{"type":50,"value":12078},{"type":44,"tag":100,"props":52377,"children":52378},{"style":390},[52379],{"type":50,"value":2216},{"type":44,"tag":100,"props":52381,"children":52382},{"class":102,"line":705},[52383],{"type":44,"tag":100,"props":52384,"children":52385},{"style":400},[52386],{"type":50,"value":2643},{"type":44,"tag":100,"props":52388,"children":52389},{"class":102,"line":770},[52390,52394,52398],{"type":44,"tag":100,"props":52391,"children":52392},{"style":400},[52393],{"type":50,"value":9850},{"type":44,"tag":100,"props":52395,"children":52396},{"style":390},[52397],{"type":50,"value":408},{"type":44,"tag":100,"props":52399,"children":52400},{"style":400},[52401],{"type":50,"value":2401},{"type":44,"tag":100,"props":52403,"children":52404},{"class":102,"line":794},[52405],{"type":44,"tag":100,"props":52406,"children":52407},{"style":390},[52408],{"type":50,"value":2409},{"type":44,"tag":100,"props":52410,"children":52411},{"class":102,"line":808},[52412],{"type":44,"tag":100,"props":52413,"children":52414},{"style":400},[52415],{"type":50,"value":5721},{"type":44,"tag":100,"props":52417,"children":52418},{"class":102,"line":1484},[52419,52423,52427,52431,52435],{"type":44,"tag":100,"props":52420,"children":52421},{"style":113},[52422],{"type":50,"value":5574},{"type":44,"tag":100,"props":52424,"children":52425},{"style":400},[52426],{"type":50,"value":5740},{"type":44,"tag":100,"props":52428,"children":52429},{"style":390},[52430],{"type":50,"value":408},{"type":44,"tag":100,"props":52432,"children":52433},{"style":390},[52434],{"type":50,"value":5749},{"type":44,"tag":100,"props":52436,"children":52437},{"style":400},[52438],{"type":50,"value":2431},{"type":44,"tag":100,"props":52440,"children":52441},{"class":102,"line":2747},[52442,52446,52450,52454],{"type":44,"tag":100,"props":52443,"children":52444},{"style":113},[52445],{"type":50,"value":5574},{"type":44,"tag":100,"props":52447,"children":52448},{"style":400},[52449],{"type":50,"value":5765},{"type":44,"tag":100,"props":52451,"children":52452},{"style":390},[52453],{"type":50,"value":408},{"type":44,"tag":100,"props":52455,"children":52456},{"style":400},[52457],{"type":50,"value":9915},{"type":44,"tag":100,"props":52459,"children":52460},{"class":102,"line":2769},[52461,52465,52469,52473],{"type":44,"tag":100,"props":52462,"children":52463},{"style":113},[52464],{"type":50,"value":5574},{"type":44,"tag":100,"props":52466,"children":52467},{"style":400},[52468],{"type":50,"value":5786},{"type":44,"tag":100,"props":52470,"children":52471},{"style":390},[52472],{"type":50,"value":408},{"type":44,"tag":100,"props":52474,"children":52475},{"style":400},[52476],{"type":50,"value":5795},{"type":44,"tag":100,"props":52478,"children":52479},{"class":102,"line":2791},[52480,52484,52488,52492],{"type":44,"tag":100,"props":52481,"children":52482},{"style":390},[52483],{"type":50,"value":2524},{"type":44,"tag":100,"props":52485,"children":52486},{"style":113},[52487],{"type":50,"value":781},{"type":44,"tag":100,"props":52489,"children":52490},{"style":400},[52491],{"type":50,"value":786},{"type":44,"tag":100,"props":52493,"children":52494},{"style":113},[52495],{"type":50,"value":5815},{"type":44,"tag":100,"props":52497,"children":52498},{"class":102,"line":2856},[52499,52503],{"type":44,"tag":100,"props":52500,"children":52501},{"style":390},[52502],{"type":50,"value":2725},{"type":44,"tag":100,"props":52504,"children":52505},{"style":400},[52506],{"type":50,"value":9965},{"type":44,"tag":100,"props":52508,"children":52509},{"class":102,"line":2898},[52510],{"type":44,"tag":100,"props":52511,"children":52512},{"style":400},[52513],{"type":50,"value":2643},{"type":44,"tag":100,"props":52515,"children":52516},{"class":102,"line":2977},[52517,52521,52525],{"type":44,"tag":100,"props":52518,"children":52519},{"style":400},[52520],{"type":50,"value":9980},{"type":44,"tag":100,"props":52522,"children":52523},{"style":390},[52524],{"type":50,"value":408},{"type":44,"tag":100,"props":52526,"children":52527},{"style":400},[52528],{"type":50,"value":2401},{"type":44,"tag":100,"props":52530,"children":52531},{"class":102,"line":3015},[52532],{"type":44,"tag":100,"props":52533,"children":52534},{"style":390},[52535],{"type":50,"value":2409},{"type":44,"tag":100,"props":52537,"children":52538},{"class":102,"line":3081},[52539],{"type":44,"tag":100,"props":52540,"children":52541},{"style":400},[52542],{"type":50,"value":5558},{"type":44,"tag":100,"props":52544,"children":52545},{"class":102,"line":3094},[52546,52550,52554,52558],{"type":44,"tag":100,"props":52547,"children":52548},{"style":113},[52549],{"type":50,"value":5574},{"type":44,"tag":100,"props":52551,"children":52552},{"style":400},[52553],{"type":50,"value":5579},{"type":44,"tag":100,"props":52555,"children":52556},{"style":390},[52557],{"type":50,"value":408},{"type":44,"tag":100,"props":52559,"children":52560},{"style":400},[52561],{"type":50,"value":10022},{"type":44,"tag":100,"props":52563,"children":52564},{"class":102,"line":3108},[52565,52569,52573,52577],{"type":44,"tag":100,"props":52566,"children":52567},{"style":390},[52568],{"type":50,"value":2524},{"type":44,"tag":100,"props":52570,"children":52571},{"style":113},[52572],{"type":50,"value":781},{"type":44,"tag":100,"props":52574,"children":52575},{"style":400},[52576],{"type":50,"value":786},{"type":44,"tag":100,"props":52578,"children":52579},{"style":113},[52580],{"type":50,"value":5671},{"type":44,"tag":100,"props":52582,"children":52583},{"class":102,"line":3147},[52584,52588],{"type":44,"tag":100,"props":52585,"children":52586},{"style":390},[52587],{"type":50,"value":2725},{"type":44,"tag":100,"props":52589,"children":52590},{"style":400},[52591],{"type":50,"value":10053},{"type":44,"tag":100,"props":52593,"children":52594},{"class":102,"line":3188},[52595],{"type":44,"tag":100,"props":52596,"children":52597},{"style":400},[52598],{"type":50,"value":1464},{"type":44,"tag":100,"props":52600,"children":52601},{"class":102,"line":6054},[52602],{"type":44,"tag":100,"props":52603,"children":52604},{"style":390},[52605],{"type":50,"value":393},{"type":44,"tag":100,"props":52607,"children":52608},{"class":102,"line":6081},[52609,52613,52617,52621,52625],{"type":44,"tag":100,"props":52610,"children":52611},{"style":113},[52612],{"type":50,"value":10075},{"type":44,"tag":100,"props":52614,"children":52615},{"style":400},[52616],{"type":50,"value":786},{"type":44,"tag":100,"props":52618,"children":52619},{"style":113},[52620],{"type":50,"value":2487},{"type":44,"tag":100,"props":52622,"children":52623},{"style":390},[52624],{"type":50,"value":1661},{"type":44,"tag":100,"props":52626,"children":52627},{"style":400},[52628],{"type":50,"value":10092},{"type":44,"tag":100,"props":52630,"children":52631},{"class":102,"line":6089},[52632,52636,52640,52644],{"type":44,"tag":100,"props":52633,"children":52634},{"style":113},[52635],{"type":50,"value":10075},{"type":44,"tag":100,"props":52637,"children":52638},{"style":400},[52639],{"type":50,"value":786},{"type":44,"tag":100,"props":52641,"children":52642},{"style":113},[52643],{"type":50,"value":10108},{"type":44,"tag":100,"props":52645,"children":52646},{"style":400},[52647],{"type":50,"value":2431},{"type":44,"tag":100,"props":52649,"children":52650},{"class":102,"line":6097},[52651,52655,52659,52663],{"type":44,"tag":100,"props":52652,"children":52653},{"style":113},[52654],{"type":50,"value":10075},{"type":44,"tag":100,"props":52656,"children":52657},{"style":400},[52658],{"type":50,"value":786},{"type":44,"tag":100,"props":52660,"children":52661},{"style":113},[52662],{"type":50,"value":10128},{"type":44,"tag":100,"props":52664,"children":52665},{"style":400},[52666],{"type":50,"value":2431},{"type":44,"tag":100,"props":52668,"children":52669},{"class":102,"line":6123},[52670,52674,52678,52682],{"type":44,"tag":100,"props":52671,"children":52672},{"style":113},[52673],{"type":50,"value":10075},{"type":44,"tag":100,"props":52675,"children":52676},{"style":400},[52677],{"type":50,"value":786},{"type":44,"tag":100,"props":52679,"children":52680},{"style":113},[52681],{"type":50,"value":10148},{"type":44,"tag":100,"props":52683,"children":52684},{"style":400},[52685],{"type":50,"value":2431},{"type":44,"tag":100,"props":52687,"children":52688},{"class":102,"line":6143},[52689,52693,52697,52701],{"type":44,"tag":100,"props":52690,"children":52691},{"style":113},[52692],{"type":50,"value":10075},{"type":44,"tag":100,"props":52694,"children":52695},{"style":400},[52696],{"type":50,"value":786},{"type":44,"tag":100,"props":52698,"children":52699},{"style":113},[52700],{"type":50,"value":10168},{"type":44,"tag":100,"props":52702,"children":52703},{"style":400},[52704],{"type":50,"value":2431},{"type":44,"tag":100,"props":52706,"children":52707},{"class":102,"line":6164},[52708,52712,52716,52720],{"type":44,"tag":100,"props":52709,"children":52710},{"style":113},[52711],{"type":50,"value":10075},{"type":44,"tag":100,"props":52713,"children":52714},{"style":400},[52715],{"type":50,"value":786},{"type":44,"tag":100,"props":52717,"children":52718},{"style":113},[52719],{"type":50,"value":10188},{"type":44,"tag":100,"props":52721,"children":52722},{"style":400},[52723],{"type":50,"value":2431},{"type":44,"tag":100,"props":52725,"children":52726},{"class":102,"line":6185},[52727,52731,52735,52739],{"type":44,"tag":100,"props":52728,"children":52729},{"style":113},[52730],{"type":50,"value":10200},{"type":44,"tag":100,"props":52732,"children":52733},{"style":400},[52734],{"type":50,"value":786},{"type":44,"tag":100,"props":52736,"children":52737},{"style":113},[52738],{"type":50,"value":10209},{"type":44,"tag":100,"props":52740,"children":52741},{"style":400},[52742],{"type":50,"value":2431},{"type":44,"tag":100,"props":52744,"children":52745},{"class":102,"line":6206},[52746,52750,52754,52758],{"type":44,"tag":100,"props":52747,"children":52748},{"style":113},[52749],{"type":50,"value":10200},{"type":44,"tag":100,"props":52751,"children":52752},{"style":400},[52753],{"type":50,"value":786},{"type":44,"tag":100,"props":52755,"children":52756},{"style":113},[52757],{"type":50,"value":10229},{"type":44,"tag":100,"props":52759,"children":52760},{"style":400},[52761],{"type":50,"value":2431},{"type":44,"tag":100,"props":52763,"children":52764},{"class":102,"line":6227},[52765,52769,52773,52777],{"type":44,"tag":100,"props":52766,"children":52767},{"style":113},[52768],{"type":50,"value":10241},{"type":44,"tag":100,"props":52770,"children":52771},{"style":400},[52772],{"type":50,"value":786},{"type":44,"tag":100,"props":52774,"children":52775},{"style":113},[52776],{"type":50,"value":6242},{"type":44,"tag":100,"props":52778,"children":52779},{"style":400},[52780],{"type":50,"value":2431},{"type":44,"tag":100,"props":52782,"children":52783},{"class":102,"line":6249},[52784,52788,52792,52796],{"type":44,"tag":100,"props":52785,"children":52786},{"style":113},[52787],{"type":50,"value":10241},{"type":44,"tag":100,"props":52789,"children":52790},{"style":400},[52791],{"type":50,"value":786},{"type":44,"tag":100,"props":52793,"children":52794},{"style":113},[52795],{"type":50,"value":10269},{"type":44,"tag":100,"props":52797,"children":52798},{"style":400},[52799],{"type":50,"value":2431},{"type":44,"tag":100,"props":52801,"children":52802},{"class":102,"line":6270},[52803,52807,52811,52815,52819,52823,52827,52831,52835,52839,52843,52847,52851,52855,52859,52863,52867,52871,52875,52879,52883],{"type":44,"tag":100,"props":52804,"children":52805},{"style":113},[52806],{"type":50,"value":654},{"type":44,"tag":100,"props":52808,"children":52809},{"style":400},[52810],{"type":50,"value":427},{"type":44,"tag":100,"props":52812,"children":52813},{"style":113},[52814],{"type":50,"value":10289},{"type":44,"tag":100,"props":52816,"children":52817},{"style":400},[52818],{"type":50,"value":786},{"type":44,"tag":100,"props":52820,"children":52821},{"style":113},[52822],{"type":50,"value":10298},{"type":44,"tag":100,"props":52824,"children":52825},{"style":390},[52826],{"type":50,"value":6319},{"type":44,"tag":100,"props":52828,"children":52829},{"style":113},[52830],{"type":50,"value":1262},{"type":44,"tag":100,"props":52832,"children":52833},{"style":400},[52834],{"type":50,"value":427},{"type":44,"tag":100,"props":52836,"children":52837},{"style":113},[52838],{"type":50,"value":10289},{"type":44,"tag":100,"props":52840,"children":52841},{"style":400},[52842],{"type":50,"value":786},{"type":44,"tag":100,"props":52844,"children":52845},{"style":113},[52846],{"type":50,"value":6242},{"type":44,"tag":100,"props":52848,"children":52849},{"style":400},[52850],{"type":50,"value":750},{"type":44,"tag":100,"props":52852,"children":52853},{"style":113},[52854],{"type":50,"value":679},{"type":44,"tag":100,"props":52856,"children":52857},{"style":400},[52858],{"type":50,"value":437},{"type":44,"tag":100,"props":52860,"children":52861},{"style":390},[52862],{"type":50,"value":432},{"type":44,"tag":100,"props":52864,"children":52865},{"style":113},[52866],{"type":50,"value":745},{"type":44,"tag":100,"props":52868,"children":52869},{"style":400},[52870],{"type":50,"value":750},{"type":44,"tag":100,"props":52872,"children":52873},{"style":113},[52874],{"type":50,"value":689},{"type":44,"tag":100,"props":52876,"children":52877},{"style":400},[52878],{"type":50,"value":437},{"type":44,"tag":100,"props":52880,"children":52881},{"style":390},[52882],{"type":50,"value":408},{"type":44,"tag":100,"props":52884,"children":52885},{"style":400},[52886],{"type":50,"value":10363},{"type":44,"tag":100,"props":52888,"children":52889},{"class":102,"line":6292},[52890,52894,52898,52902],{"type":44,"tag":100,"props":52891,"children":52892},{"style":113},[52893],{"type":50,"value":10371},{"type":44,"tag":100,"props":52895,"children":52896},{"style":400},[52897],{"type":50,"value":786},{"type":44,"tag":100,"props":52899,"children":52900},{"style":113},[52901],{"type":50,"value":10380},{"type":44,"tag":100,"props":52903,"children":52904},{"style":400},[52905],{"type":50,"value":2431},{"type":44,"tag":100,"props":52907,"children":52908},{"class":102,"line":6371},[52909,52913,52917,52921,52925,52929,52933,52937,52941,52945,52949,52953,52957,52961,52965,52969,52973,52977],{"type":44,"tag":100,"props":52910,"children":52911},{"style":113},[52912],{"type":50,"value":654},{"type":44,"tag":100,"props":52914,"children":52915},{"style":400},[52916],{"type":50,"value":427},{"type":44,"tag":100,"props":52918,"children":52919},{"style":113},[52920],{"type":50,"value":10400},{"type":44,"tag":100,"props":52922,"children":52923},{"style":400},[52924],{"type":50,"value":786},{"type":44,"tag":100,"props":52926,"children":52927},{"style":113},[52928],{"type":50,"value":10108},{"type":44,"tag":100,"props":52930,"children":52931},{"style":390},[52932],{"type":50,"value":6319},{"type":44,"tag":100,"props":52934,"children":52935},{"style":113},[52936],{"type":50,"value":1262},{"type":44,"tag":100,"props":52938,"children":52939},{"style":400},[52940],{"type":50,"value":427},{"type":44,"tag":100,"props":52942,"children":52943},{"style":113},[52944],{"type":50,"value":10425},{"type":44,"tag":100,"props":52946,"children":52947},{"style":400},[52948],{"type":50,"value":786},{"type":44,"tag":100,"props":52950,"children":52951},{"style":113},[52952],{"type":50,"value":10380},{"type":44,"tag":100,"props":52954,"children":52955},{"style":400},[52956],{"type":50,"value":750},{"type":44,"tag":100,"props":52958,"children":52959},{"style":113},[52960],{"type":50,"value":679},{"type":44,"tag":100,"props":52962,"children":52963},{"style":400},[52964],{"type":50,"value":684},{"type":44,"tag":100,"props":52966,"children":52967},{"style":113},[52968],{"type":50,"value":689},{"type":44,"tag":100,"props":52970,"children":52971},{"style":400},[52972],{"type":50,"value":437},{"type":44,"tag":100,"props":52974,"children":52975},{"style":390},[52976],{"type":50,"value":408},{"type":44,"tag":100,"props":52978,"children":52979},{"style":400},[52980],{"type":50,"value":10462},{"type":44,"tag":100,"props":52982,"children":52983},{"class":102,"line":6448},[52984,52988,52992,52996,53000],{"type":44,"tag":100,"props":52985,"children":52986},{"style":390},[52987],{"type":50,"value":776},{"type":44,"tag":100,"props":52989,"children":52990},{"style":113},[52991],{"type":50,"value":10474},{"type":44,"tag":100,"props":52993,"children":52994},{"style":400},[52995],{"type":50,"value":786},{"type":44,"tag":100,"props":52997,"children":52998},{"style":113},[52999],{"type":50,"value":10483},{"type":44,"tag":100,"props":53001,"children":53002},{"style":400},[53003],{"type":50,"value":10488},{"type":44,"tag":100,"props":53005,"children":53006},{"class":102,"line":6537},[53007,53011,53015,53019,53023,53027,53031,53035,53039,53043],{"type":44,"tag":100,"props":53008,"children":53009},{"style":390},[53010],{"type":50,"value":6556},{"type":44,"tag":100,"props":53012,"children":53013},{"style":400},[53014],{"type":50,"value":10500},{"type":44,"tag":100,"props":53016,"children":53017},{"style":390},[53018],{"type":50,"value":10505},{"type":44,"tag":100,"props":53020,"children":53021},{"style":113},[53022],{"type":50,"value":10510},{"type":44,"tag":100,"props":53024,"children":53025},{"style":400},[53026],{"type":50,"value":786},{"type":44,"tag":100,"props":53028,"children":53029},{"style":113},[53030],{"type":50,"value":2487},{"type":44,"tag":100,"props":53032,"children":53033},{"style":390},[53034],{"type":50,"value":2591},{"type":44,"tag":100,"props":53036,"children":53037},{"style":113},[53038],{"type":50,"value":10527},{"type":44,"tag":100,"props":53040,"children":53041},{"style":400},[53042],{"type":50,"value":786},{"type":44,"tag":100,"props":53044,"children":53045},{"style":113},[53046],{"type":50,"value":6686},{"type":44,"tag":100,"props":53048,"children":53049},{"class":102,"line":6550},[53050,53054,53058,53062,53066,53070,53074,53078,53082,53086],{"type":44,"tag":100,"props":53051,"children":53052},{"style":390},[53053],{"type":50,"value":6556},{"type":44,"tag":100,"props":53055,"children":53056},{"style":400},[53057],{"type":50,"value":10547},{"type":44,"tag":100,"props":53059,"children":53060},{"style":390},[53061],{"type":50,"value":10505},{"type":44,"tag":100,"props":53063,"children":53064},{"style":113},[53065],{"type":50,"value":10510},{"type":44,"tag":100,"props":53067,"children":53068},{"style":400},[53069],{"type":50,"value":786},{"type":44,"tag":100,"props":53071,"children":53072},{"style":113},[53073],{"type":50,"value":2487},{"type":44,"tag":100,"props":53075,"children":53076},{"style":390},[53077],{"type":50,"value":2591},{"type":44,"tag":100,"props":53079,"children":53080},{"style":113},[53081],{"type":50,"value":10572},{"type":44,"tag":100,"props":53083,"children":53084},{"style":400},[53085],{"type":50,"value":786},{"type":44,"tag":100,"props":53087,"children":53088},{"style":113},[53089],{"type":50,"value":6024},{"type":44,"tag":100,"props":53091,"children":53092},{"class":102,"line":6564},[53093,53097,53101,53105,53109,53113,53117,53121,53125,53129],{"type":44,"tag":100,"props":53094,"children":53095},{"style":390},[53096],{"type":50,"value":6556},{"type":44,"tag":100,"props":53098,"children":53099},{"style":400},[53100],{"type":50,"value":10592},{"type":44,"tag":100,"props":53102,"children":53103},{"style":390},[53104],{"type":50,"value":10505},{"type":44,"tag":100,"props":53106,"children":53107},{"style":113},[53108],{"type":50,"value":10510},{"type":44,"tag":100,"props":53110,"children":53111},{"style":400},[53112],{"type":50,"value":786},{"type":44,"tag":100,"props":53114,"children":53115},{"style":113},[53116],{"type":50,"value":2487},{"type":44,"tag":100,"props":53118,"children":53119},{"style":390},[53120],{"type":50,"value":2591},{"type":44,"tag":100,"props":53122,"children":53123},{"style":113},[53124],{"type":50,"value":10617},{"type":44,"tag":100,"props":53126,"children":53127},{"style":400},[53128],{"type":50,"value":786},{"type":44,"tag":100,"props":53130,"children":53131},{"style":113},[53132],{"type":50,"value":10626},{"type":44,"tag":100,"props":53134,"children":53135},{"class":102,"line":6601},[53136,53140,53144],{"type":44,"tag":100,"props":53137,"children":53138},{"style":390},[53139],{"type":50,"value":814},{"type":44,"tag":100,"props":53141,"children":53142},{"style":400},[53143],{"type":50,"value":10638},{"type":44,"tag":100,"props":53145,"children":53146},{"style":390},[53147],{"type":50,"value":10643},{"type":44,"tag":124,"props":53149,"children":53150},{"id":13172},[53151],{"type":50,"value":13175},{"type":44,"tag":53,"props":53153,"children":53154},{},[53155],{"type":50,"value":13180},{"type":44,"tag":90,"props":53157,"children":53158},{"className":92,"code":13183,"language":94,"meta":7,"style":7},[53159],{"type":44,"tag":81,"props":53160,"children":53161},{"__ignoreMap":7},[53162],{"type":44,"tag":100,"props":53163,"children":53164},{"class":102,"line":103},[53165,53169,53173,53177,53181,53185,53189],{"type":44,"tag":100,"props":53166,"children":53167},{"style":107},[53168],{"type":50,"value":13195},{"type":44,"tag":100,"props":53170,"children":53171},{"style":119},[53172],{"type":50,"value":13200},{"type":44,"tag":100,"props":53174,"children":53175},{"style":113},[53176],{"type":50,"value":13205},{"type":44,"tag":100,"props":53178,"children":53179},{"style":119},[53180],{"type":50,"value":13210},{"type":44,"tag":100,"props":53182,"children":53183},{"style":113},[53184],{"type":50,"value":13215},{"type":44,"tag":100,"props":53186,"children":53187},{"style":119},[53188],{"type":50,"value":13220},{"type":44,"tag":100,"props":53190,"children":53191},{"style":119},[53192],{"type":50,"value":13225},{"type":44,"tag":53,"props":53194,"children":53195},{},[53196,53197,53201,53202,53206],{"type":50,"value":13230},{"type":44,"tag":13232,"props":53198,"children":53199},{"href":13234},[53200],{"type":50,"value":13237},{"type":50,"value":13239},{"type":44,"tag":13232,"props":53203,"children":53204},{"href":13234},[53205],{"type":50,"value":34},{"type":50,"value":13245},{"type":44,"tag":53,"props":53208,"children":53209},{},[53210],{"type":50,"value":13250},{"type":44,"tag":90,"props":53212,"children":53213},{"className":92,"code":13253,"language":94,"meta":7,"style":7},[53214],{"type":44,"tag":81,"props":53215,"children":53216},{"__ignoreMap":7},[53217],{"type":44,"tag":100,"props":53218,"children":53219},{"class":102,"line":103},[53220,53224,53228,53232,53236,53240,53244],{"type":44,"tag":100,"props":53221,"children":53222},{"style":107},[53223],{"type":50,"value":13195},{"type":44,"tag":100,"props":53225,"children":53226},{"style":119},[53227],{"type":50,"value":13200},{"type":44,"tag":100,"props":53229,"children":53230},{"style":113},[53231],{"type":50,"value":13205},{"type":44,"tag":100,"props":53233,"children":53234},{"style":119},[53235],{"type":50,"value":13277},{"type":44,"tag":100,"props":53237,"children":53238},{"style":113},[53239],{"type":50,"value":13215},{"type":44,"tag":100,"props":53241,"children":53242},{"style":119},[53243],{"type":50,"value":13286},{"type":44,"tag":100,"props":53245,"children":53246},{"style":119},[53247],{"type":50,"value":13225},{"type":44,"tag":53,"props":53249,"children":53250},{},[53251,53252,53257],{"type":50,"value":13295},{"type":44,"tag":81,"props":53253,"children":53255},{"className":53254},[],[53256],{"type":50,"value":13301},{"type":50,"value":13303},{"type":44,"tag":90,"props":53259,"children":53260},{"className":92,"code":13306,"language":94,"meta":7,"style":7},[53261],{"type":44,"tag":81,"props":53262,"children":53263},{"__ignoreMap":7},[53264],{"type":44,"tag":100,"props":53265,"children":53266},{"class":102,"line":103},[53267,53271,53275,53279,53283,53287,53291,53295],{"type":44,"tag":100,"props":53268,"children":53269},{"style":107},[53270],{"type":50,"value":13195},{"type":44,"tag":100,"props":53272,"children":53273},{"style":119},[53274],{"type":50,"value":13200},{"type":44,"tag":100,"props":53276,"children":53277},{"style":113},[53278],{"type":50,"value":13326},{"type":44,"tag":100,"props":53280,"children":53281},{"style":113},[53282],{"type":50,"value":13205},{"type":44,"tag":100,"props":53284,"children":53285},{"style":119},[53286],{"type":50,"value":13277},{"type":44,"tag":100,"props":53288,"children":53289},{"style":113},[53290],{"type":50,"value":13215},{"type":44,"tag":100,"props":53292,"children":53293},{"style":119},[53294],{"type":50,"value":13286},{"type":44,"tag":100,"props":53296,"children":53297},{"style":119},[53298],{"type":50,"value":13225},{"type":44,"tag":53,"props":53300,"children":53301},{},[53302],{"type":50,"value":13351},{"type":44,"tag":90,"props":53304,"children":53305},{"className":92,"code":13354,"language":94,"meta":7,"style":7},[53306],{"type":44,"tag":81,"props":53307,"children":53308},{"__ignoreMap":7},[53309],{"type":44,"tag":100,"props":53310,"children":53311},{"class":102,"line":103},[53312,53316,53320],{"type":44,"tag":100,"props":53313,"children":53314},{"style":107},[53315],{"type":50,"value":13195},{"type":44,"tag":100,"props":53317,"children":53318},{"style":119},[53319],{"type":50,"value":13370},{"type":44,"tag":100,"props":53321,"children":53322},{"style":119},[53323],{"type":50,"value":13225},{"type":44,"tag":124,"props":53325,"children":53326},{"id":13377},[53327],{"type":50,"value":13380},{"type":44,"tag":53,"props":53329,"children":53330},{},[53331],{"type":50,"value":13385},{"type":44,"tag":136,"props":53333,"children":53334},{},[53335],{"type":44,"tag":53,"props":53336,"children":53337},{},[53338],{"type":50,"value":13393},{"type":44,"tag":136,"props":53340,"children":53341},{},[53342],{"type":44,"tag":53,"props":53343,"children":53344},{},[53345],{"type":50,"value":13401},{"type":44,"tag":136,"props":53347,"children":53348},{},[53349],{"type":44,"tag":53,"props":53350,"children":53351},{},[53352],{"type":50,"value":13409},{"type":44,"tag":53,"props":53354,"children":53355},{},[53356],{"type":50,"value":13414},{"type":44,"tag":136,"props":53358,"children":53359},{},[53360],{"type":44,"tag":53,"props":53361,"children":53362},{},[53363],{"type":50,"value":13422},{"type":44,"tag":45,"props":53365,"children":53366},{"id":13425},[53367],{"type":50,"value":13428},{"type":44,"tag":13430,"props":53369,"children":53370},{},[53371,53379,53387,53395],{"type":44,"tag":13434,"props":53372,"children":53373},{},[53374,53378],{"type":44,"tag":185,"props":53375,"children":53376},{},[53377],{"type":50,"value":13441},{"type":50,"value":13443},{"type":44,"tag":13434,"props":53380,"children":53381},{},[53382,53386],{"type":44,"tag":185,"props":53383,"children":53384},{},[53385],{"type":50,"value":13451},{"type":50,"value":13453},{"type":44,"tag":13434,"props":53388,"children":53389},{},[53390,53394],{"type":44,"tag":185,"props":53391,"children":53392},{},[53393],{"type":50,"value":13461},{"type":50,"value":13463},{"type":44,"tag":13434,"props":53396,"children":53397},{},[53398,53402],{"type":44,"tag":185,"props":53399,"children":53400},{},[53401],{"type":50,"value":34},{"type":50,"value":13472},{"type":44,"tag":53,"props":53404,"children":53405},{},[53406],{"type":50,"value":13477},{"type":44,"tag":13479,"props":53408,"children":53409},{},[53410],{"type":50,"value":13483},{"title":7,"searchDepth":226,"depth":226,"links":53412},[53413,53414,53415,53425],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":53416},[53417,53418,53419,53420,53421,53422,53423,53424],{"id":126,"depth":235,"text":129},{"id":164,"depth":235,"text":13492},{"id":2230,"depth":235,"text":13494},{"id":5092,"depth":235,"text":13496},{"id":5366,"depth":235,"text":13498},{"id":9348,"depth":235,"text":13500},{"id":13172,"depth":235,"text":13175},{"id":13377,"depth":235,"text":13380},{"id":13425,"depth":226,"text":13428},{"_path":53427,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":53428,"description":53429,"date":10,"readingTime":297,"category":12,"tags":53430,"variants":53433,"difficulty":22,"module":5,"subSteps":23,"step":252,"journeys":53434,"learnMore":53435,"author":53448,"body":53449,"_type":13504,"_id":55376,"_source":13506,"_file":55377,"_stem":55378,"_extension":13509},"\u002Ftutorials\u002Fecommerce-pipeline\u002Fai-analyst","Set Up Your AI Data Analyst","Enhance your pipeline with AI-generated metadata, create an ecommerce-specific AGENTS.md, and deploy an AI analyst your team can use locally or in Slack.",[14,15,53431,26808,26462,17,18,19,53432,21],"Bruin AI","Slack",[17,18,19],[26,27],[53436,53439,53442,53445],{"label":53437,"url":53438},"Bruin MCP best practices","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fgetting-started\u002Fbruin-mcp.html#best-practices-for-ai-agents",{"label":53440,"url":53441},"AI enhance command reference","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fcommands\u002Fai-enhance.html",{"label":53443,"url":53444},"AI Data Analyst module","\u002Flearn\u002Fai-data-analyst",{"label":53446,"url":53447},"Cloud + Slack AI analyst tutorial","\u002Flearn\u002Fcloud-slack",{"name":37,"role":38,"image":39},{"type":41,"children":53450,"toc":55364},[53451,53455,53493,53497,53502,53514,53518,53524,53536,53565,53577,53583,53608,53613,53621,53626,54844,54850,54862,54870,54878,54886,54894,54929,54937,54949,54955,54967,54998,55010,55016,55021,55029,55061,55167,55175,55223,55231,55269,55277,55282,55290,55302,55306,55355,55360],{"type":44,"tag":45,"props":53452,"children":53453},{"id":47},[53454],{"type":50,"value":51},{"type":44,"tag":53456,"props":53457,"children":53458},"ol",{},[53459,53470,53483,53488],{"type":44,"tag":13434,"props":53460,"children":53461},{},[53462,53464],{"type":50,"value":53463},"Auto-generate metadata for every asset using ",{"type":44,"tag":81,"props":53465,"children":53467},{"className":53466},[],[53468],{"type":50,"value":53469},"bruin ai enhance",{"type":44,"tag":13434,"props":53471,"children":53472},{},[53473,53475,53481],{"type":50,"value":53474},"Create an ",{"type":44,"tag":81,"props":53476,"children":53478},{"className":53477},[],[53479],{"type":50,"value":53480},"AGENTS.md",{"type":50,"value":53482}," with ecommerce-specific context",{"type":44,"tag":13434,"props":53484,"children":53485},{},[53486],{"type":50,"value":53487},"Ask your local AI analyst real business questions",{"type":44,"tag":13434,"props":53489,"children":53490},{},[53491],{"type":50,"value":53492},"Deploy the analyst to Bruin Cloud so your team can use it in Slack or Teams",{"type":44,"tag":45,"props":53494,"children":53495},{"id":60},[53496],{"type":50,"value":63},{"type":44,"tag":53,"props":53498,"children":53499},{},[53500],{"type":50,"value":53501},"Your pipeline produces clean data and reports, but right now the only way to get answers is to write SQL. The AI analyst lets anyone on your team ask questions in plain language and get answers backed by real data.",{"type":44,"tag":53,"props":53503,"children":53504},{},[53505,53507,53512],{"type":50,"value":53506},"The missing piece is context. A general-purpose AI doesn't know that \"ROAS\" means return on ad spend, that Stripe amounts are in cents, or that guest checkouts have a NULL customer email. The ",{"type":44,"tag":81,"props":53508,"children":53510},{"className":53509},[],[53511],{"type":50,"value":53480},{"type":50,"value":53513}," file fills that gap.",{"type":44,"tag":45,"props":53515,"children":53516},{"id":71},[53517],{"type":50,"value":74},{"type":44,"tag":124,"props":53519,"children":53521},{"id":53520},"_1-enhance-all-assets-with-ai-metadata",[53522],{"type":50,"value":53523},"1) Enhance all assets with AI metadata",{"type":44,"tag":53,"props":53525,"children":53526},{},[53527,53529,53534],{"type":50,"value":53528},"Run ",{"type":44,"tag":81,"props":53530,"children":53532},{"className":53531},[],[53533],{"type":50,"value":53469},{"type":50,"value":53535}," to auto-generate descriptions, column metadata, and quality check suggestions for every asset:",{"type":44,"tag":90,"props":53537,"children":53539},{"className":92,"code":53538,"language":94,"meta":7,"style":7},"bruin ai enhance ecommerce\u002F\n",[53540],{"type":44,"tag":81,"props":53541,"children":53542},{"__ignoreMap":7},[53543],{"type":44,"tag":100,"props":53544,"children":53545},{"class":102,"line":103},[53546,53550,53555,53560],{"type":44,"tag":100,"props":53547,"children":53548},{"style":107},[53549],{"type":50,"value":13195},{"type":44,"tag":100,"props":53551,"children":53552},{"style":119},[53553],{"type":50,"value":53554}," ai",{"type":44,"tag":100,"props":53556,"children":53557},{"style":119},[53558],{"type":50,"value":53559}," enhance",{"type":44,"tag":100,"props":53561,"children":53562},{"style":119},[53563],{"type":50,"value":53564}," ecommerce\u002F\n",{"type":44,"tag":53,"props":53566,"children":53567},{},[53568,53570,53575],{"type":50,"value":53569},"This reads your SQL, figures out what each asset does, and writes descriptions into the asset files. Review the output - it's usually accurate but sometimes suggests ",{"type":44,"tag":81,"props":53571,"children":53573},{"className":53572},[],[53574],{"type":50,"value":40401},{"type":50,"value":53576}," checks on columns that aren't actually unique.",{"type":44,"tag":124,"props":53578,"children":53580},{"id":53579},"_2-create-your-agentsmd",[53581],{"type":50,"value":53582},"2) Create your AGENTS.md",{"type":44,"tag":53,"props":53584,"children":53585},{},[53586,53587,53592,53594,53599,53601,53606],{"type":50,"value":53474},{"type":44,"tag":81,"props":53588,"children":53590},{"className":53589},[],[53591],{"type":50,"value":53480},{"type":50,"value":53593}," file at the ",{"type":44,"tag":185,"props":53595,"children":53596},{},[53597],{"type":50,"value":53598},"root of your Bruin project",{"type":50,"value":53600}," - the directory where ",{"type":44,"tag":81,"props":53602,"children":53604},{"className":53603},[],[53605],{"type":50,"value":26751},{"type":50,"value":53607}," lives. Claude Code reads this file automatically when it starts a session in your project directory.",{"type":44,"tag":53,"props":53609,"children":53610},{},[53611],{"type":50,"value":53612},"You can ask Claude Code to help draft it:",{"type":44,"tag":136,"props":53614,"children":53615},{},[53616],{"type":44,"tag":53,"props":53617,"children":53618},{},[53619],{"type":50,"value":53620},"Create an AGENTS.md file for this ecommerce analytics project. Include data access rules using bruin query with the warehouse connection name from our pipeline, a glossary of ecommerce terms (AOV, ROAS, LTV, etc.), and data caveats like Stripe amounts being in cents and guest checkouts having null customer_email.",{"type":44,"tag":53,"props":53622,"children":53623},{},[53624],{"type":50,"value":53625},"Here's what the file should look like. Replace the connection name with the one you set up in Step 1:",{"type":44,"tag":197,"props":53627,"children":53628},{":variants":199,"group":200},[53629,54066,54455],{"type":44,"tag":203,"props":53630,"children":53631},{"v-slot:clickhouse":7},[53632],{"type":44,"tag":90,"props":53633,"children":53636},{"className":53634,"code":53635,"language":13504,"meta":7,"style":7},"language-markdown shiki shiki-themes github-dark","# AGENTS.md\n\n## Data access\n- Use `bruin query --connection clickhouse-default --query \"\u003CSQL>\"` for all data access\n- Always show the SQL query and explain your reasoning before executing it\n- Add `LIMIT 10` to your SQL when exploring unfamiliar tables or testing complex queries\n- Read the `assets\u002F` directory to understand available tables and their schemas before querying\n- This is a **read-only** environment - never run INSERT, UPDATE, DELETE, or DROP statements\n\n\u003C!-- Customize this list to match the sources you actually connected in Step 1.\n     The example below includes Shopify, Stripe, Klaviyo, Facebook Ads, and GA4.\n     Remove any you don't use and add any additional sources (e.g., TikTok Ads, Pinterest, Zendesk). -->\n## Project overview\nThis is an ecommerce analytics pipeline ingesting data from Shopify (orders,\ncustomers, products, inventory), Stripe (payments, refunds, payouts),\nKlaviyo (email campaigns, flows), Facebook Ads (campaigns, ad insights),\nand GA4 (sessions, events) into your data warehouse.\n\nThe pipeline has three layers:\n- **raw.*** - ingested data from SaaS sources (do not query directly for reporting)\n- **staging.*** - cleaned, deduplicated, joined tables\n- **reports.*** - aggregated business metrics and KPIs\n\n## Domain glossary\n- **AOV** - Average Order Value: net revenue divided by number of paid orders\n- **GMV** - Gross Merchandise Value: total order value before returns and discounts\n- **NMV** - Net Merchandise Value: GMV minus returns, cancellations, and discounts\n- **ROAS** - Return on Ad Spend: attributed revenue divided by ad spend\n- **CAC** - Customer Acquisition Cost: total marketing spend divided by new customers\n- **LTV** - Lifetime Value: total revenue from a customer across all orders\n- **Conversion Rate** - percentage of website sessions resulting in a completed purchase\n- **Cart Abandonment** - percentage of sessions with add-to-cart but no purchase\n- **Repeat Purchase Rate** - percentage of customers with more than one order\n- **Churn** - customers with no order in the past 90 days\n- **SKU** - Stock Keeping Unit: unique identifier for a product variant\n- **Basket Size** - number of items in a single order\n\n## Data caveats\n- All timestamps are in **UTC**\n- Stripe amounts are in **cents** - divide by 100 for dollar values\n- `customer_email` is `NULL` for guest checkouts (~15-20% of orders)\n- Refund window is **30 days** - recent revenue figures may be revised downward\n- Inventory data syncs every **4 hours** - not real-time\n- Shopify `order_total` includes tax and shipping; use `subtotal` for product revenue only\n- Facebook Ads data has a **24-48 hour attribution delay**\n- Klaviyo campaigns have no direct spend - they appear with $0 spend in marketing reports\n\n## Query guidelines\n- For revenue, always use **NMV** (net of returns) unless explicitly asked for GMV\n- Exclude test orders: `WHERE customer_email NOT LIKE '%@test.%'`\n- Use a **12-month lookback window** for LTV calculations by default\n- For marketing attribution, use `reports.rpt_marketing_roi` - do not attempt to join raw ad data with orders directly\n- For daily KPIs, use `reports.rpt_daily_kpis` as the single source of truth\n- Prefer `staging.*` tables over `raw.*` for any analysis\n",[53637],{"type":44,"tag":81,"props":53638,"children":53639},{"__ignoreMap":7},[53640,53648,53655,53663,53671,53679,53687,53695,53703,53710,53718,53726,53734,53742,53750,53758,53766,53774,53781,53789,53797,53805,53813,53820,53828,53836,53844,53852,53860,53868,53876,53884,53892,53900,53908,53916,53924,53931,53939,53947,53955,53963,53971,53979,53987,53995,54003,54010,54018,54026,54034,54042,54050,54058],{"type":44,"tag":100,"props":53641,"children":53642},{"class":102,"line":103},[53643],{"type":44,"tag":100,"props":53644,"children":53645},{},[53646],{"type":50,"value":53647},"# AGENTS.md\n",{"type":44,"tag":100,"props":53649,"children":53650},{"class":102,"line":226},[53651],{"type":44,"tag":100,"props":53652,"children":53653},{"emptyLinePlaceholder":23},[53654],{"type":50,"value":383},{"type":44,"tag":100,"props":53656,"children":53657},{"class":102,"line":235},[53658],{"type":44,"tag":100,"props":53659,"children":53660},{},[53661],{"type":50,"value":53662},"## Data access\n",{"type":44,"tag":100,"props":53664,"children":53665},{"class":102,"line":24},[53666],{"type":44,"tag":100,"props":53667,"children":53668},{},[53669],{"type":50,"value":53670},"- Use `bruin query --connection clickhouse-default --query \"\u003CSQL>\"` for all data access\n",{"type":44,"tag":100,"props":53672,"children":53673},{"class":102,"line":252},[53674],{"type":44,"tag":100,"props":53675,"children":53676},{},[53677],{"type":50,"value":53678},"- Always show the SQL query and explain your reasoning before executing it\n",{"type":44,"tag":100,"props":53680,"children":53681},{"class":102,"line":261},[53682],{"type":44,"tag":100,"props":53683,"children":53684},{},[53685],{"type":50,"value":53686},"- Add `LIMIT 10` to your SQL when exploring unfamiliar tables or testing complex queries\n",{"type":44,"tag":100,"props":53688,"children":53689},{"class":102,"line":270},[53690],{"type":44,"tag":100,"props":53691,"children":53692},{},[53693],{"type":50,"value":53694},"- Read the `assets\u002F` directory to understand available tables and their schemas before querying\n",{"type":44,"tag":100,"props":53696,"children":53697},{"class":102,"line":279},[53698],{"type":44,"tag":100,"props":53699,"children":53700},{},[53701],{"type":50,"value":53702},"- This is a **read-only** environment - never run INSERT, UPDATE, DELETE, or DROP statements\n",{"type":44,"tag":100,"props":53704,"children":53705},{"class":102,"line":288},[53706],{"type":44,"tag":100,"props":53707,"children":53708},{"emptyLinePlaceholder":23},[53709],{"type":50,"value":383},{"type":44,"tag":100,"props":53711,"children":53712},{"class":102,"line":297},[53713],{"type":44,"tag":100,"props":53714,"children":53715},{},[53716],{"type":50,"value":53717},"\u003C!-- Customize this list to match the sources you actually connected in Step 1.\n",{"type":44,"tag":100,"props":53719,"children":53720},{"class":102,"line":306},[53721],{"type":44,"tag":100,"props":53722,"children":53723},{},[53724],{"type":50,"value":53725},"     The example below includes Shopify, Stripe, Klaviyo, Facebook Ads, and GA4.\n",{"type":44,"tag":100,"props":53727,"children":53728},{"class":102,"line":315},[53729],{"type":44,"tag":100,"props":53730,"children":53731},{},[53732],{"type":50,"value":53733},"     Remove any you don't use and add any additional sources (e.g., TikTok Ads, Pinterest, Zendesk). -->\n",{"type":44,"tag":100,"props":53735,"children":53736},{"class":102,"line":324},[53737],{"type":44,"tag":100,"props":53738,"children":53739},{},[53740],{"type":50,"value":53741},"## Project overview\n",{"type":44,"tag":100,"props":53743,"children":53744},{"class":102,"line":333},[53745],{"type":44,"tag":100,"props":53746,"children":53747},{},[53748],{"type":50,"value":53749},"This is an ecommerce analytics pipeline ingesting data from Shopify (orders,\n",{"type":44,"tag":100,"props":53751,"children":53752},{"class":102,"line":11},[53753],{"type":44,"tag":100,"props":53754,"children":53755},{},[53756],{"type":50,"value":53757},"customers, products, inventory), Stripe (payments, refunds, payouts),\n",{"type":44,"tag":100,"props":53759,"children":53760},{"class":102,"line":350},[53761],{"type":44,"tag":100,"props":53762,"children":53763},{},[53764],{"type":50,"value":53765},"Klaviyo (email campaigns, flows), Facebook Ads (campaigns, ad insights),\n",{"type":44,"tag":100,"props":53767,"children":53768},{"class":102,"line":359},[53769],{"type":44,"tag":100,"props":53770,"children":53771},{},[53772],{"type":50,"value":53773},"and GA4 (sessions, events) into your data warehouse.\n",{"type":44,"tag":100,"props":53775,"children":53776},{"class":102,"line":368},[53777],{"type":44,"tag":100,"props":53778,"children":53779},{"emptyLinePlaceholder":23},[53780],{"type":50,"value":383},{"type":44,"tag":100,"props":53782,"children":53783},{"class":102,"line":377},[53784],{"type":44,"tag":100,"props":53785,"children":53786},{},[53787],{"type":50,"value":53788},"The pipeline has three layers:\n",{"type":44,"tag":100,"props":53790,"children":53791},{"class":102,"line":386},[53792],{"type":44,"tag":100,"props":53793,"children":53794},{},[53795],{"type":50,"value":53796},"- **raw.*** - ingested data from SaaS sources (do not query directly for reporting)\n",{"type":44,"tag":100,"props":53798,"children":53799},{"class":102,"line":396},[53800],{"type":44,"tag":100,"props":53801,"children":53802},{},[53803],{"type":50,"value":53804},"- **staging.*** - cleaned, deduplicated, joined tables\n",{"type":44,"tag":100,"props":53806,"children":53807},{"class":102,"line":416},[53808],{"type":44,"tag":100,"props":53809,"children":53810},{},[53811],{"type":50,"value":53812},"- **reports.*** - aggregated business metrics and KPIs\n",{"type":44,"tag":100,"props":53814,"children":53815},{"class":102,"line":449},[53816],{"type":44,"tag":100,"props":53817,"children":53818},{"emptyLinePlaceholder":23},[53819],{"type":50,"value":383},{"type":44,"tag":100,"props":53821,"children":53822},{"class":102,"line":481},[53823],{"type":44,"tag":100,"props":53824,"children":53825},{},[53826],{"type":50,"value":53827},"## Domain glossary\n",{"type":44,"tag":100,"props":53829,"children":53830},{"class":102,"line":508},[53831],{"type":44,"tag":100,"props":53832,"children":53833},{},[53834],{"type":50,"value":53835},"- **AOV** - Average Order Value: net revenue divided by number of paid orders\n",{"type":44,"tag":100,"props":53837,"children":53838},{"class":102,"line":531},[53839],{"type":44,"tag":100,"props":53840,"children":53841},{},[53842],{"type":50,"value":53843},"- **GMV** - Gross Merchandise Value: total order value before returns and discounts\n",{"type":44,"tag":100,"props":53845,"children":53846},{"class":102,"line":604},[53847],{"type":44,"tag":100,"props":53848,"children":53849},{},[53850],{"type":50,"value":53851},"- **NMV** - Net Merchandise Value: GMV minus returns, cancellations, and discounts\n",{"type":44,"tag":100,"props":53853,"children":53854},{"class":102,"line":626},[53855],{"type":44,"tag":100,"props":53856,"children":53857},{},[53858],{"type":50,"value":53859},"- **ROAS** - Return on Ad Spend: attributed revenue divided by ad spend\n",{"type":44,"tag":100,"props":53861,"children":53862},{"class":102,"line":648},[53863],{"type":44,"tag":100,"props":53864,"children":53865},{},[53866],{"type":50,"value":53867},"- **CAC** - Customer Acquisition Cost: total marketing spend divided by new customers\n",{"type":44,"tag":100,"props":53869,"children":53870},{"class":102,"line":705},[53871],{"type":44,"tag":100,"props":53872,"children":53873},{},[53874],{"type":50,"value":53875},"- **LTV** - Lifetime Value: total revenue from a customer across all orders\n",{"type":44,"tag":100,"props":53877,"children":53878},{"class":102,"line":770},[53879],{"type":44,"tag":100,"props":53880,"children":53881},{},[53882],{"type":50,"value":53883},"- **Conversion Rate** - percentage of website sessions resulting in a completed purchase\n",{"type":44,"tag":100,"props":53885,"children":53886},{"class":102,"line":794},[53887],{"type":44,"tag":100,"props":53888,"children":53889},{},[53890],{"type":50,"value":53891},"- **Cart Abandonment** - percentage of sessions with add-to-cart but no purchase\n",{"type":44,"tag":100,"props":53893,"children":53894},{"class":102,"line":808},[53895],{"type":44,"tag":100,"props":53896,"children":53897},{},[53898],{"type":50,"value":53899},"- **Repeat Purchase Rate** - percentage of customers with more than one order\n",{"type":44,"tag":100,"props":53901,"children":53902},{"class":102,"line":1484},[53903],{"type":44,"tag":100,"props":53904,"children":53905},{},[53906],{"type":50,"value":53907},"- **Churn** - customers with no order in the past 90 days\n",{"type":44,"tag":100,"props":53909,"children":53910},{"class":102,"line":2747},[53911],{"type":44,"tag":100,"props":53912,"children":53913},{},[53914],{"type":50,"value":53915},"- **SKU** - Stock Keeping Unit: unique identifier for a product variant\n",{"type":44,"tag":100,"props":53917,"children":53918},{"class":102,"line":2769},[53919],{"type":44,"tag":100,"props":53920,"children":53921},{},[53922],{"type":50,"value":53923},"- **Basket Size** - number of items in a single order\n",{"type":44,"tag":100,"props":53925,"children":53926},{"class":102,"line":2791},[53927],{"type":44,"tag":100,"props":53928,"children":53929},{"emptyLinePlaceholder":23},[53930],{"type":50,"value":383},{"type":44,"tag":100,"props":53932,"children":53933},{"class":102,"line":2856},[53934],{"type":44,"tag":100,"props":53935,"children":53936},{},[53937],{"type":50,"value":53938},"## Data caveats\n",{"type":44,"tag":100,"props":53940,"children":53941},{"class":102,"line":2898},[53942],{"type":44,"tag":100,"props":53943,"children":53944},{},[53945],{"type":50,"value":53946},"- All timestamps are in **UTC**\n",{"type":44,"tag":100,"props":53948,"children":53949},{"class":102,"line":2977},[53950],{"type":44,"tag":100,"props":53951,"children":53952},{},[53953],{"type":50,"value":53954},"- Stripe amounts are in **cents** - divide by 100 for dollar values\n",{"type":44,"tag":100,"props":53956,"children":53957},{"class":102,"line":3015},[53958],{"type":44,"tag":100,"props":53959,"children":53960},{},[53961],{"type":50,"value":53962},"- `customer_email` is `NULL` for guest checkouts (~15-20% of orders)\n",{"type":44,"tag":100,"props":53964,"children":53965},{"class":102,"line":3081},[53966],{"type":44,"tag":100,"props":53967,"children":53968},{},[53969],{"type":50,"value":53970},"- Refund window is **30 days** - recent revenue figures may be revised downward\n",{"type":44,"tag":100,"props":53972,"children":53973},{"class":102,"line":3094},[53974],{"type":44,"tag":100,"props":53975,"children":53976},{},[53977],{"type":50,"value":53978},"- Inventory data syncs every **4 hours** - not real-time\n",{"type":44,"tag":100,"props":53980,"children":53981},{"class":102,"line":3108},[53982],{"type":44,"tag":100,"props":53983,"children":53984},{},[53985],{"type":50,"value":53986},"- Shopify `order_total` includes tax and shipping; use `subtotal` for product revenue only\n",{"type":44,"tag":100,"props":53988,"children":53989},{"class":102,"line":3147},[53990],{"type":44,"tag":100,"props":53991,"children":53992},{},[53993],{"type":50,"value":53994},"- Facebook Ads data has a **24-48 hour attribution delay**\n",{"type":44,"tag":100,"props":53996,"children":53997},{"class":102,"line":3188},[53998],{"type":44,"tag":100,"props":53999,"children":54000},{},[54001],{"type":50,"value":54002},"- Klaviyo campaigns have no direct spend - they appear with $0 spend in marketing reports\n",{"type":44,"tag":100,"props":54004,"children":54005},{"class":102,"line":6054},[54006],{"type":44,"tag":100,"props":54007,"children":54008},{"emptyLinePlaceholder":23},[54009],{"type":50,"value":383},{"type":44,"tag":100,"props":54011,"children":54012},{"class":102,"line":6081},[54013],{"type":44,"tag":100,"props":54014,"children":54015},{},[54016],{"type":50,"value":54017},"## Query guidelines\n",{"type":44,"tag":100,"props":54019,"children":54020},{"class":102,"line":6089},[54021],{"type":44,"tag":100,"props":54022,"children":54023},{},[54024],{"type":50,"value":54025},"- For revenue, always use **NMV** (net of returns) unless explicitly asked for GMV\n",{"type":44,"tag":100,"props":54027,"children":54028},{"class":102,"line":6097},[54029],{"type":44,"tag":100,"props":54030,"children":54031},{},[54032],{"type":50,"value":54033},"- Exclude test orders: `WHERE customer_email NOT LIKE '%@test.%'`\n",{"type":44,"tag":100,"props":54035,"children":54036},{"class":102,"line":6123},[54037],{"type":44,"tag":100,"props":54038,"children":54039},{},[54040],{"type":50,"value":54041},"- Use a **12-month lookback window** for LTV calculations by default\n",{"type":44,"tag":100,"props":54043,"children":54044},{"class":102,"line":6143},[54045],{"type":44,"tag":100,"props":54046,"children":54047},{},[54048],{"type":50,"value":54049},"- For marketing attribution, use `reports.rpt_marketing_roi` - do not attempt to join raw ad data with orders directly\n",{"type":44,"tag":100,"props":54051,"children":54052},{"class":102,"line":6164},[54053],{"type":44,"tag":100,"props":54054,"children":54055},{},[54056],{"type":50,"value":54057},"- For daily KPIs, use `reports.rpt_daily_kpis` as the single source of truth\n",{"type":44,"tag":100,"props":54059,"children":54060},{"class":102,"line":6185},[54061],{"type":44,"tag":100,"props":54062,"children":54063},{},[54064],{"type":50,"value":54065},"- Prefer `staging.*` tables over `raw.*` for any analysis\n",{"type":44,"tag":203,"props":54067,"children":54068},{"v-slot:bigquery":7},[54069],{"type":44,"tag":90,"props":54070,"children":54072},{"className":53634,"code":54071,"language":13504,"meta":7,"style":7},"# AGENTS.md\n\n## Data access\n- Use `bruin query --connection bigquery-default --query \"\u003CSQL>\"` for all data access\n- Always show the SQL query and explain your reasoning before executing it\n- Add `LIMIT 10` to your SQL when exploring unfamiliar tables or testing complex queries\n- Read the `assets\u002F` directory to understand available tables and their schemas before querying\n- This is a **read-only** environment - never run INSERT, UPDATE, DELETE, or DROP statements\n\n\u003C!-- Customize this list to match the sources you actually connected in Step 1.\n     The example below includes Shopify, Stripe, Klaviyo, Facebook Ads, and GA4.\n     Remove any you don't use and add any additional sources (e.g., TikTok Ads, Pinterest, Zendesk). -->\n## Project overview\nThis is an ecommerce analytics pipeline ingesting data from Shopify (orders,\ncustomers, products, inventory), Stripe (payments, refunds, payouts),\nKlaviyo (email campaigns, flows), Facebook Ads (campaigns, ad insights),\nand GA4 (sessions, events) into your data warehouse.\n\nThe pipeline has three layers:\n- **raw.*** - ingested data from SaaS sources (do not query directly for reporting)\n- **staging.*** - cleaned, deduplicated, joined tables\n- **reports.*** - aggregated business metrics and KPIs\n\n## Domain glossary\n- **AOV** - Average Order Value: net revenue divided by number of paid orders\n- **GMV** - Gross Merchandise Value: total order value before returns and discounts\n- **NMV** - Net Merchandise Value: GMV minus returns, cancellations, and discounts\n- **ROAS** - Return on Ad Spend: attributed revenue divided by ad spend\n- **CAC** - Customer Acquisition Cost: total marketing spend divided by new customers\n- **LTV** - Lifetime Value: total revenue from a customer across all orders\n- **Conversion Rate** - percentage of website sessions resulting in a completed purchase\n- **Cart Abandonment** - percentage of sessions with add-to-cart but no purchase\n- **Repeat Purchase Rate** - percentage of customers with more than one order\n- **Churn** - customers with no order in the past 90 days\n- **SKU** - Stock Keeping Unit: unique identifier for a product variant\n- **Basket Size** - number of items in a single order\n\n## Data caveats\n- All timestamps are in **UTC**\n- Stripe amounts are in **cents** - divide by 100 for dollar values\n- `customer_email` is `NULL` for guest checkouts (~15-20% of orders)\n- Refund window is **30 days** - recent revenue figures may be revised downward\n- Inventory data syncs every **4 hours** - not real-time\n- Shopify `order_total` includes tax and shipping; use `subtotal` for product revenue only\n- Facebook Ads data has a **24-48 hour attribution delay**\n- Klaviyo campaigns have no direct spend - they appear with $0 spend in marketing reports\n\n## Query guidelines\n- For revenue, always use **NMV** (net of returns) unless explicitly asked for GMV\n- Exclude test orders: `WHERE customer_email NOT LIKE '%@test.%'`\n- Use a **12-month lookback window** for LTV calculations by default\n- For marketing attribution, use `reports.rpt_marketing_roi` - do not attempt to join raw ad data with orders directly\n- For daily KPIs, use `reports.rpt_daily_kpis` as the single source of truth\n- Prefer `staging.*` tables over `raw.*` for any analysis\n",[54073],{"type":44,"tag":81,"props":54074,"children":54075},{"__ignoreMap":7},[54076,54083,54090,54097,54105,54112,54119,54126,54133,54140,54147,54154,54161,54168,54175,54182,54189,54196,54203,54210,54217,54224,54231,54238,54245,54252,54259,54266,54273,54280,54287,54294,54301,54308,54315,54322,54329,54336,54343,54350,54357,54364,54371,54378,54385,54392,54399,54406,54413,54420,54427,54434,54441,54448],{"type":44,"tag":100,"props":54077,"children":54078},{"class":102,"line":103},[54079],{"type":44,"tag":100,"props":54080,"children":54081},{},[54082],{"type":50,"value":53647},{"type":44,"tag":100,"props":54084,"children":54085},{"class":102,"line":226},[54086],{"type":44,"tag":100,"props":54087,"children":54088},{"emptyLinePlaceholder":23},[54089],{"type":50,"value":383},{"type":44,"tag":100,"props":54091,"children":54092},{"class":102,"line":235},[54093],{"type":44,"tag":100,"props":54094,"children":54095},{},[54096],{"type":50,"value":53662},{"type":44,"tag":100,"props":54098,"children":54099},{"class":102,"line":24},[54100],{"type":44,"tag":100,"props":54101,"children":54102},{},[54103],{"type":50,"value":54104},"- Use `bruin query --connection bigquery-default --query \"\u003CSQL>\"` for all data access\n",{"type":44,"tag":100,"props":54106,"children":54107},{"class":102,"line":252},[54108],{"type":44,"tag":100,"props":54109,"children":54110},{},[54111],{"type":50,"value":53678},{"type":44,"tag":100,"props":54113,"children":54114},{"class":102,"line":261},[54115],{"type":44,"tag":100,"props":54116,"children":54117},{},[54118],{"type":50,"value":53686},{"type":44,"tag":100,"props":54120,"children":54121},{"class":102,"line":270},[54122],{"type":44,"tag":100,"props":54123,"children":54124},{},[54125],{"type":50,"value":53694},{"type":44,"tag":100,"props":54127,"children":54128},{"class":102,"line":279},[54129],{"type":44,"tag":100,"props":54130,"children":54131},{},[54132],{"type":50,"value":53702},{"type":44,"tag":100,"props":54134,"children":54135},{"class":102,"line":288},[54136],{"type":44,"tag":100,"props":54137,"children":54138},{"emptyLinePlaceholder":23},[54139],{"type":50,"value":383},{"type":44,"tag":100,"props":54141,"children":54142},{"class":102,"line":297},[54143],{"type":44,"tag":100,"props":54144,"children":54145},{},[54146],{"type":50,"value":53717},{"type":44,"tag":100,"props":54148,"children":54149},{"class":102,"line":306},[54150],{"type":44,"tag":100,"props":54151,"children":54152},{},[54153],{"type":50,"value":53725},{"type":44,"tag":100,"props":54155,"children":54156},{"class":102,"line":315},[54157],{"type":44,"tag":100,"props":54158,"children":54159},{},[54160],{"type":50,"value":53733},{"type":44,"tag":100,"props":54162,"children":54163},{"class":102,"line":324},[54164],{"type":44,"tag":100,"props":54165,"children":54166},{},[54167],{"type":50,"value":53741},{"type":44,"tag":100,"props":54169,"children":54170},{"class":102,"line":333},[54171],{"type":44,"tag":100,"props":54172,"children":54173},{},[54174],{"type":50,"value":53749},{"type":44,"tag":100,"props":54176,"children":54177},{"class":102,"line":11},[54178],{"type":44,"tag":100,"props":54179,"children":54180},{},[54181],{"type":50,"value":53757},{"type":44,"tag":100,"props":54183,"children":54184},{"class":102,"line":350},[54185],{"type":44,"tag":100,"props":54186,"children":54187},{},[54188],{"type":50,"value":53765},{"type":44,"tag":100,"props":54190,"children":54191},{"class":102,"line":359},[54192],{"type":44,"tag":100,"props":54193,"children":54194},{},[54195],{"type":50,"value":53773},{"type":44,"tag":100,"props":54197,"children":54198},{"class":102,"line":368},[54199],{"type":44,"tag":100,"props":54200,"children":54201},{"emptyLinePlaceholder":23},[54202],{"type":50,"value":383},{"type":44,"tag":100,"props":54204,"children":54205},{"class":102,"line":377},[54206],{"type":44,"tag":100,"props":54207,"children":54208},{},[54209],{"type":50,"value":53788},{"type":44,"tag":100,"props":54211,"children":54212},{"class":102,"line":386},[54213],{"type":44,"tag":100,"props":54214,"children":54215},{},[54216],{"type":50,"value":53796},{"type":44,"tag":100,"props":54218,"children":54219},{"class":102,"line":396},[54220],{"type":44,"tag":100,"props":54221,"children":54222},{},[54223],{"type":50,"value":53804},{"type":44,"tag":100,"props":54225,"children":54226},{"class":102,"line":416},[54227],{"type":44,"tag":100,"props":54228,"children":54229},{},[54230],{"type":50,"value":53812},{"type":44,"tag":100,"props":54232,"children":54233},{"class":102,"line":449},[54234],{"type":44,"tag":100,"props":54235,"children":54236},{"emptyLinePlaceholder":23},[54237],{"type":50,"value":383},{"type":44,"tag":100,"props":54239,"children":54240},{"class":102,"line":481},[54241],{"type":44,"tag":100,"props":54242,"children":54243},{},[54244],{"type":50,"value":53827},{"type":44,"tag":100,"props":54246,"children":54247},{"class":102,"line":508},[54248],{"type":44,"tag":100,"props":54249,"children":54250},{},[54251],{"type":50,"value":53835},{"type":44,"tag":100,"props":54253,"children":54254},{"class":102,"line":531},[54255],{"type":44,"tag":100,"props":54256,"children":54257},{},[54258],{"type":50,"value":53843},{"type":44,"tag":100,"props":54260,"children":54261},{"class":102,"line":604},[54262],{"type":44,"tag":100,"props":54263,"children":54264},{},[54265],{"type":50,"value":53851},{"type":44,"tag":100,"props":54267,"children":54268},{"class":102,"line":626},[54269],{"type":44,"tag":100,"props":54270,"children":54271},{},[54272],{"type":50,"value":53859},{"type":44,"tag":100,"props":54274,"children":54275},{"class":102,"line":648},[54276],{"type":44,"tag":100,"props":54277,"children":54278},{},[54279],{"type":50,"value":53867},{"type":44,"tag":100,"props":54281,"children":54282},{"class":102,"line":705},[54283],{"type":44,"tag":100,"props":54284,"children":54285},{},[54286],{"type":50,"value":53875},{"type":44,"tag":100,"props":54288,"children":54289},{"class":102,"line":770},[54290],{"type":44,"tag":100,"props":54291,"children":54292},{},[54293],{"type":50,"value":53883},{"type":44,"tag":100,"props":54295,"children":54296},{"class":102,"line":794},[54297],{"type":44,"tag":100,"props":54298,"children":54299},{},[54300],{"type":50,"value":53891},{"type":44,"tag":100,"props":54302,"children":54303},{"class":102,"line":808},[54304],{"type":44,"tag":100,"props":54305,"children":54306},{},[54307],{"type":50,"value":53899},{"type":44,"tag":100,"props":54309,"children":54310},{"class":102,"line":1484},[54311],{"type":44,"tag":100,"props":54312,"children":54313},{},[54314],{"type":50,"value":53907},{"type":44,"tag":100,"props":54316,"children":54317},{"class":102,"line":2747},[54318],{"type":44,"tag":100,"props":54319,"children":54320},{},[54321],{"type":50,"value":53915},{"type":44,"tag":100,"props":54323,"children":54324},{"class":102,"line":2769},[54325],{"type":44,"tag":100,"props":54326,"children":54327},{},[54328],{"type":50,"value":53923},{"type":44,"tag":100,"props":54330,"children":54331},{"class":102,"line":2791},[54332],{"type":44,"tag":100,"props":54333,"children":54334},{"emptyLinePlaceholder":23},[54335],{"type":50,"value":383},{"type":44,"tag":100,"props":54337,"children":54338},{"class":102,"line":2856},[54339],{"type":44,"tag":100,"props":54340,"children":54341},{},[54342],{"type":50,"value":53938},{"type":44,"tag":100,"props":54344,"children":54345},{"class":102,"line":2898},[54346],{"type":44,"tag":100,"props":54347,"children":54348},{},[54349],{"type":50,"value":53946},{"type":44,"tag":100,"props":54351,"children":54352},{"class":102,"line":2977},[54353],{"type":44,"tag":100,"props":54354,"children":54355},{},[54356],{"type":50,"value":53954},{"type":44,"tag":100,"props":54358,"children":54359},{"class":102,"line":3015},[54360],{"type":44,"tag":100,"props":54361,"children":54362},{},[54363],{"type":50,"value":53962},{"type":44,"tag":100,"props":54365,"children":54366},{"class":102,"line":3081},[54367],{"type":44,"tag":100,"props":54368,"children":54369},{},[54370],{"type":50,"value":53970},{"type":44,"tag":100,"props":54372,"children":54373},{"class":102,"line":3094},[54374],{"type":44,"tag":100,"props":54375,"children":54376},{},[54377],{"type":50,"value":53978},{"type":44,"tag":100,"props":54379,"children":54380},{"class":102,"line":3108},[54381],{"type":44,"tag":100,"props":54382,"children":54383},{},[54384],{"type":50,"value":53986},{"type":44,"tag":100,"props":54386,"children":54387},{"class":102,"line":3147},[54388],{"type":44,"tag":100,"props":54389,"children":54390},{},[54391],{"type":50,"value":53994},{"type":44,"tag":100,"props":54393,"children":54394},{"class":102,"line":3188},[54395],{"type":44,"tag":100,"props":54396,"children":54397},{},[54398],{"type":50,"value":54002},{"type":44,"tag":100,"props":54400,"children":54401},{"class":102,"line":6054},[54402],{"type":44,"tag":100,"props":54403,"children":54404},{"emptyLinePlaceholder":23},[54405],{"type":50,"value":383},{"type":44,"tag":100,"props":54407,"children":54408},{"class":102,"line":6081},[54409],{"type":44,"tag":100,"props":54410,"children":54411},{},[54412],{"type":50,"value":54017},{"type":44,"tag":100,"props":54414,"children":54415},{"class":102,"line":6089},[54416],{"type":44,"tag":100,"props":54417,"children":54418},{},[54419],{"type":50,"value":54025},{"type":44,"tag":100,"props":54421,"children":54422},{"class":102,"line":6097},[54423],{"type":44,"tag":100,"props":54424,"children":54425},{},[54426],{"type":50,"value":54033},{"type":44,"tag":100,"props":54428,"children":54429},{"class":102,"line":6123},[54430],{"type":44,"tag":100,"props":54431,"children":54432},{},[54433],{"type":50,"value":54041},{"type":44,"tag":100,"props":54435,"children":54436},{"class":102,"line":6143},[54437],{"type":44,"tag":100,"props":54438,"children":54439},{},[54440],{"type":50,"value":54049},{"type":44,"tag":100,"props":54442,"children":54443},{"class":102,"line":6164},[54444],{"type":44,"tag":100,"props":54445,"children":54446},{},[54447],{"type":50,"value":54057},{"type":44,"tag":100,"props":54449,"children":54450},{"class":102,"line":6185},[54451],{"type":44,"tag":100,"props":54452,"children":54453},{},[54454],{"type":50,"value":54065},{"type":44,"tag":203,"props":54456,"children":54457},{"v-slot:snowflake":7},[54458],{"type":44,"tag":90,"props":54459,"children":54461},{"className":53634,"code":54460,"language":13504,"meta":7,"style":7},"# AGENTS.md\n\n## Data access\n- Use `bruin query --connection snowflake-default --query \"\u003CSQL>\"` for all data access\n- Always show the SQL query and explain your reasoning before executing it\n- Add `LIMIT 10` to your SQL when exploring unfamiliar tables or testing complex queries\n- Read the `assets\u002F` directory to understand available tables and their schemas before querying\n- This is a **read-only** environment - never run INSERT, UPDATE, DELETE, or DROP statements\n\n\u003C!-- Customize this list to match the sources you actually connected in Step 1.\n     The example below includes Shopify, Stripe, Klaviyo, Facebook Ads, and GA4.\n     Remove any you don't use and add any additional sources (e.g., TikTok Ads, Pinterest, Zendesk). -->\n## Project overview\nThis is an ecommerce analytics pipeline ingesting data from Shopify (orders,\ncustomers, products, inventory), Stripe (payments, refunds, payouts),\nKlaviyo (email campaigns, flows), Facebook Ads (campaigns, ad insights),\nand GA4 (sessions, events) into your data warehouse.\n\nThe pipeline has three layers:\n- **raw.*** - ingested data from SaaS sources (do not query directly for reporting)\n- **staging.*** - cleaned, deduplicated, joined tables\n- **reports.*** - aggregated business metrics and KPIs\n\n## Domain glossary\n- **AOV** - Average Order Value: net revenue divided by number of paid orders\n- **GMV** - Gross Merchandise Value: total order value before returns and discounts\n- **NMV** - Net Merchandise Value: GMV minus returns, cancellations, and discounts\n- **ROAS** - Return on Ad Spend: attributed revenue divided by ad spend\n- **CAC** - Customer Acquisition Cost: total marketing spend divided by new customers\n- **LTV** - Lifetime Value: total revenue from a customer across all orders\n- **Conversion Rate** - percentage of website sessions resulting in a completed purchase\n- **Cart Abandonment** - percentage of sessions with add-to-cart but no purchase\n- **Repeat Purchase Rate** - percentage of customers with more than one order\n- **Churn** - customers with no order in the past 90 days\n- **SKU** - Stock Keeping Unit: unique identifier for a product variant\n- **Basket Size** - number of items in a single order\n\n## Data caveats\n- All timestamps are in **UTC**\n- Stripe amounts are in **cents** - divide by 100 for dollar values\n- `customer_email` is `NULL` for guest checkouts (~15-20% of orders)\n- Refund window is **30 days** - recent revenue figures may be revised downward\n- Inventory data syncs every **4 hours** - not real-time\n- Shopify `order_total` includes tax and shipping; use `subtotal` for product revenue only\n- Facebook Ads data has a **24-48 hour attribution delay**\n- Klaviyo campaigns have no direct spend - they appear with $0 spend in marketing reports\n\n## Query guidelines\n- For revenue, always use **NMV** (net of returns) unless explicitly asked for GMV\n- Exclude test orders: `WHERE customer_email NOT LIKE '%@test.%'`\n- Use a **12-month lookback window** for LTV calculations by default\n- For marketing attribution, use `reports.rpt_marketing_roi` - do not attempt to join raw ad data with orders directly\n- For daily KPIs, use `reports.rpt_daily_kpis` as the single source of truth\n- Prefer `staging.*` tables over `raw.*` for any analysis\n",[54462],{"type":44,"tag":81,"props":54463,"children":54464},{"__ignoreMap":7},[54465,54472,54479,54486,54494,54501,54508,54515,54522,54529,54536,54543,54550,54557,54564,54571,54578,54585,54592,54599,54606,54613,54620,54627,54634,54641,54648,54655,54662,54669,54676,54683,54690,54697,54704,54711,54718,54725,54732,54739,54746,54753,54760,54767,54774,54781,54788,54795,54802,54809,54816,54823,54830,54837],{"type":44,"tag":100,"props":54466,"children":54467},{"class":102,"line":103},[54468],{"type":44,"tag":100,"props":54469,"children":54470},{},[54471],{"type":50,"value":53647},{"type":44,"tag":100,"props":54473,"children":54474},{"class":102,"line":226},[54475],{"type":44,"tag":100,"props":54476,"children":54477},{"emptyLinePlaceholder":23},[54478],{"type":50,"value":383},{"type":44,"tag":100,"props":54480,"children":54481},{"class":102,"line":235},[54482],{"type":44,"tag":100,"props":54483,"children":54484},{},[54485],{"type":50,"value":53662},{"type":44,"tag":100,"props":54487,"children":54488},{"class":102,"line":24},[54489],{"type":44,"tag":100,"props":54490,"children":54491},{},[54492],{"type":50,"value":54493},"- Use `bruin query --connection snowflake-default --query \"\u003CSQL>\"` for all data access\n",{"type":44,"tag":100,"props":54495,"children":54496},{"class":102,"line":252},[54497],{"type":44,"tag":100,"props":54498,"children":54499},{},[54500],{"type":50,"value":53678},{"type":44,"tag":100,"props":54502,"children":54503},{"class":102,"line":261},[54504],{"type":44,"tag":100,"props":54505,"children":54506},{},[54507],{"type":50,"value":53686},{"type":44,"tag":100,"props":54509,"children":54510},{"class":102,"line":270},[54511],{"type":44,"tag":100,"props":54512,"children":54513},{},[54514],{"type":50,"value":53694},{"type":44,"tag":100,"props":54516,"children":54517},{"class":102,"line":279},[54518],{"type":44,"tag":100,"props":54519,"children":54520},{},[54521],{"type":50,"value":53702},{"type":44,"tag":100,"props":54523,"children":54524},{"class":102,"line":288},[54525],{"type":44,"tag":100,"props":54526,"children":54527},{"emptyLinePlaceholder":23},[54528],{"type":50,"value":383},{"type":44,"tag":100,"props":54530,"children":54531},{"class":102,"line":297},[54532],{"type":44,"tag":100,"props":54533,"children":54534},{},[54535],{"type":50,"value":53717},{"type":44,"tag":100,"props":54537,"children":54538},{"class":102,"line":306},[54539],{"type":44,"tag":100,"props":54540,"children":54541},{},[54542],{"type":50,"value":53725},{"type":44,"tag":100,"props":54544,"children":54545},{"class":102,"line":315},[54546],{"type":44,"tag":100,"props":54547,"children":54548},{},[54549],{"type":50,"value":53733},{"type":44,"tag":100,"props":54551,"children":54552},{"class":102,"line":324},[54553],{"type":44,"tag":100,"props":54554,"children":54555},{},[54556],{"type":50,"value":53741},{"type":44,"tag":100,"props":54558,"children":54559},{"class":102,"line":333},[54560],{"type":44,"tag":100,"props":54561,"children":54562},{},[54563],{"type":50,"value":53749},{"type":44,"tag":100,"props":54565,"children":54566},{"class":102,"line":11},[54567],{"type":44,"tag":100,"props":54568,"children":54569},{},[54570],{"type":50,"value":53757},{"type":44,"tag":100,"props":54572,"children":54573},{"class":102,"line":350},[54574],{"type":44,"tag":100,"props":54575,"children":54576},{},[54577],{"type":50,"value":53765},{"type":44,"tag":100,"props":54579,"children":54580},{"class":102,"line":359},[54581],{"type":44,"tag":100,"props":54582,"children":54583},{},[54584],{"type":50,"value":53773},{"type":44,"tag":100,"props":54586,"children":54587},{"class":102,"line":368},[54588],{"type":44,"tag":100,"props":54589,"children":54590},{"emptyLinePlaceholder":23},[54591],{"type":50,"value":383},{"type":44,"tag":100,"props":54593,"children":54594},{"class":102,"line":377},[54595],{"type":44,"tag":100,"props":54596,"children":54597},{},[54598],{"type":50,"value":53788},{"type":44,"tag":100,"props":54600,"children":54601},{"class":102,"line":386},[54602],{"type":44,"tag":100,"props":54603,"children":54604},{},[54605],{"type":50,"value":53796},{"type":44,"tag":100,"props":54607,"children":54608},{"class":102,"line":396},[54609],{"type":44,"tag":100,"props":54610,"children":54611},{},[54612],{"type":50,"value":53804},{"type":44,"tag":100,"props":54614,"children":54615},{"class":102,"line":416},[54616],{"type":44,"tag":100,"props":54617,"children":54618},{},[54619],{"type":50,"value":53812},{"type":44,"tag":100,"props":54621,"children":54622},{"class":102,"line":449},[54623],{"type":44,"tag":100,"props":54624,"children":54625},{"emptyLinePlaceholder":23},[54626],{"type":50,"value":383},{"type":44,"tag":100,"props":54628,"children":54629},{"class":102,"line":481},[54630],{"type":44,"tag":100,"props":54631,"children":54632},{},[54633],{"type":50,"value":53827},{"type":44,"tag":100,"props":54635,"children":54636},{"class":102,"line":508},[54637],{"type":44,"tag":100,"props":54638,"children":54639},{},[54640],{"type":50,"value":53835},{"type":44,"tag":100,"props":54642,"children":54643},{"class":102,"line":531},[54644],{"type":44,"tag":100,"props":54645,"children":54646},{},[54647],{"type":50,"value":53843},{"type":44,"tag":100,"props":54649,"children":54650},{"class":102,"line":604},[54651],{"type":44,"tag":100,"props":54652,"children":54653},{},[54654],{"type":50,"value":53851},{"type":44,"tag":100,"props":54656,"children":54657},{"class":102,"line":626},[54658],{"type":44,"tag":100,"props":54659,"children":54660},{},[54661],{"type":50,"value":53859},{"type":44,"tag":100,"props":54663,"children":54664},{"class":102,"line":648},[54665],{"type":44,"tag":100,"props":54666,"children":54667},{},[54668],{"type":50,"value":53867},{"type":44,"tag":100,"props":54670,"children":54671},{"class":102,"line":705},[54672],{"type":44,"tag":100,"props":54673,"children":54674},{},[54675],{"type":50,"value":53875},{"type":44,"tag":100,"props":54677,"children":54678},{"class":102,"line":770},[54679],{"type":44,"tag":100,"props":54680,"children":54681},{},[54682],{"type":50,"value":53883},{"type":44,"tag":100,"props":54684,"children":54685},{"class":102,"line":794},[54686],{"type":44,"tag":100,"props":54687,"children":54688},{},[54689],{"type":50,"value":53891},{"type":44,"tag":100,"props":54691,"children":54692},{"class":102,"line":808},[54693],{"type":44,"tag":100,"props":54694,"children":54695},{},[54696],{"type":50,"value":53899},{"type":44,"tag":100,"props":54698,"children":54699},{"class":102,"line":1484},[54700],{"type":44,"tag":100,"props":54701,"children":54702},{},[54703],{"type":50,"value":53907},{"type":44,"tag":100,"props":54705,"children":54706},{"class":102,"line":2747},[54707],{"type":44,"tag":100,"props":54708,"children":54709},{},[54710],{"type":50,"value":53915},{"type":44,"tag":100,"props":54712,"children":54713},{"class":102,"line":2769},[54714],{"type":44,"tag":100,"props":54715,"children":54716},{},[54717],{"type":50,"value":53923},{"type":44,"tag":100,"props":54719,"children":54720},{"class":102,"line":2791},[54721],{"type":44,"tag":100,"props":54722,"children":54723},{"emptyLinePlaceholder":23},[54724],{"type":50,"value":383},{"type":44,"tag":100,"props":54726,"children":54727},{"class":102,"line":2856},[54728],{"type":44,"tag":100,"props":54729,"children":54730},{},[54731],{"type":50,"value":53938},{"type":44,"tag":100,"props":54733,"children":54734},{"class":102,"line":2898},[54735],{"type":44,"tag":100,"props":54736,"children":54737},{},[54738],{"type":50,"value":53946},{"type":44,"tag":100,"props":54740,"children":54741},{"class":102,"line":2977},[54742],{"type":44,"tag":100,"props":54743,"children":54744},{},[54745],{"type":50,"value":53954},{"type":44,"tag":100,"props":54747,"children":54748},{"class":102,"line":3015},[54749],{"type":44,"tag":100,"props":54750,"children":54751},{},[54752],{"type":50,"value":53962},{"type":44,"tag":100,"props":54754,"children":54755},{"class":102,"line":3081},[54756],{"type":44,"tag":100,"props":54757,"children":54758},{},[54759],{"type":50,"value":53970},{"type":44,"tag":100,"props":54761,"children":54762},{"class":102,"line":3094},[54763],{"type":44,"tag":100,"props":54764,"children":54765},{},[54766],{"type":50,"value":53978},{"type":44,"tag":100,"props":54768,"children":54769},{"class":102,"line":3108},[54770],{"type":44,"tag":100,"props":54771,"children":54772},{},[54773],{"type":50,"value":53986},{"type":44,"tag":100,"props":54775,"children":54776},{"class":102,"line":3147},[54777],{"type":44,"tag":100,"props":54778,"children":54779},{},[54780],{"type":50,"value":53994},{"type":44,"tag":100,"props":54782,"children":54783},{"class":102,"line":3188},[54784],{"type":44,"tag":100,"props":54785,"children":54786},{},[54787],{"type":50,"value":54002},{"type":44,"tag":100,"props":54789,"children":54790},{"class":102,"line":6054},[54791],{"type":44,"tag":100,"props":54792,"children":54793},{"emptyLinePlaceholder":23},[54794],{"type":50,"value":383},{"type":44,"tag":100,"props":54796,"children":54797},{"class":102,"line":6081},[54798],{"type":44,"tag":100,"props":54799,"children":54800},{},[54801],{"type":50,"value":54017},{"type":44,"tag":100,"props":54803,"children":54804},{"class":102,"line":6089},[54805],{"type":44,"tag":100,"props":54806,"children":54807},{},[54808],{"type":50,"value":54025},{"type":44,"tag":100,"props":54810,"children":54811},{"class":102,"line":6097},[54812],{"type":44,"tag":100,"props":54813,"children":54814},{},[54815],{"type":50,"value":54033},{"type":44,"tag":100,"props":54817,"children":54818},{"class":102,"line":6123},[54819],{"type":44,"tag":100,"props":54820,"children":54821},{},[54822],{"type":50,"value":54041},{"type":44,"tag":100,"props":54824,"children":54825},{"class":102,"line":6143},[54826],{"type":44,"tag":100,"props":54827,"children":54828},{},[54829],{"type":50,"value":54049},{"type":44,"tag":100,"props":54831,"children":54832},{"class":102,"line":6164},[54833],{"type":44,"tag":100,"props":54834,"children":54835},{},[54836],{"type":50,"value":54057},{"type":44,"tag":100,"props":54838,"children":54839},{"class":102,"line":6185},[54840],{"type":44,"tag":100,"props":54841,"children":54842},{},[54843],{"type":50,"value":54065},{"type":44,"tag":124,"props":54845,"children":54847},{"id":54846},"_3-ask-claude-code-real-business-questions",[54848],{"type":50,"value":54849},"3) Ask Claude Code real business questions",{"type":44,"tag":53,"props":54851,"children":54852},{},[54853,54855,54860],{"type":50,"value":54854},"With the Bruin MCP connected and ",{"type":44,"tag":81,"props":54856,"children":54858},{"className":54857},[],[54859],{"type":50,"value":53480},{"type":50,"value":54861}," in place, Claude Code is now your ecommerce data analyst. Try these:",{"type":44,"tag":136,"props":54863,"children":54864},{},[54865],{"type":44,"tag":53,"props":54866,"children":54867},{},[54868],{"type":50,"value":54869},"What was our revenue last week compared to the week before? Break it down by day.",{"type":44,"tag":136,"props":54871,"children":54872},{},[54873],{"type":44,"tag":53,"props":54874,"children":54875},{},[54876],{"type":50,"value":54877},"Which marketing channel had the best ROAS in the past 30 days?",{"type":44,"tag":136,"props":54879,"children":54880},{},[54881],{"type":44,"tag":53,"props":54882,"children":54883},{},[54884],{"type":50,"value":54885},"Show me the customer cohort retention curve for customers acquired in January.",{"type":44,"tag":136,"props":54887,"children":54888},{},[54889],{"type":44,"tag":53,"props":54890,"children":54891},{},[54892],{"type":50,"value":54893},"What are our top 10 products by revenue this month, and what's their cancellation rate?",{"type":44,"tag":136,"props":54895,"children":54896},{},[54897],{"type":44,"tag":53,"props":54898,"children":54899},{},[54900,54905,54907,54913,54915,54920,54922,54927],{"type":44,"tag":185,"props":54901,"children":54902},{},[54903],{"type":50,"value":54904},"Note:",{"type":50,"value":54906}," The ",{"type":44,"tag":81,"props":54908,"children":54910},{"className":54909},[],[54911],{"type":50,"value":54912},"rpt_product_performance",{"type":50,"value":54914}," report currently shows catalog data from ",{"type":44,"tag":81,"props":54916,"children":54918},{"className":54917},[],[54919],{"type":50,"value":5129},{"type":50,"value":54921}," only. To get revenue-per-product metrics, expand the pipeline with a ",{"type":44,"tag":81,"props":54923,"children":54925},{"className":54924},[],[54926],{"type":50,"value":5121},{"type":50,"value":54928}," asset that flattens Shopify's nested line item JSON, then ask Claude Code to rebuild this report with order-level data.",{"type":44,"tag":136,"props":54930,"children":54931},{},[54932],{"type":44,"tag":53,"props":54933,"children":54934},{},[54935],{"type":50,"value":54936},"What's our conversion rate trend over the past 3 months?",{"type":44,"tag":53,"props":54938,"children":54939},{},[54940,54942,54947],{"type":50,"value":54941},"Claude Code uses the Bruin MCP to query your warehouse directly, reading the ",{"type":44,"tag":81,"props":54943,"children":54945},{"className":54944},[],[54946],{"type":50,"value":53480},{"type":50,"value":54948}," for context on your domain terms and data quirks before writing SQL.",{"type":44,"tag":124,"props":54950,"children":54952},{"id":54951},"_4-iterate-on-agentsmd",[54953],{"type":50,"value":54954},"4) Iterate on AGENTS.md",{"type":44,"tag":53,"props":54956,"children":54957},{},[54958,54960,54965],{"type":50,"value":54959},"When the agent gets something wrong - wrong column, wrong metric definition, expensive query - add a correction to ",{"type":44,"tag":81,"props":54961,"children":54963},{"className":54962},[],[54964],{"type":50,"value":53480},{"type":50,"value":54966},". For example:",{"type":44,"tag":90,"props":54968,"children":54970},{"className":53634,"code":54969,"language":13504,"meta":7,"style":7},"## Known issues\n- The `stg_orders.order_total` includes tax. For product-only revenue, use `subtotal` instead.\n- When computing repeat purchase rate, count by `customer_email`, not by `order_id`.\n",[54971],{"type":44,"tag":81,"props":54972,"children":54973},{"__ignoreMap":7},[54974,54982,54990],{"type":44,"tag":100,"props":54975,"children":54976},{"class":102,"line":103},[54977],{"type":44,"tag":100,"props":54978,"children":54979},{},[54980],{"type":50,"value":54981},"## Known issues\n",{"type":44,"tag":100,"props":54983,"children":54984},{"class":102,"line":226},[54985],{"type":44,"tag":100,"props":54986,"children":54987},{},[54988],{"type":50,"value":54989},"- The `stg_orders.order_total` includes tax. For product-only revenue, use `subtotal` instead.\n",{"type":44,"tag":100,"props":54991,"children":54992},{"class":102,"line":235},[54993],{"type":44,"tag":100,"props":54994,"children":54995},{},[54996],{"type":50,"value":54997},"- When computing repeat purchase rate, count by `customer_email`, not by `order_id`.\n",{"type":44,"tag":53,"props":54999,"children":55000},{},[55001,55003,55008],{"type":50,"value":55002},"The more you use it, the better your ",{"type":44,"tag":81,"props":55004,"children":55006},{"className":55005},[],[55007],{"type":50,"value":53480},{"type":50,"value":55009}," gets. When the agent makes a mistake, that's a sign something is missing from the context file.",{"type":44,"tag":124,"props":55011,"children":55013},{"id":55012},"_5-deploy-to-bruin-cloud",[55014],{"type":50,"value":55015},"5) Deploy to Bruin Cloud",{"type":44,"tag":53,"props":55017,"children":55018},{},[55019],{"type":50,"value":55020},"Now let's make this available to the whole team - in Slack or Teams, not just locally.",{"type":44,"tag":53,"props":55022,"children":55023},{},[55024],{"type":44,"tag":185,"props":55025,"children":55026},{},[55027],{"type":50,"value":55028},"Push your project to GitHub:",{"type":44,"tag":136,"props":55030,"children":55031},{},[55032],{"type":44,"tag":53,"props":55033,"children":55034},{},[55035,55039,55040,55045,55047,55052,55054,55059],{"type":44,"tag":185,"props":55036,"children":55037},{},[55038],{"type":50,"value":54904},{"type":50,"value":26912},{"type":44,"tag":81,"props":55041,"children":55043},{"className":55042},[],[55044],{"type":50,"value":26751},{"type":50,"value":55046}," contains your connection credentials. ",{"type":44,"tag":81,"props":55048,"children":55050},{"className":55049},[],[55051],{"type":50,"value":26650},{"type":50,"value":55053}," adds it to ",{"type":44,"tag":81,"props":55055,"children":55057},{"className":55056},[],[55058],{"type":50,"value":26799},{"type":50,"value":55060}," by default - verify it's there before pushing.",{"type":44,"tag":90,"props":55062,"children":55064},{"className":92,"code":55063,"language":94,"meta":7,"style":7},"git add -A -- ':!.bruin.yml'\ngit commit -m \"ecommerce analytics pipeline\"\ngit remote add origin https:\u002F\u002Fgithub.com\u002Fyour-org\u002Fecommerce-analytics.git\ngit push -u origin main\n",[55065],{"type":44,"tag":81,"props":55066,"children":55067},{"__ignoreMap":7},[55068,55093,55115,55141],{"type":44,"tag":100,"props":55069,"children":55070},{"class":102,"line":103},[55071,55075,55079,55084,55088],{"type":44,"tag":100,"props":55072,"children":55073},{"style":107},[55074],{"type":50,"value":26694},{"type":44,"tag":100,"props":55076,"children":55077},{"style":119},[55078],{"type":50,"value":27800},{"type":44,"tag":100,"props":55080,"children":55081},{"style":113},[55082],{"type":50,"value":55083}," -A",{"type":44,"tag":100,"props":55085,"children":55086},{"style":113},[55087],{"type":50,"value":27810},{"type":44,"tag":100,"props":55089,"children":55090},{"style":119},[55091],{"type":50,"value":55092}," ':!.bruin.yml'\n",{"type":44,"tag":100,"props":55094,"children":55095},{"class":102,"line":226},[55096,55100,55105,55110],{"type":44,"tag":100,"props":55097,"children":55098},{"style":107},[55099],{"type":50,"value":26694},{"type":44,"tag":100,"props":55101,"children":55102},{"style":119},[55103],{"type":50,"value":55104}," commit",{"type":44,"tag":100,"props":55106,"children":55107},{"style":113},[55108],{"type":50,"value":55109}," -m",{"type":44,"tag":100,"props":55111,"children":55112},{"style":119},[55113],{"type":50,"value":55114}," \"ecommerce analytics pipeline\"\n",{"type":44,"tag":100,"props":55116,"children":55117},{"class":102,"line":235},[55118,55122,55127,55131,55136],{"type":44,"tag":100,"props":55119,"children":55120},{"style":107},[55121],{"type":50,"value":26694},{"type":44,"tag":100,"props":55123,"children":55124},{"style":119},[55125],{"type":50,"value":55126}," remote",{"type":44,"tag":100,"props":55128,"children":55129},{"style":119},[55130],{"type":50,"value":27800},{"type":44,"tag":100,"props":55132,"children":55133},{"style":119},[55134],{"type":50,"value":55135}," origin",{"type":44,"tag":100,"props":55137,"children":55138},{"style":119},[55139],{"type":50,"value":55140}," https:\u002F\u002Fgithub.com\u002Fyour-org\u002Fecommerce-analytics.git\n",{"type":44,"tag":100,"props":55142,"children":55143},{"class":102,"line":24},[55144,55148,55153,55158,55162],{"type":44,"tag":100,"props":55145,"children":55146},{"style":107},[55147],{"type":50,"value":26694},{"type":44,"tag":100,"props":55149,"children":55150},{"style":119},[55151],{"type":50,"value":55152}," push",{"type":44,"tag":100,"props":55154,"children":55155},{"style":113},[55156],{"type":50,"value":55157}," -u",{"type":44,"tag":100,"props":55159,"children":55160},{"style":119},[55161],{"type":50,"value":55135},{"type":44,"tag":100,"props":55163,"children":55164},{"style":119},[55165],{"type":50,"value":55166}," main\n",{"type":44,"tag":53,"props":55168,"children":55169},{},[55170],{"type":44,"tag":185,"props":55171,"children":55172},{},[55173],{"type":50,"value":55174},"Add the repo to Bruin Cloud:",{"type":44,"tag":53456,"props":55176,"children":55177},{},[55178,55195,55200,55213,55218],{"type":44,"tag":13434,"props":55179,"children":55180},{},[55181,55183,55188,55190],{"type":50,"value":55182},"Go to ",{"type":44,"tag":13232,"props":55184,"children":55186},{"href":26804,"rel":55185},[26516],[55187],{"type":50,"value":26808},{"type":50,"value":55189},", open ",{"type":44,"tag":185,"props":55191,"children":55192},{},[55193],{"type":50,"value":55194},"Team Settings > Projects",{"type":44,"tag":13434,"props":55196,"children":55197},{},[55198],{"type":50,"value":55199},"Add your GitHub repository",{"type":44,"tag":13434,"props":55201,"children":55202},{},[55203,55205,55211],{"type":50,"value":55204},"Enable the ",{"type":44,"tag":81,"props":55206,"children":55208},{"className":55207},[],[55209],{"type":50,"value":55210},"ecommerce",{"type":50,"value":55212}," pipeline",{"type":44,"tag":13434,"props":55214,"children":55215},{},[55216],{"type":50,"value":55217},"Configure your connections (warehouse, Shopify, Stripe, etc.) in the Cloud environment",{"type":44,"tag":13434,"props":55219,"children":55220},{},[55221],{"type":50,"value":55222},"Run the pipeline to confirm it works",{"type":44,"tag":53,"props":55224,"children":55225},{},[55226],{"type":44,"tag":185,"props":55227,"children":55228},{},[55229],{"type":50,"value":55230},"Create the Slack\u002FTeams AI agent:",{"type":44,"tag":53456,"props":55232,"children":55233},{},[55234,55243,55254,55259,55264],{"type":44,"tag":13434,"props":55235,"children":55236},{},[55237,55238],{"type":50,"value":55182},{"type":44,"tag":185,"props":55239,"children":55240},{},[55241],{"type":50,"value":55242},"Agents > Create Agent",{"type":44,"tag":13434,"props":55244,"children":55245},{},[55246,55248,55253],{"type":50,"value":55247},"Select your repo and the ",{"type":44,"tag":81,"props":55249,"children":55251},{"className":55250},[],[55252],{"type":50,"value":55210},{"type":50,"value":55212},{"type":44,"tag":13434,"props":55255,"children":55256},{},[55257],{"type":50,"value":55258},"Add your Slack (or Teams) credentials",{"type":44,"tag":13434,"props":55260,"children":55261},{},[55262],{"type":50,"value":55263},"Name the agent, e.g. \"Ecommerce Analyst\"",{"type":44,"tag":13434,"props":55265,"children":55266},{},[55267],{"type":50,"value":55268},"Select the target channel where your team asks data questions",{"type":44,"tag":53,"props":55270,"children":55271},{},[55272],{"type":44,"tag":185,"props":55273,"children":55274},{},[55275],{"type":50,"value":55276},"Test in Slack:",{"type":44,"tag":53,"props":55278,"children":55279},{},[55280],{"type":50,"value":55281},"Mention the agent in your channel:",{"type":44,"tag":136,"props":55283,"children":55284},{},[55285],{"type":44,"tag":53,"props":55286,"children":55287},{},[55288],{"type":50,"value":55289},"@Ecommerce Analyst What was our revenue yesterday?",{"type":44,"tag":53,"props":55291,"children":55292},{},[55293,55295,55300],{"type":50,"value":55294},"The agent queries your warehouse using the same ",{"type":44,"tag":81,"props":55296,"children":55298},{"className":55297},[],[55299],{"type":50,"value":53480},{"type":50,"value":55301}," context and responds with an answer. Anyone on the team can ask questions without writing SQL.",{"type":44,"tag":45,"props":55303,"children":55304},{"id":13425},[55305],{"type":50,"value":13428},{"type":44,"tag":13430,"props":55307,"children":55308},{},[55309,55322,55335,55345],{"type":44,"tag":13434,"props":55310,"children":55311},{},[55312,55320],{"type":44,"tag":185,"props":55313,"children":55314},{},[55315],{"type":44,"tag":81,"props":55316,"children":55318},{"className":55317},[],[55319],{"type":50,"value":53469},{"type":50,"value":55321}," auto-generated metadata for all your pipeline assets",{"type":44,"tag":13434,"props":55323,"children":55324},{},[55325,55333],{"type":44,"tag":185,"props":55326,"children":55327},{},[55328],{"type":44,"tag":81,"props":55329,"children":55331},{"className":55330},[],[55332],{"type":50,"value":53480},{"type":50,"value":55334}," gives the AI analyst ecommerce-specific domain knowledge",{"type":44,"tag":13434,"props":55336,"children":55337},{},[55338,55343],{"type":44,"tag":185,"props":55339,"children":55340},{},[55341],{"type":50,"value":55342},"Local AI analyst",{"type":50,"value":55344}," with Claude Code answering business questions through Bruin MCP",{"type":44,"tag":13434,"props":55346,"children":55347},{},[55348,55353],{"type":44,"tag":185,"props":55349,"children":55350},{},[55351],{"type":50,"value":55352},"Cloud AI analyst",{"type":50,"value":55354}," runs on Bruin Cloud and responds to questions in Slack or Teams",{"type":44,"tag":53,"props":55356,"children":55357},{},[55358],{"type":50,"value":55359},"Next up, you'll build interactive dashboards using the same AI agent in Bruin Cloud.",{"type":44,"tag":13479,"props":55361,"children":55362},{},[55363],{"type":50,"value":13483},{"title":7,"searchDepth":226,"depth":226,"links":55365},[55366,55367,55368,55375],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":55369},[55370,55371,55372,55373,55374],{"id":53520,"depth":235,"text":53523},{"id":53579,"depth":235,"text":53582},{"id":54846,"depth":235,"text":54849},{"id":54951,"depth":235,"text":54954},{"id":55012,"depth":235,"text":55015},{"id":13425,"depth":226,"text":13428},"content:tutorials:ecommerce-pipeline:ai-analyst.md","tutorials\u002Fecommerce-pipeline\u002Fai-analyst.md","tutorials\u002Fecommerce-pipeline\u002Fai-analyst",{"_path":55380,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":55381,"description":55382,"date":10,"readingTime":252,"category":12,"tags":55383,"difficulty":26463,"module":5,"subSteps":23,"step":261,"journeys":55385,"learnMore":55386,"author":55393,"body":55394,"_type":13504,"_id":55823,"_source":13506,"_file":55824,"_stem":55825,"_extension":13509},"\u002Ftutorials\u002Fecommerce-pipeline\u002Fdashboards","Build Ecommerce Dashboards","Use the Bruin Cloud AI agent to generate interactive ecommerce dashboards - revenue trends, customer cohorts, marketing ROI, and product performance - from natural language.",[26808,53431,55384,21],"Dashboards",[26,27],[55387,55390],{"label":55388,"url":55389},"AI Dashboard Builder tutorial","\u002Flearn\u002Fbruin-dashboards",{"label":55391,"url":55392},"Bruin Cloud overview","https:\u002F\u002Fgetbruin.com\u002Fdocs\u002Fbruin\u002Fcloud\u002Foverview.html",{"name":37,"role":38,"image":39},{"type":41,"children":55395,"toc":55809},[55396,55400,55405,55409,55414,55426,55430,55436,55447,55453,55458,55466,55479,55485,55489,55497,55510,55516,55520,55528,55541,55547,55551,55559,55572,55578,55583,55618,55623,55627,55632,55675,55678,55684,55689,55752,55764,55772],{"type":44,"tag":45,"props":55397,"children":55398},{"id":47},[55399],{"type":50,"value":51},{"type":44,"tag":53,"props":55401,"children":55402},{},[55403],{"type":50,"value":55404},"Use the Bruin Cloud AI Dashboard Builder to create four ecommerce dashboards from natural language prompts. No SQL, no chart configuration - just describe what you want to see.",{"type":44,"tag":45,"props":55406,"children":55407},{"id":60},[55408],{"type":50,"value":63},{"type":44,"tag":53,"props":55410,"children":55411},{},[55412],{"type":50,"value":55413},"Reports in a database are useful for analysts, but most people want dashboards. A founder wants to check revenue trends. A marketing manager wants ROAS by channel. A product lead wants to know which SKUs are underperforming.",{"type":44,"tag":53,"props":55415,"children":55416},{},[55417,55419,55424],{"type":50,"value":55418},"The AI Dashboard Builder creates charts from your report tables based on what you ask for. It reads your ",{"type":44,"tag":81,"props":55420,"children":55422},{"className":55421},[],[55423],{"type":50,"value":53480},{"type":50,"value":55425}," context, so it uses the right metrics and definitions.",{"type":44,"tag":45,"props":55427,"children":55428},{"id":71},[55429],{"type":50,"value":74},{"type":44,"tag":124,"props":55431,"children":55433},{"id":55432},"_1-open-the-dashboards-page",[55434],{"type":50,"value":55435},"1) Open the Dashboards page",{"type":44,"tag":53,"props":55437,"children":55438},{},[55439,55441,55445],{"type":50,"value":55440},"Go to the ",{"type":44,"tag":185,"props":55442,"children":55443},{},[55444],{"type":50,"value":55384},{"type":50,"value":55446}," section in Bruin Cloud. Make sure your pipeline has run at least once so the report tables have data.",{"type":44,"tag":124,"props":55448,"children":55450},{"id":55449},"_2-executive-kpis-dashboard",[55451],{"type":50,"value":55452},"2) Executive KPIs dashboard",{"type":44,"tag":53,"props":55454,"children":55455},{},[55456],{"type":50,"value":55457},"Ask the AI agent:",{"type":44,"tag":136,"props":55459,"children":55460},{},[55461],{"type":44,"tag":53,"props":55462,"children":55463},{},[55464],{"type":50,"value":55465},"Build an executive dashboard showing daily revenue, order count, AOV, and new vs returning customers for the last 30 days with week-over-week comparison.",{"type":44,"tag":53,"props":55467,"children":55468},{},[55469,55471,55477],{"type":50,"value":55470},"The agent generates SQL against your ",{"type":44,"tag":81,"props":55472,"children":55474},{"className":55473},[],[55475],{"type":50,"value":55476},"reports.rpt_daily_kpis",{"type":50,"value":55478}," table and creates line charts, KPI cards, and comparison metrics.",{"type":44,"tag":124,"props":55480,"children":55482},{"id":55481},"_3-marketing-performance-dashboard",[55483],{"type":50,"value":55484},"3) Marketing performance dashboard",{"type":44,"tag":53,"props":55486,"children":55487},{},[55488],{"type":50,"value":55457},{"type":44,"tag":136,"props":55490,"children":55491},{},[55492],{"type":44,"tag":53,"props":55493,"children":55494},{},[55495],{"type":50,"value":55496},"Show me marketing performance by channel - ROAS, spend, and attributed revenue for Facebook Ads and email, with a trend chart for the last 90 days.",{"type":44,"tag":53,"props":55498,"children":55499},{},[55500,55502,55508],{"type":50,"value":55501},"This pulls from ",{"type":44,"tag":81,"props":55503,"children":55505},{"className":55504},[],[55506],{"type":50,"value":55507},"reports.rpt_marketing_roi",{"type":50,"value":55509}," and creates a multi-channel comparison with spend efficiency metrics.",{"type":44,"tag":124,"props":55511,"children":55513},{"id":55512},"_4-customer-cohorts-dashboard",[55514],{"type":50,"value":55515},"4) Customer cohorts dashboard",{"type":44,"tag":53,"props":55517,"children":55518},{},[55519],{"type":50,"value":55457},{"type":44,"tag":136,"props":55521,"children":55522},{},[55523],{"type":44,"tag":53,"props":55524,"children":55525},{},[55526],{"type":50,"value":55527},"Create a cohort retention chart showing monthly customer retention rates for the last 6 cohorts, plus lifetime value by cohort.",{"type":44,"tag":53,"props":55529,"children":55530},{},[55531,55533,55539],{"type":50,"value":55532},"This uses ",{"type":44,"tag":81,"props":55534,"children":55536},{"className":55535},[],[55537],{"type":50,"value":55538},"reports.rpt_customer_cohorts",{"type":50,"value":55540}," to build a retention heatmap and LTV trend.",{"type":44,"tag":124,"props":55542,"children":55544},{"id":55543},"_5-product-performance-dashboard",[55545],{"type":50,"value":55546},"5) Product performance dashboard",{"type":44,"tag":53,"props":55548,"children":55549},{},[55550],{"type":50,"value":55457},{"type":44,"tag":136,"props":55552,"children":55553},{},[55554],{"type":44,"tag":53,"props":55555,"children":55556},{},[55557],{"type":50,"value":55558},"Show top 20 products by revenue with their cancellation rate, and a category-level revenue breakdown.",{"type":44,"tag":53,"props":55560,"children":55561},{},[55562,55564,55570],{"type":50,"value":55563},"This queries ",{"type":44,"tag":81,"props":55565,"children":55567},{"className":55566},[],[55568],{"type":50,"value":55569},"reports.rpt_product_performance",{"type":50,"value":55571}," to create a ranked product table and a category breakdown chart.",{"type":44,"tag":124,"props":55573,"children":55575},{"id":55574},"_6-iterate-and-ask-questions",[55576],{"type":50,"value":55577},"6) Iterate and ask questions",{"type":44,"tag":53,"props":55579,"children":55580},{},[55581],{"type":50,"value":55582},"The AI agent is conversational. You can refine any dashboard:",{"type":44,"tag":13430,"props":55584,"children":55585},{},[55586,55596,55608],{"type":44,"tag":13434,"props":55587,"children":55588},{},[55589,55591],{"type":50,"value":55590},"Click on a chart to bring it into context, then ask: ",{"type":44,"tag":27428,"props":55592,"children":55593},{},[55594],{"type":50,"value":55595},"\"Change this to a bar chart instead\"",{"type":44,"tag":13434,"props":55597,"children":55598},{},[55599,55601,55606],{"type":50,"value":55600},"Ask follow-up questions: ",{"type":44,"tag":27428,"props":55602,"children":55603},{},[55604],{"type":50,"value":55605},"\"Why did revenue dip last Tuesday?\"",{"type":50,"value":55607}," - the agent analyzes the data instead of building another chart",{"type":44,"tag":13434,"props":55609,"children":55610},{},[55611,55613],{"type":50,"value":55612},"Add new charts: ",{"type":44,"tag":27428,"props":55614,"children":55615},{},[55616],{"type":50,"value":55617},"\"Add a chart showing refund rate by product category\"",{"type":44,"tag":53,"props":55619,"children":55620},{},[55621],{"type":50,"value":55622},"Every chart is backed by a visible SQL query you can inspect and verify.",{"type":44,"tag":45,"props":55624,"children":55625},{"id":13425},[55626],{"type":50,"value":13428},{"type":44,"tag":53,"props":55628,"children":55629},{},[55630],{"type":50,"value":55631},"You now have four interactive ecommerce dashboards that update as your pipeline runs daily:",{"type":44,"tag":53456,"props":55633,"children":55634},{},[55635,55645,55655,55665],{"type":44,"tag":13434,"props":55636,"children":55637},{},[55638,55643],{"type":44,"tag":185,"props":55639,"children":55640},{},[55641],{"type":50,"value":55642},"Executive KPIs",{"type":50,"value":55644}," - daily revenue, orders, AOV, customer mix",{"type":44,"tag":13434,"props":55646,"children":55647},{},[55648,55653],{"type":44,"tag":185,"props":55649,"children":55650},{},[55651],{"type":50,"value":55652},"Marketing Performance",{"type":50,"value":55654}," - spend, ROAS, and revenue by channel",{"type":44,"tag":13434,"props":55656,"children":55657},{},[55658,55663],{"type":44,"tag":185,"props":55659,"children":55660},{},[55661],{"type":50,"value":55662},"Customer Cohorts",{"type":50,"value":55664}," - retention rates and LTV by cohort",{"type":44,"tag":13434,"props":55666,"children":55667},{},[55668,55673],{"type":44,"tag":185,"props":55669,"children":55670},{},[55671],{"type":50,"value":55672},"Product Performance",{"type":50,"value":55674}," - top products and category breakdown",{"type":44,"tag":28202,"props":55676,"children":55677},{},[],{"type":44,"tag":45,"props":55679,"children":55681},{"id":55680},"thats-the-full-stack",[55682],{"type":50,"value":55683},"That's the full stack",{"type":44,"tag":53,"props":55685,"children":55686},{},[55687],{"type":50,"value":55688},"Over the course of this module, you built:",{"type":44,"tag":13430,"props":55690,"children":55691},{},[55692,55702,55712,55722,55732,55742],{"type":44,"tag":13434,"props":55693,"children":55694},{},[55695,55700],{"type":44,"tag":185,"props":55696,"children":55697},{},[55698],{"type":50,"value":55699},"Data ingestion",{"type":50,"value":55701}," from 5 SaaS sources (Shopify and your selected tools) into your data warehouse",{"type":44,"tag":13434,"props":55703,"children":55704},{},[55705,55710],{"type":44,"tag":185,"props":55706,"children":55707},{},[55708],{"type":50,"value":55709},"A staging layer",{"type":50,"value":55711}," that cleans, deduplicates, and joins data across all sources",{"type":44,"tag":13434,"props":55713,"children":55714},{},[55715,55720],{"type":44,"tag":185,"props":55716,"children":55717},{},[55718],{"type":50,"value":55719},"Business reports",{"type":50,"value":55721}," for revenue, cohorts, products, marketing ROI, and daily KPIs",{"type":44,"tag":13434,"props":55723,"children":55724},{},[55725,55730],{"type":44,"tag":185,"props":55726,"children":55727},{},[55728],{"type":50,"value":55729},"A local AI analyst",{"type":50,"value":55731}," that answers questions through Bruin MCP",{"type":44,"tag":13434,"props":55733,"children":55734},{},[55735,55740],{"type":44,"tag":185,"props":55736,"children":55737},{},[55738],{"type":50,"value":55739},"A cloud AI analyst",{"type":50,"value":55741}," your team can talk to in Slack or Teams",{"type":44,"tag":13434,"props":55743,"children":55744},{},[55745,55750],{"type":44,"tag":185,"props":55746,"children":55747},{},[55748],{"type":50,"value":55749},"Interactive dashboards",{"type":50,"value":55751}," built from natural language in Bruin Cloud",{"type":44,"tag":53,"props":55753,"children":55754},{},[55755,55757,55762],{"type":50,"value":55756},"The pipeline runs daily on schedule. Your team can ask questions without writing SQL. And the ",{"type":44,"tag":81,"props":55758,"children":55760},{"className":55759},[],[55761],{"type":50,"value":53480},{"type":50,"value":55763}," file improves every time you add to it.",{"type":44,"tag":53,"props":55765,"children":55766},{},[55767],{"type":44,"tag":185,"props":55768,"children":55769},{},[55770],{"type":50,"value":55771},"Where to go from here:",{"type":44,"tag":13430,"props":55773,"children":55774},{},[55775,55780,55792,55797],{"type":44,"tag":13434,"props":55776,"children":55777},{},[55778],{"type":50,"value":55779},"Add more data sources as your stack grows",{"type":44,"tag":13434,"props":55781,"children":55782},{},[55783,55785,55790],{"type":50,"value":55784},"Add new terms and caveats to ",{"type":44,"tag":81,"props":55786,"children":55788},{"className":55787},[],[55789],{"type":50,"value":53480},{"type":50,"value":55791}," as you discover them",{"type":44,"tag":13434,"props":55793,"children":55794},{},[55795],{"type":50,"value":55796},"Build additional dashboards for specific teams (marketing, ops, finance)",{"type":44,"tag":13434,"props":55798,"children":55799},{},[55800,55802,55807],{"type":50,"value":55801},"Check out the ",{"type":44,"tag":13232,"props":55803,"children":55804},{"href":26560},[55805],{"type":50,"value":55806},"Bruin Core Concepts",{"type":50,"value":55808}," module if you want to go deeper on pipelines, assets, and variables",{"title":7,"searchDepth":226,"depth":226,"links":55810},[55811,55812,55813,55821,55822],{"id":47,"depth":226,"text":51},{"id":60,"depth":226,"text":63},{"id":71,"depth":226,"text":74,"children":55814},[55815,55816,55817,55818,55819,55820],{"id":55432,"depth":235,"text":55435},{"id":55449,"depth":235,"text":55452},{"id":55481,"depth":235,"text":55484},{"id":55512,"depth":235,"text":55515},{"id":55543,"depth":235,"text":55546},{"id":55574,"depth":235,"text":55577},{"id":13425,"depth":226,"text":13428},{"id":55680,"depth":226,"text":55683},"content:tutorials:ecommerce-pipeline:dashboards.md","tutorials\u002Fecommerce-pipeline\u002Fdashboards.md","tutorials\u002Fecommerce-pipeline\u002Fdashboards",1776143482458]