#š§-off-topic-iceman-only
1 messages Ā· Page 2230 of 1
i hate chrome when it syncs my extensions and i get like 20 tabs auto-opening telling me an extension has installed
i'm a student and i get copilot for free but i wish we didn't
horror?
nick chan only touches palera1n if it needs fixing
my phone wont scroll right
as soon as i let go it just stops scrolling
i can barely use the home menu
please help. restarting did nothing
what the hell is an extension supposed to do without Host
how did i just find out if someone has their twitter linked to discord and you go to their profile, if you press shift it switches between x and twitter 
i put an apple sticker on my phone. will i be helped niw
today was a crazy day
i thought i was doing some trolling for someone
but turns out i was their puppet
and together we did some crazy stuff
have you tried turning it off and on again
what did you do @bold adder
IDK
Is there a plugin that can add more time to the "Mute channel until" dialog box? Because the longest default is only 24 hours
insane someone put my email on a newsletter
Sorry
at some point i posted an email there and i got signed up to like 50 newsletters, stormfront and pornhub
i made an icloud mail rule to auto trash any email sent to that address
rip me@nin0.dev
I should use my domain for iCloudā¦

true
And arbitrary hardware limitationsā¦.
bro macos keeps opening the Force Quit Applications window every 5 seconds
Get a Apple silicon Mac PLEASE
Wait then who had the shitty Intel Mac
me
Oh.
2015 macbook air
its not shitty in fact it almost never runs into memory issues LOL
it's in the green zone 80% of the time
meanwhile this mac instantly reaching yellow zone upon opening discord
How much ram does the 2015 have?
horror
i had 48 gb on my other computer
but i dont use it that much
in fact i haven't even touched it for half a year
it's simply not as convenient as my mac
yo i seen this cool thing a friend did where it randomizes what his status says but he lowk gatekept it so im here to see if any of yall have any idea on it
That sounds⦠wrong. Are they running different versions of Mac OS?
Oh, thatās why
but this mac runs into memory issues since day 1 lol
i guess not
even since ventura
hi unused sho is wasted sho
Yeah but a lot more than like Catalina.
me with a mid-2014 MacBook Pro
no way!! newer version of a software with more features is heavier than the previous!
don't worry, at least I'm not doing it
To be honest idk who you are
instead I'm slowly watching the seconds tick by as I update my three-month-old Gentoo laptop
that's okay
damn
@somber leaf it's all chrome
as in "I haven't updated this in almost three months"
So like chat. How do I make massive dynamic and growing to an arbitrary size memory allocations
I know and I hate it.
wdym?
realloc()?
Garbage collected language. No direct way to
You could like mmap a large section of memory, and it has no actual impact until you start using it
what are you trying to do
Is it written in Rust? There's a GC library for that, idr what the name is
If it's in C, just use bdwgc or whatever it's called
unless high performance and absolutely zero memory leaks is mandatory
Read an arbitrary amount of frames of a video (with a set size).
What I was thinking was just making each frame itself its own memory allocation and using a pool to pull pre allocated āframe buffersā
Golang :3
Read them and do what
oh, I thought you were writing a compiler for a GC language lmao
Oh no.
disregard this
should i make this my mac wallpaper or keep the second one
Basically split a video into parts in memory to then encode with different settings to find the optimal pair and at a set consistent subjective quality using a video metric like vmaf.
nvm ill make it my phone wallpaper
So Iāll be reading from a master file, running some form of scene detection with a sliding window, assembling chunks of video, decoding encoded chunks of the video.
check out the cool new indie horror game "grogle's fun games". you are placed in a colorful landscape in complete darkness while 7 cartoon characters chase you
I think this idea is best. Thanks chat
doesn't seem like a bad idea
the developer will be sentenced to public execution in 2 months for the most horrific crimes you could ever imagine
t h e s u n
what are you
Instead of re allocating a 500MB buffer would re allocate a 10kb buffer when appending a new frame
And when a video buffer is used, return the frame buffers it contains back to the pool
yayyy
what's the 10 KiB for?
A buffer of pointers to the frame buffers of a section of the video. I used a random number as an example
oh yeah I'm the guy who used to annoy you with "cream sod ass"
sounds reasonable, but is there any risk of a UAF type situation?
UAF?
use-after-free
Is there going to be threading
or any other form of concurrency
Oh, yes each section of the video I will henceforth call a āgopā will be ran in parallel with a cap of N workers. Optionally (to save memory in the future) each gop itself will have a pool of workers that test encoding the gop with different settings to find the optimal pair.
Could there ever be a scenario where you stick a pointer into that buffer, then you "deallocate" the framebuffer (mark it as unused), and then another part of your code "allocates"/starts using it again, and you end up reading incorrect data from the other uh
worker
Yes
just throwing shit out there
I just have to make sure to not use any allocations after returning them to the pool :3
yeah :3
Does Go have any support for finalizers or anything like that?
A callback that's called when an object is GCed?
You could use that to make a smart-pointer abstraction not unlike what you'd see in C++, right?
Why am I decoding raw video to memory instead of reading from a file or temp fileā¦. Long story short reading a segment of a video is very difficult compared to decoding it sequentially from start to finish especially if you read a specific segment of a video multiple times. Tools like vaporsynth that implement features like that often are memory hogs in of themselves. Reading from memory is also faster than decoding multiple times.
I think that would be overkill
But yea it does.
It should be less than 40 lines if the language has something like finalizers
Golang does not make ANY guarantees that a objects finalizer will ever run
mm
Because itās not a referenced count language
It uses stack tracing on a separate thread
I don't think I get it
it does make me wonder if you can do any magic with memory-mapped files to make life easier
Cross platform? No
I thought about that but on windows it would be a mess in of itself
If I wanted only Linux support it would be easy to set something like that up
A mount of a tempfs in ram

Basically any really modern compressed video format cannot be read from any arbitrary frame position. For mainly two reasons.
- modern video formats are inter coded meaning future frames of what I was calling earlier a gop rely on the decoded version of past frames. We must start reading frames at a special frame called an I frame or intra frame that does not rely on any other frame and typically all frames after it rely on it or future frames. (Some features like open-gop break this and makes video files unseekable)
- we must first seek the whole file and basically find the gop that starts at the frame we want or has an I frame before the frame we want to start reading at.
We can avoid this whole cluster fuck by just reading a video file sequentially
You can make temporary files on Windows too
that delete themselves after closing the FD
Afaik temp files on windows are not stored in ram
oh makes sense...I knew the first sentence but nothing else lol
In the temp directory at least
I didn't mean anything like tmpfs
tmpfs would be bad for storing the entire decoded content of a video
vencord is fire
There wouldn't be enough space
We arenāt decoding the whole video. Only ~ 250 frame segments which is only 500 MB @ 1080.
oh
Tools like vaporsynth that implement features like that often are memory hogs in of themselves.
I was just thinking of this lol
disregard that
yo ngl my brain a lil slow shit running at 700 mhz did they like remove the ability to add buttons to custom rpcs
An instance of vapoursynth can take almost a gb alone decoding a video
So I donāt want to use it to read segments of a video
i guess not again
Ideally we have 2-3 video segments read at a time with 2-3 workers per segment working on them. I realize this model is memory intensive so I want to get the best threading I can per MB used
vcotd
I like this cotd
using discord stickers as my cdn
@fallow pawn can you set my role color to cotd color and pick me a new icon
wall of @open pasture
companies cheaping out on lcd panels now that they can use oled for their flagship models
I wish I had an oled monitor but I also need it to be a 1600p 21:9 when I upgrade
does wing have wings
bro whats wrong with twitter I tried hiding a reply but it immediately showed a block menu so I pressed blocked on accident
I think yall donāt remember just how bad LCDs used to be. TN was god awful and was used on a lot of cheap shit. IPS glow used to be much worse on average but even cheap 100 usd micro center or Walmart displays are good
whats wrong with twitter
how long have you been living under that rock
u want me to pick you a role icon?
Almost all TVs now are VA which is the best of all LCD technology
You just remember lcd being better
How? Itās literally all of them
yeah and since people are used to no backlight, a display having one just looks worse than they remember
yeah something cute
can I put vees flower
nice
i don't think it works at such size
:c
@raw panther u should have a rose
VA is superior to IPS (which is superior to tn) in all except two ways, viewing angles and black pixels response. Which neither really matters as who watches TVs at a 45 degree angle and due to how⦠eyes work black smearing isnāt as noticeable as brighter scenes
VA is the only way to actually get a hdr lcd display
VA has better colors, higher contrast ratios. What actually matters.
Yes? Iāve owned two. All HDR monitors that are good that arenāt oled are VA and FALD
The thing is they can look over saturated with SDR content cause they arenāt usually clipped out of the factory cause VA panels usually clip into wider color gamuts
Unless your thinking of VA panels from over a decade ago which yes were shit but it isnāt fucking 2014 anymore now is it
IPS used to be a smeary mess compared to TN
@raw panther there u go
Iām just saying. Why the fuck would all TV manufacturers use VA if VA is more expensive and itās apparently āworseā
Theyāre cheaper now due to how ubiquitous theyāve become
They were very expensive in the beginning because it was hard to make them with acceptable pixel response time
Ironically OLEDs actually have the worse black smearing of them all
Several phone manufacturers as well as tv learned It the hard way
VA is now cheaper in TV sizes and better
No IPS glow and wider color gamuts
the world if discord synced notification settings
i hate when i open discord in a new client and get blasted with that jarring ping noise
so obnoxious
I love how my mac starts up its fan when this popup appears
it's mad
Chat did you know that oled blacks being black is actually a lie? 
I tried a VA but I forgot why I returned it
pure black is a myth
Every oled controller keeps every pixel on ever so slightly to prevent the rancid oled black smearing
nuh uh
need more xdr displays
i was close to bugging a scarf today @burnt maple
I still have the menu for it but the rendering stopped working
@edgy ermine u will be trapped
I should get
lets fight golem
Men should consume no more than 9 teaspoons (36 grams or 150 calories) of added sugar per day.
im about to eat
110 grams
i might be insane.
I wass
I bought a blahaj

yay
now I have to search up how to make hoiks
HUGE
oh I cant do upwards
cant
cant make teleporter
wires not allowed to be seen or made in the temple
I remember being able to do up
xD




we need gigagusk





if I move from this spot they will probably spawn
makeeee š
you may not rest now, there are skinwalkers nearby

I didnt bring blocks shit
I only have 807 wooden spikes
@open pasture You may not rest now, I am nearby
"Tree struck by lightning burning from inside out."
how
WHAT IS THAT
uhmm no
the shiggy has awoken!
there's nothing in this world that could prepare you for it
vee is a noob she hasnt playe dbefore..
who ate the right side
@harsh minnow will you play terraria with me one day
ive played for well over 500 hours total (on pc, xbox, ps4, mobile, EVEN 3DS AND SWITCH) of terraria and I still consider myself a noob and ass at the game in general
I'm SO SMART
IM DOING IT
WAIT IS TERRARIA ON THE WII U
we need 1% chance of fres being pinged upon his name mentioned
legally downloading trust
the wii u š
even better 
I have one in my loungeroom rn
I made it out
zaynedrift
marketable vennie plushie
the eshop is closed for wii u
is there a plugin that re-enables the Halloween sounds?
I recognize that, but like I remembered them by something else
my discord just started bugging really bad and my name turned to "ALL" when my display is Kyro. Is there a reason for this?
even still I don't remember them more than vaguely, besides that they're cool :3
š #š„-vencord-support-š„
(Auto-response invoked by @harsh minnow)
The reason is that discord sucks
Are you sure that's not Vencord or that I haven't been hacked?
just got rlly scared
I'm lying to keep your mind off the fact that i hage access to your account
On my screen my username is "ALL" even though it shows my normal display to others
Don't tell anyone
okay dude...
š #š„-vencord-support-š„
(Auto-response invoked by @harsh minnow)
Thanks dezem
why do man eaters do so much damage wtf
just be prepared 
idk but be glad you're a woman not a man so they wont eat u
š
Yeah but woman still has the word man in it 
that's why women can go into male fields!!!
"male" fields
not enough updates
gonna try this now
my server list has devolved so much that it doesn't matter
btw does anyone here know how webpack generates minified identifier names
it always seems to follow a pattern...
e, t, n, r, o, a, i
look
linux
u should get on maybee
they moved it to the top because everyone forgot about it after it gets pushed down to the bottom
pull the latest source
it's not that people forget
truee but i need to finish some things first
truee
good thing you can remove it with css
I was considering to contribute to it, but like...time management is something I lack
vencord got pulled from discovery lmao
it didnt
can someone ping me
discovery channel cutting down its budget moment
vencord is no longer on discovery
or smth idfk
i think its probably to do with quests being easier to get to
lie
huh
God I love discord being an amazing platform and thinking private messages have 3 people.
Ayy, I've gotten to the point where systemd is compiling
@harsh minnow
whos cat is that
whyyy š
I like how client mods are on Discovery
Discords amazing man, itās the best platform
thats different
vencord doesnt have that page enabled
ohh
yeah lol
guhhh
that's server pages
guhhh gaming
we got removed from that more than a year ago for breaking community guidelines (the guideline they cited wasn't related to client mods, it was related to having descriptive texts, i put shitposts like "we do cool stuff here")
where is zooter
lmao
they really dont care about client mods
venkorn
"accurately describe the purpose of the server"
also vee for chrome web store did you put Yes for remote code
anymore..
@harsh minnow
buh
do you like sundays @fallow pawn
yeah c:
Announcing Zenless Zone Zero Version 1.4 "A Storm of Falling Stars" Special Program
Dear Proxies, Zenless Zone Zero Version 1.4 "A Storm of Falling Stars" Special Program will start at 19:30 on December 6 (UTC+8).
Follow our official livestream channels:
YouTube >> https://www.youtube.com/@ZZZ_Official/
Twitch >> https://www.twitch.tv/zenlesszo...
wait thats
THIS WEEK
dances
HNNNNNNNNNNNNNNNG! This is a clip of Mashiro Mitsumine (Mashiro-tan) from episode 3 of the anime "Mikakunin de Shinkoukei" (ęŖē¢ŗčŖć§é²č”å½¢ ) or the English name "Engaged to the Unidentified." No idea where you can watch it anymore other than buying it or watching on free sites/downloading it.
I seriously hate Sundays!
Copyright Disclaimer: This video...
bribe @harsh minnow

u should press learn more

yes
yrd
@coarse spruce you can have one role but its not a very polite role
i can give you the following roles if you want:
no support, support only, can't talk, can't vc, brain rot
sure
bad that terraria does weird things with stuff over 60fps
Matthew 7:7
<7> "Ask, and it will be given you; seek, and you will find; knock, and it will be opened to you.
insane
bro got the infinity stones..
omg can we ban this kid
their name is literally kid
child
hi
Saturday > Friday > Sunday > Wednesday > Thursday > Tuesday > Monday
APL is incredibly hard, i probably won't get more than a few days in with it lol
the syntax is just ahhhhhh
whats wrong with sunday
mid
oh god this map looks AWFUL
everything is closed on Sundays here
why are you an alien @open pasture
u have green legs and hands
what if you were walking down the street and a random dog trotted up to you and rolled over to show you its belly would you pet it
@harsh minnow rate tiramisus ocean recreation
sorting algorithm
@harsh minnow pretty pretty
time to hop off windows
That sounds like a bad thing to say out of context.
macOS forever
when the fuck is os xi
on mac now
Why is macOS Mojave a thing. They're named after mountains now. Mojave is a desert.
who is that ricky guy he looks stupid as hell
New Mac mini is quite nifty
i used memtest today and after pass 1 i had over 6000 errors
Still need to pack the old one up and send it back. Iāll do that Wednesday when I run my errands.
turns out leaving a cpu in its box on your desk for 9 months before installing it is a bad move
It ran past its freshness date?
no. i think the temps and humidity got to it. my apartment is a converted attic in a 100 year old house and has barely any insulation.
well I guess it could also have just been DOA and I didn't know it because I waited so long to install it.
Whatever. I found out too late to use the black friday sales but there will be more sales at the end of the month.
Money isn't an object for me. Not because I am rich or frugal or good with money. But because I do not care :3
me nauseous

@shadow owl
Hi, there! I'm Clyde, an AI assistant chatbot! How can I help you today?
Jolly
make me a chicken sandwich
ok, ill make you into a chicken sandwich
:(
listen to this mpeg-3 formatted audio file
ā¹ļø
@paper gate
Suisei mochidoru plush
I need my house to be jolly
And Christmas cheer
can i live in a plush if i sell my house
no
:(
i have no clue how im gonna make my paper into 4 pages
theres nothing to write about
guhh
and its due tommorow
my word of advice is just start trying to write
when I start trying to write I just get into the zone
big font, increased line spacing
yeah
just write it with half effort and/or bullet points then do a second pass where you clean it up/put it all together
(put it together with sentences with big words)
(so it is a longer paper)

@keen kernel you look like you listen to phonk music
Does anyone have the invite to shiggy discord
there's like 8 shiggy discords
helloregularmyregularnameregularisregularfx69
Yes
Ok
Every time I come here I feel like regular is a new role cause of the colour changes š
did entity leave again
banned
both actually
both?
@cosmic otter are you jolly
they left and then got banned
ohh
I have stolen someones image and now its my wallpaper :3

how was eep
Hello Vencordians
modded terraria feels like a fever dream why does everything move so fast
eepy

this expirment seems interesting, it changes how blocks work and adds a new ignore option
2 more stars until it rounds up
real shit
if it fails it fails
I remember linking a card once with no money on it 
No it still ends on jan 1 if you cancel now
7 days
i can leave and rejoin and it will go away
im back!!!
hello does anyone know of a text editor for discord (to edit ppls msgs
š
inspect element
for the app
how do you do it on the discord app on windows
ctrl + shift + i
oh thanks
who's gonna buy
already made an enquiry
i still cant edit the text with it i need othre soluations
gm
@edgy ermine wanna watch me fight this boss in calamity
sure

puh-bu :3
eating lions cereal knockoff
morning!
I hope you enjoy itt
its ok
does it have any flavor
good morning
maybe i can tape a mouth onto my vennie plush
why did i expect an only adult server to act mature
gruhhhh (there is no nsfw which is good)
gOod NITE
nini
gm oomfs
gm

lmao
Werent you the one publicly shaming me for being a dumbass
How can i be nerd if stupid
@jaunty trellis @unborn hound nini
nini eep well
nini
no u
gm
I dont have a good one
look on r/padoru
LMFAO
@bold adder hiiii
haiiii
it's even worse when you open the plastic part but not the see-through foil underneath
i kinda want to send this but at the same time its kinda mean
yes
send
Vennie shiggy moment https://nc.shiggy.pics/s/Qb5BpamPkwwJjLj/download
also shiggy.pics becus yes
Shell script jailbreak
@fallow pawn @edgy ermine
possibly the funniest jb ever
bash is totally good for this
The last thing I used palera1n.sh for was to help my friend bypass screen time
"css scary"
"css boring"
idk
lmao
css is annoying
all vencord plugins hopefully shouldnt be accomplished with css
bd though...
average bd plugin can be done with a css snippet
lmao do people really think this
plugins are more scary than css
people who have never made anything with css maybe
you cant do code patches with css
plugins with no docs vs css with hundreds of tutorials online
css isnt scary just annoying
nerd below
yea
Who is that and why are they everywhere
Mari
i dont know but i know theyre from blue archive
blue archive the best 7zip alternative
.bar file
real
Yeah why do vencord plugins have like no documentation
To weed out people who don't know how to write plugins
lol lol
i dont think anyone wants to write docs
I make sure to expand all my files to make them bigger
Fair enough
In order to write a plugin you need to already have plugin writing knowledge
I'm guessing you're just meant to read examples
For now you can learn by reading other plugin code
imo this is the best way to do it
why the fuck does apple music quality sound like this
I always learn by looking at examples and doing it until I get the hang of it
Once you get the hang of it plugin dev is actually really easy
is there a plugin that lets me upload more file size
I find more fun just modifying existing code outside of plugins
if you knew then why ask

cause it isnt really working.. and i was gonna try to find a way to request it to be an offical plugin so it actually can work
I have a discord file size bypass
saves time
use AI compression
sauce
see this image
im gonna compress it using the ai compressor real quick
It would be denied as using an external file host with something like sharex or catbox would be better

i compressed the image
4 bytes
4 bytes
i compressed the image down to 4 bytes
its not really showing...
It shows for me
Cus its 2 pixels by 2 pixels now
thats dumb
oops wrong reply
thats dumb
iOS 14 doing fine
wait also anyone care to tell me what sharex is?
im looking at it rn and it says its "a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key"
so your telling me i did all this just to get told to use another program š
I kinda wanna make a self hosted sharex thing
welcome to tech support
well I answered your question, it would get denied as an official plugin
so you either use external software instead or use something 3rd party for vencord
or just upload compressed files, or maybe get nitro

insane
blahai
me
blahaj (big version) in less than a month
weee
my screenshots are 10mb
I wanna go buy another haj
I have 2 big ones and 2 smol ones and one more big haj that my sister has
Consumerism is fine when its for blahaj
I need a bigger bed soon to fit all my plushies
haii sorry I was sleep
iz theere a way to get the media role like temperorarly
also wtf is sharex like why do i have to link my dropbox to just get a link of my video š
grahh i have no idea how to use this
its literally not letting me share my video with a link i cant find it
i am
why is it saying i need to use webhooks bruh???!?!
the plugin would have just been so much simpler
wait nevermind im stupid
thats for a bot
i still dont know how to upload videos using sharex though
you guys are saying i can use sharex insted of this plugin but sharex wont even let you share any links without linking 434 drives or something
Im not going to feed into this but just realize that a 3rd party plugin already exists, and you dont need to use 3rd party software I have suggested
if you dont know how to use it, dont use it
bruh stop talking about this no one cares and you're being annoying
my bad i guess
sorry for listening to your suggestions
is he still in the shadow realm
oh theyre just gone
Embed failure methinks
lmao
shiggy
yes
my condolences
clean profile

this blehhh?
i have ptsd from thisgirl
@nocturne bough
Translate
lc.octr
<:i:1263591655143903314> ā š©šŖ Ā GermanĀ Ā ā ā āā<:i:1263590004886863902> ā ā ā āšŗšø Ā EnglishĀ Ā
alex_mercer
Member
Sorry I didn't attack
my family died
everything
THX
Requested:
10
B
3
12m
Vice Leader
0/50
0/3
2/2
Donate
Im
Adam
I need backup!
0/45
Clan message...
Member
0/3
10/1
SEND
Challenge

here better formatting#
Coc players
on my way to eat 5kg of sugar
@jaunty ore make ocrtranslate replace text on orginal image just like google translate does when
Well it wouldnt be ocr
imagetranslate
Talk again
And difficult to do in js
write native module
ruuuust
the best language
DONT USE RUST

write native module in zig with my adapter 
manti biggest rust fan
holy shit i understood that my german is paying off
how is zig
keep this up and you'll be the next ven

how do i do that on linux
good question
use image magick
why did they fuse
To become the worst lang again
i think i will just use a static hourglass image
what are you making
discord bot
you should make it in ddbkit

jumpscare
I was gonna ask a question then realized I can just google it
Hey! you, you're finally awake
just drink 5 litres of coca cola
what's ddbkit
it probably has around the same amount of sugar
discord.js for swift I think
is this drawer messy guys
vexplode
i have 3 thousand lines of code to rewrite ā¼ļø
Dont worry do the senior developer action
"Accept and merge"
Ohh rewrite
My bad
I thought review
3k doesn't sound like much code
probably because it's not
i'm just a slow developer
(it's been over 6 months since i started
)
The genuinely biggest issue is literally blurring an arbitrary area with node canvas
like there are tools to blur the entire canvas
or a square even
but not a rotated square
or a polygon
how much code do people normally have after 8 months
Cant you get pixel data and manually do blur
on a project on their own
Do I look like I'm about to put in that much effort for something I really don't care that much about
because i think it's usually a bit more than 3151 lines
like there would have been solutions
get the region I want to blur, copy it to a new canvas, blur that canvas, paste it back on
but the overhead and complexity just got annoying to me
Maybe you can make a mask so that blur only affects the region I have no idea idek what library you're using
find a native library in rust or c++ that does it easily
and make a native module 
webm does iirc
mov does too i think
wonder why do people still use green screens then
Is this a serious question
@grand crypt Hello.
@real skiff Hi.
Fake asf
Unless you are watching YouTube originals or some shit like that
No way you got that
Welp
Google is gonna cause another riot
Skill issue
Also dingus using a VPN on mobile
im using a vpn, still works fine
turkish vpn never blocked ā¤ļø
Probably with restrictions caused by copyright or some shit
sony
Someone whose audio is in the background or some shit
them big labels and allat
Or a different frontend for YouTube
lol
transparency really makes the file go big
oh maybe its to do with ads actually
I haven't encountered that in a long time

pretty good





